:root {
  --paper: #faf8f5;
  --paper-dark: #f5f2ed;
  --ink: #1a1614;
  --ink-medium: #3d3935;
  --ink-light: #6b6560;
  --accent: #8b6f47;
  --accent-light: #a68a5f;
  --border: #e5e0d8;
  --shadow-sm: 0 1px 2px rgba(26, 22, 20, 0.04), 0 2px 4px rgba(26, 22, 20, 0.02);
  --shadow-md: 0 2px 4px rgba(26, 22, 20, 0.06), 0 4px 8px rgba(26, 22, 20, 0.04), 0 8px 16px rgba(26, 22, 20, 0.02);
  --shadow-lg: 0 4px 8px rgba(26, 22, 20, 0.08), 0 8px 16px rgba(26, 22, 20, 0.06), 0 16px 32px rgba(26, 22, 20, 0.04);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Albert Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(26, 22, 20, 0.01) 1px, rgba(26, 22, 20, 0.01) 2px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.75em;
}

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

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

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

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

p {
  margin-bottom: 1.25em;
  color: var(--ink-medium);
}

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

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 !important;
  transition: var(--transition);
}

header.scrolled nav {
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo svg {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

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

.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  letter-spacing: 0.01em;
}

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

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

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

.lang-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-light);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--accent);
}

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

.cta-button {
  padding: 12px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink);
}

.cta-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

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

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--transition);
}

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

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

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

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

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--ink-medium);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink);
  display: inline-block;
}

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

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid var(--border);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--paper-dark);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: floatIn 1s ease forwards;
}

.float-card:nth-child(1) {
  top: 15%;
  left: 5%;
  animation-delay: 0.6s;
}

.float-card:nth-child(2) {
  top: 25%;
  right: 8%;
  animation-delay: 0.8s;
}

.float-card:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}

.float-card:nth-child(4) {
  bottom: 30%;
  right: 5%;
  animation-delay: 1.2s;
}

.float-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.float-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.float-card p {
  font-size: 14px;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.5;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  to {
    opacity: 1;
  }
}

.stats-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--accent-light);
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  color: rgba(250, 248, 245, 0.8);
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.02em;
}

section {
  padding: 120px 0;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(139, 111, 71, 0.08);
  border-radius: 20px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--ink-medium);
}

.workflow-visual {
  background: var(--paper-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.workflow-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
}

.workflow-step {
  text-align: center;
  position: relative;
  padding: 32px 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.workflow-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}

.workflow-step h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.workflow-step p {
  font-size: 15px;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.6;
}

.service-areas {
  background: var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid var(--border);
}

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

.area-card {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.area-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.area-card h4 {
  margin-bottom: 12px;
  font-size: 20px;
}

.area-card p {
  font-size: 15px;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.6;
}

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

.feature-card {
  background: var(--paper-dark);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

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

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

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

.feature-card p {
  color: var(--ink-medium);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

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

.image-content-section.reverse {
  direction: rtl;
}

.image-content-section.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

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

.content-image:hover img {
  transform: scale(1.05);
}

.content-text h3 {
  margin-bottom: 24px;
}

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

.content-text ul {
  list-style: none;
  margin: 24px 0;
}

.content-text li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: var(--ink-medium);
  line-height: 1.7;
}

.content-text li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

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

.plan-card {
  background: var(--paper-dark);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
}

.plan-card.featured {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--paper);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.plan-header {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.plan-header h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.plan-header p {
  color: var(--ink-light);
  font-size: 15px;
  margin: 0;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--ink-medium);
  line-height: 1.6;
  border-bottom: 1px solid rgba(229, 224, 216, 0.5);
}

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

.plan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

.plan-card .btn-primary,
.plan-card .btn-secondary {
  width: 100%;
  text-align: center;
}

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

.regulation-section {
  background: var(--paper-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid var(--accent);
}

.regulation-section h3 {
  margin-bottom: 20px;
  color: var(--ink);
}

.regulation-section p {
  margin-bottom: 16px;
}

.regulation-section ul {
  list-style: none;
  margin: 20px 0;
}

.regulation-section li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-medium);
  line-height: 1.7;
}

.regulation-section li::before {
  content: '§';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

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

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

.contact-info h3 {
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  color: var(--ink-medium);
  font-size: 15px;
  margin: 0;
}

.info-content a {
  color: var(--accent);
  transition: var(--transition);
}

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

.contact-form {
  background: var(--paper);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition: var(--transition);
}

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

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

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

.privacy-checkbox label {
  font-size: 14px;
  color: var(--ink-medium);
  line-height: 1.6;
  cursor: pointer;
}

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

.privacy-checkbox a:hover {
  color: var(--accent-light);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.submit-btn:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.map-container {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  height: 450px;
}

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

.thanks-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
}

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

.thanks-content p {
  font-size: 18px;
  margin-bottom: 40px;
}

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

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

.last-updated {
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 48px;
  font-style: italic;
}

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

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

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

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

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

footer {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}

.footer-testimonial {
  padding: 80px 0;
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
  text-align: center;
}

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

.quote-icon {
  font-size: 48px;
  color: var(--accent-light);
  margin-bottom: 24px;
  opacity: 0.6;
}

.testimonial-quote blockquote {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  color: rgba(250, 248, 245, 0.7);
  font-weight: 600;
}

.testimonial-role {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.5);
  margin-top: 4px;
}

.footer-main {
  padding: 60px 0;
}

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

.footer-about h3 {
  color: var(--paper);
  margin-bottom: 20px;
  font-size: 24px;
}

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

.footer-column h4 {
  color: var(--paper);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-links a {
  color: rgba(250, 248, 245, 0.7);
  font-size: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(250, 248, 245, 0.5);
  font-size: 14px;
}

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

.footer-legal a {
  color: rgba(250, 248, 245, 0.5);
  font-size: 14px;
  transition: var(--transition);
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  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 {
  color: var(--ink-medium);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.cookie-btn.accept:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.cookie-btn.decline:hover {
  background: var(--paper-dark);
  border-color: var(--ink-light);
}

.cookie-btn.customize {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-btn.customize:hover {
  background: rgba(139, 111, 71, 0.1);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 22, 20, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

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

.cookie-modal-header {
  padding: 32px;
  border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 24px;
}

.cookie-modal-body {
  padding: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.category-header h4 {
  margin: 0;
  font-size: 18px;
}

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

.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: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

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

.cookie-category p {
  color: var(--ink-medium);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 24px;
  }
  
  .float-card {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .image-content-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    padding: 100px 40px 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    align-items: flex-start;
    gap: 24px;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .hero {
    min-height: 80vh;
    padding: 100px 0 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-card.featured {
    transform: scale(1);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
  
  .service-areas {
    padding: 40px 24px;
  }
  
  .workflow-visual {
    padding: 40px 24px;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  .container,
  .container-wide,
  .container-narrow {
    padding: 0 20px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .logo svg {
    width: 28px;
    height: 28px;
  }
  
  .feature-card,
  .area-card,
  .plan-card {
    padding: 32px 24px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-content {
    margin: 20px;
  }
}