:root {
  --color-navy-900: #0a1628;
  --color-navy-800: #162642;
  --color-navy-700: #1e3a5f;
  --color-navy-600: #2d5280;
  --color-blue-500: #3b82f6;
  --color-orange-500: #f97316;
  --color-orange-400: #fb923c;
  --color-orange-300: #fdba74;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-layered: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 24px rgba(0, 0, 0, 0.08);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  --spacing-section: clamp(4rem, 8vw, 8rem);
  --spacing-section-sm: clamp(3rem, 6vw, 6rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-gray-900);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy-900);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

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

header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 !important;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-900);
  gap: 0.5rem;
}

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

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-gray-700);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange-500);
  transition: width 0.3s ease;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--color-gray-200);
}

.lang-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-700);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: var(--color-gray-100);
  color: var(--color-navy-900);
}

.lang-btn.active {
  background: var(--color-orange-500);
  color: var(--color-white);
}

.lang-divider {
  color: var(--color-gray-300);
}

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

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-navy-900);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

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

.hero-content {
  max-width: 900px;
}

.hero-headline {
  margin-bottom: 2rem;
}

.hero-headline h1 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-headline .line-1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
}

.hero-headline .line-2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--color-orange-400);
}

.hero-headline .line-3 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-gray-100);
}

.hero-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-gray-200);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: var(--color-orange-500);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--color-orange-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.section-sm {
  padding: var(--spacing-section-sm) 0;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  line-height: 1.7;
}

.section-bg-gray {
  background: var(--color-gray-50);
}

.section-bg-navy {
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-800) 100%);
  color: var(--color-white);
}

.section-bg-navy h2,
.section-bg-navy h3,
.section-bg-navy h4 {
  color: var(--color-white);
}

.section-bg-navy p {
  color: var(--color-gray-200);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.photo-grid-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-layered);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-grid-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

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

.photo-grid-item:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.photo-grid-item:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
}

.photo-grid-item:nth-child(3) {
  grid-column: 7 / 13;
  grid-row: 2 / 3;
}

.faq-section {
  background: var(--color-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-md);
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-orange-500);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transition: height 0.3s ease;
}

.faq-card:hover::before {
  height: 100%;
}

.faq-card:hover {
  border-color: var(--color-orange-500);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq-question h4 {
  font-size: 1.125rem;
  color: var(--color-navy-900);
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-navy-900);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-card.active .faq-icon {
  background: var(--color-orange-500);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-200);
}

.faq-answer p {
  color: var(--color-gray-700);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-400) 100%);
  opacity: 0;
  border-radius: var(--radius-xl);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
}

.service-card h3 {
  color: var(--color-navy-800);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon {
  color: var(--color-white);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-400) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--color-white);
  color: var(--color-orange-500);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: color 0.4s ease;
}

.service-card p {
  color: var(--color-gray-700);
  line-height: 1.7;
  transition: color 0.4s ease;
}

.process-timeline {
  max-width: 1000px;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gray-200);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(even) .process-content:first-child {
  order: 3;
}

.process-content {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.process-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.process-content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.process-content p {
  color: var(--color-gray-700);
  line-height: 1.7;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-400) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.resource-icon-wrapper {
  padding: 3rem;
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon-wrapper i {
  font-size: 4rem;
  color: var(--color-white);
}

.resource-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.resource-content p {
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-orange-500);
  font-weight: 600;
  transition: all 0.3s ease;
}

.resource-download:hover {
  color: var(--color-orange-400);
  gap: 0.75rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info {
  position: sticky;
  top: 6rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-400) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-gray-700);
  font-weight: 600;
}

.contact-item-content p {
  color: var(--color-navy-900);
  font-weight: 500;
}

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

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

.form-wrapper {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-navy-900);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-orange-500);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--color-gray-700);
  line-height: 1.5;
  cursor: pointer;
}

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

.checkbox-group label a:hover {
  color: var(--color-orange-400);
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-400) 100%);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

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

.btn-submit:active {
  transform: translateY(0);
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-section) 0;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-400) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-xl);
}

.thanks-content h1 {
  margin-bottom: 1rem;
}

.thanks-content p {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-navy-900);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-home:hover {
  background: var(--color-navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-section) 0;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-date {
  color: var(--color-gray-700);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--color-gray-700);
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: var(--color-gray-700);
}

footer {
  background: var(--color-navy-900);
  color: var(--color-gray-200);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: var(--color-gray-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

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

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

.footer-links a {
  color: var(--color-gray-300);
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  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: 2rem;
  flex-wrap: wrap;
}

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

.cookie-text p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-orange-500);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background: var(--color-orange-400);
}

.cookie-btn-reject {
  background: var(--color-gray-200);
  color: var(--color-gray-900);
}

.cookie-btn-reject:hover {
  background: var(--color-gray-300);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--color-navy-900);
  border: 2px solid var(--color-navy-900);
}

.cookie-btn-customize:hover {
  background: var(--color-navy-900);
  color: var(--color-white);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category h4 {
  font-size: 1.125rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--color-gray-300);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--color-orange-500);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--color-gray-700);
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-modal-buttons button {
  flex: 1;
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-2xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    overflow-y: auto;
  }

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

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    position: static;
  }

  .process-timeline::before {
    left: 40px;
  }

  .process-step {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
  }

  .process-step .process-content:first-child {
    order: 2;
    grid-column: 2;
  }

  .process-step .process-content:last-child {
    display: none;
  }

  .process-number {
    margin: 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .photo-grid-item:nth-child(1),
  .photo-grid-item:nth-child(2),
  .photo-grid-item:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: clamp(3rem, 6vw, 5rem);
    --spacing-section-sm: clamp(2rem, 4vw, 4rem);
  }

  .hero {
    min-height: 75vh;
    padding-top: 4rem;
  }

  .hero-headline .line-1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-headline .line-2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-headline .line-3 {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }

  .services-grid,
  .resources-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-wrapper {
    padding: 2rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .cookie-modal-content {
    padding: 1.5rem;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .service-card,
  .resource-card,
  .faq-card {
    padding: 1.5rem;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .process-content {
    padding: 1.5rem;
  }
}