:root {
  --paper-white: #FAF8F4;
  --paper-warm: #F5F2EB;
  --ink-black: #1A1614;
  --ink-soft: #3D3935;
  --ink-light: #6B6560;
  --accent-terra: #8B6F47;
  --accent-terra-light: #A68B66;
  --border-subtle: rgba(26, 22, 20, 0.08);
  --shadow-soft: 0 1px 2px rgba(26, 22, 20, 0.04), 0 4px 8px rgba(26, 22, 20, 0.02);
  --shadow-medium: 0 2px 4px rgba(26, 22, 20, 0.06), 0 8px 16px rgba(26, 22, 20, 0.04), 0 16px 32px rgba(26, 22, 20, 0.02);
  --shadow-large: 0 4px 8px rgba(26, 22, 20, 0.08), 0 12px 24px rgba(26, 22, 20, 0.06), 0 24px 48px rgba(26, 22, 20, 0.04);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper-white);
  color: var(--ink-black);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.site-wrapper {
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-black);
  letter-spacing: -0.02em;
}

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

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

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

a {
  color: var(--accent-terra);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--ink-black);
}

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

.container {
  max-width: 1240px;
  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, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(250, 248, 244, 0.98);
  box-shadow: var(--shadow-soft);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-black);
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.7;
}

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

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

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

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--paper-warm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.lang-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-light);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--ink-black);
  background: rgba(139, 111, 71, 0.1);
}

.lang-btn.active {
  color: var(--accent-terra);
  background: rgba(139, 111, 71, 0.15);
}

.lang-divider {
  color: var(--border-subtle);
}

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

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink-black);
  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;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--paper-white) 0%, var(--paper-warm) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-terra);
  margin-bottom: 24px;
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--ink-black) 0%, var(--accent-terra) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 40px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--ink-black);
  color: var(--paper-white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  background: var(--accent-terra);
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-black);
  border: 2px solid var(--ink-black);
}

.btn-secondary:hover {
  background: var(--ink-black);
  color: var(--paper-white);
  transform: translateY(-2px);
}

section {
  padding: 100px 0;
}

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

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-terra);
  margin-bottom: 16px;
  display: inline-block;
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--ink-soft);
}

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

.service-card {
  background: var(--paper-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
  border-color: var(--accent-terra);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-terra) 0%, var(--accent-terra-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--paper-white);
  font-size: 1.5rem;
}

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

.service-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.process-section {
  background: var(--paper-warm);
}

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

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

.step-number {
  width: 72px;
  height: 72px;
  background: var(--paper-white);
  border: 3px solid var(--accent-terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-terra);
  box-shadow: var(--shadow-medium);
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: 1.375rem;
}

.process-step p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.feature-item {
  display: flex;
  gap: 24px;
}

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

.feature-content h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-content p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.certifications-section {
  background: var(--ink-black);
  color: var(--paper-white);
}

.certifications-section .section-eyebrow {
  color: var(--accent-terra-light);
}

.certifications-section .section-title,
.certifications-section .section-description {
  color: var(--paper-white);
}

.certifications-section .section-description {
  opacity: 0.9;
}

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

.certification-card {
  background: rgba(250, 248, 244, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}

.certification-card:hover {
  background: rgba(250, 248, 244, 0.08);
  border-color: var(--accent-terra);
  transform: translateY(-8px);
}

.cert-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-terra) 0%, var(--accent-terra-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.75rem;
  color: var(--paper-white);
}

.certification-card h4 {
  color: var(--paper-white);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.certification-card p {
  color: rgba(250, 248, 244, 0.8);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.dual-cta-section {
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--paper-white) 100%);
}

.dual-cta-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.cta-card {
  background: var(--paper-white);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-terra) 0%, var(--accent-terra-light) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-card:hover {
  border-color: var(--accent-terra);
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.cta-card:hover::before {
  opacity: 0.03;
}

.cta-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-terra) 0%, var(--accent-terra-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--paper-white);
}

