:root {
  --primary: #0A2463;
  --primary-dark: #061742;
  --secondary: #FB3640;
  --accent: #247BA0;
  --neutral-50: #FAFBFC;
  --neutral-100: #F4F6F8;
  --neutral-200: #E8ECF0;
  --neutral-700: #3E4C59;
  --neutral-800: #2A3542;
  --neutral-900: #1A2332;
  --text: #2A3542;
  --text-light: #5A6C7D;
  
  --shadow-sm: 0 1px 2px rgba(10, 36, 99, 0.04), 0 2px 4px rgba(10, 36, 99, 0.02);
  --shadow-md: 0 4px 6px rgba(10, 36, 99, 0.05), 0 8px 16px rgba(10, 36, 99, 0.08);
  --shadow-lg: 0 10px 20px rgba(10, 36, 99, 0.08), 0 20px 40px rgba(10, 36, 99, 0.12);
  --shadow-xl: 0 20px 40px rgba(10, 36, 99, 0.12), 0 30px 60px rgba(10, 36, 99, 0.15);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--neutral-50);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 251, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--neutral-200);
  transition: var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo svg {
  width: 42px;
  height: 42px;
  margin-right: 12px;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 8px 0;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--neutral-200);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--primary);
  background: var(--neutral-100);
}

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

.lang-divider {
  color: var(--neutral-200);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
}

.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 80px 60px 80px 0;
}

.hero-visual {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 50%;
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  opacity: 0.12;
  border-radius: 50%;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(251, 54, 64, 0.08);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--secondary);
}

.hero-title {
  margin-bottom: 28px;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 560px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(36, 123, 160, 0.08);
  border-radius: var(--radius-sm);
}

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

.section-description {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

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

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid var(--neutral-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 1.8rem;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--neutral-900);
}

.card-text {
  color: var(--text-light);
  line-height: 1.7;
}

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

.accordion-item {
  background: white;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--neutral-50);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neutral-900);
}

.accordion-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 1.3rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.accordion-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

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

.accordion-content-inner {
  padding: 0 32px 32px 100px;
  color: var(--text-light);
  line-height: 1.8;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.process-step:hover .process-number {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.feature-item {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  font-size: 2rem;
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: translateY(-6px) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.7;
}

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

.split-content h2 {
  margin-bottom: 24px;
}

.split-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.split-content ul {
  list-style: none;
  margin: 32px 0;
}

.split-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text);
}

.split-content ul li i {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--neutral-200);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--neutral-200);
  transition: var(--transition);
}

.team-member:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .team-photo img {
  transform: scale(1.08);
}

.team-info {
  padding: 28px;
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--neutral-900);
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

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

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

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid var(--neutral-200);
  transition: var(--transition);
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 1.3rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--neutral-900);
}

.contact-item-content p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.contact-item-content a {
  color: var(--primary);
  font-weight: 600;
}

.contact-item-content a:hover {
  color: var(--accent);
}

.form-container {
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--neutral-200);
  box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--neutral-50);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 36, 99, 0.08);
}

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

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

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

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

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

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

.map-container {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--neutral-200);
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 3px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  padding: 8px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-name {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--neutral-900);
}

.pricing-description {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin: 32px 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-100);
  color: var(--text);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 50%;
}

.footer-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--secondary);
  opacity: 0.08;
  border-radius: 50%;
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.footer-cta h2 {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.footer-cta p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

footer {
  background: var(--neutral-900);
  color: var(--neutral-200);
  padding: 80px 0 40px;
}

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

.footer-about h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-about p {
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.85;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-links a {
  color: var(--neutral-200);
  opacity: 0.85;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

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

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

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

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

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

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

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

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

.legal-updated {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--neutral-200);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 48px 0 20px;
  color: var(--neutral-900);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin: 32px 0 16px;
  color: var(--neutral-800);
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.legal-content ul {
  margin: 20px 0 20px 24px;
  line-height: 1.8;
  color: var(--text-light);
}

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

.legal-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--primary);
  padding: 28px 0;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-text p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.cookie-btn-accept:hover {
  background: #E02D36;
  border-color: #E02D36;
}

.cookie-btn-reject {
  background: white;
  color: var(--text);
  border-color: var(--neutral-300);
}

.cookie-btn-reject:hover {
  background: var(--neutral-100);
}

.cookie-btn-customize {
  background: white;
  color: var(--primary);
  border-color: var(--primary);
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 35, 50, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--neutral-200);
}

.cookie-modal-header h3 {
  font-size: 1.6rem;
  color: var(--neutral-900);
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 2px solid var(--neutral-200);
}

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

.cookie-category h4 {
  font-size: 1.1rem;
  color: var(--neutral-900);
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--neutral-300);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-toggle.active {
  background: var(--secondary);
}

.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(--text-light);
  line-height: 1.6;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--neutral-200);
}

.iti {
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-content {
    padding: 60px 0 40px;
  }
  
  .hero-visual {
    height: 500px;
  }
  
  .split-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .nav-links a {
    display: block;
    padding: 16px 0;
    width: 100%;
  }
  
  .lang-switcher {
    border-left: none;
    border-top: 2px solid var(--neutral-200);
    padding-left: 0;
    padding-top: 24px;
    margin-left: 0;
    margin-top: 24px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .accordion-content-inner {
    padding: 0 24px 24px 24px;
  }
  
  .accordion-title {
    font-size: 1.1rem;
  }
  
  .accordion-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-container {
    padding: 32px 24px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 28px 20px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .card {
    padding: 28px 20px;
  }
  
  .accordion-header {
    padding: 20px 16px;
  }
}