.cta-card h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.cta-card p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-size: 1.0625rem;
}

.image-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-large);
}

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

.image-content p {
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.image-content ul {
  list-style: none;
  margin-bottom: 32px;
}

.image-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.image-content li i {
  color: var(--accent-terra);
  margin-top: 4px;
  flex-shrink: 0;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.directory-card {
  background: var(--paper-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s ease;
}

.directory-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-terra);
}

.directory-card h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  color: var(--ink-black);
}

.directory-card .program-type {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(139, 111, 71, 0.1);
  color: var(--accent-terra);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.directory-card p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.directory-card .requirements {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.directory-card .requirements h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-terra);
  margin-bottom: 12px;
}

.directory-card .requirements ul {
  list-style: none;
}

.directory-card .requirements li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.directory-card .requirements li i {
  color: var(--accent-terra);
  margin-top: 3px;
  font-size: 0.75rem;
}

.contact-section {
  background: var(--paper-warm);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-info h3 {
  margin-bottom: 32px;
  font-size: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

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

.contact-item-content h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
  color: var(--ink-soft);
  margin-bottom: 0;
}

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

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

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

.contact-form {
  background: var(--paper-white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-subtle);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ink-black);
  font-size: 0.9375rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-terra);
  box-shadow: 0 0 0 4px rgba(139, 111, 71, 0.1);
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-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: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  cursor: pointer;
}

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

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

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

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

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

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

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

.thanks-content p {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.legal-content {
  padding: 140px 0 80px;
}

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

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

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

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

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.legal-content li {
  margin-bottom: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
}

footer {
  background: var(--ink-black);
  color: var(--paper-white);
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.footer-card {
  background: rgba(250, 248, 244, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.footer-card h4 {
  color: var(--paper-white);
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.footer-card p,
.footer-card a {
  color: rgba(250, 248, 244, 0.8);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-card a {
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-card a:hover {
  color: var(--accent-terra-light);
}

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

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  text-align: center;
  color: rgba(250, 248, 244, 0.6);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 16px;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
}

.footer-legal-links a {
  color: rgba(250, 248, 244, 0.6);
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink-black);
  color: var(--paper-white);
  padding: 24px;
  box-shadow: var(--shadow-large);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  color: rgba(250, 248, 244, 0.9);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.cookie-text a {
  color: var(--accent-terra-light);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-btn-accept {
  background: var(--accent-terra);
  color: var(--paper-white);
}

.cookie-btn-accept:hover {
  background: var(--accent-terra-light);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--paper-white);
  border: 2px solid rgba(250, 248, 244, 0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--paper-white);
}

.cookie-btn-customize {
  background: transparent;
  color: rgba(250, 248, 244, 0.8);
  border: 2px solid transparent;
}

.cookie-btn-customize:hover {
  color: var(--paper-white);
  border-color: rgba(250, 248, 244, 0.3);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 22, 20, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10001;
  padding: 24px;
  overflow-y: auto;
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: var(--paper-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  padding: 48px;
  box-shadow: var(--shadow-large);
}

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

.cookie-modal-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink-light);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--ink-black);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--paper-warm);
  border-radius: var(--radius-md);
}

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

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--border-subtle);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.cookie-toggle input {
  display: none;
}

.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--paper-white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-toggle input:checked ~ .cookie-toggle {
  background: var(--accent-terra);
}

.cookie-category p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

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

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dual-cta-container {
    grid-template-columns: 1fr;
  }

  .image-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--paper-white);
    box-shadow: var(--shadow-large);
    padding: 100px 32px 32px;
    transition: right 0.4s ease;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    width: 100%;
  }

  .lang-switcher {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 70vh;
    padding: 120px 0 60px;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 60px 0;
  }

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

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

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

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

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

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 32px 24px;
  }

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

  .footer-legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

  .cta-card {
    padding: 40px 24px;
  }
}