:root {
  --concrete-gray: #d4d4d8;
  --off-white: #fafaf9;
  --muted-yellow: #fde047;
  --deep-charcoal: #27272a;
  --accent-blue: #3b82f6;
  --border-raw: #a1a1aa;
  --text-primary: #18181b;
  --text-secondary: #52525b;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 2px 4px rgba(0,0,0,0.06), 0 4px 8px rgba(0,0,0,0.04), 0 8px 16px rgba(0,0,0,0.02);
  --shadow-lg: 0 4px 8px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.06), 0 16px 32px rgba(0,0,0,0.04);
  
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--deep-charcoal);
}

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

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

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

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

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--deep-charcoal);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--off-white);
  border-bottom: 2px solid var(--border-raw);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep-charcoal);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--accent-blue);
}

nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--concrete-gray);
  border: 1px solid var(--border-raw);
  border-radius: var(--radius-sm);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

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

.lang-btn.active {
  color: var(--deep-charcoal);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border-raw);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  border-color: var(--accent-blue);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-charcoal);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  border-bottom: 2px solid var(--border-raw);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--muted-yellow) 0%, var(--concrete-gray) 100%);
  opacity: 0.1;
  z-index: 0;
}

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

.hero-title {
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.5;
  max-width: 600px;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-image {
  border: 3px solid var(--border-raw);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

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

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--deep-charcoal);
  color: var(--off-white);
  border-color: var(--deep-charcoal);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: transparent;
  color: var(--deep-charcoal);
  border-color: var(--border-raw);
}

.btn-secondary:hover {
  background: var(--concrete-gray);
  border-color: var(--deep-charcoal);
  transform: translateY(-2px);
}

/* Section Styling */
section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--concrete-gray);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--muted-yellow);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: var(--space-sm) auto 0;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Cards */
.card {
  background: white;
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted-yellow);
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  color: var(--deep-charcoal);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--deep-charcoal);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.faq-item {
  background: white;
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--deep-charcoal);
  background: var(--concrete-gray);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--muted-yellow);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  font-family: 'Courier New', monospace;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-md);
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--space-md);
}

/* Contact Preview */
.contact-preview {
  background: var(--concrete-gray);
  border: 2px solid var(--border-raw);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.contact-item {
  background: white;
  padding: var(--space-md);
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-item i {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: var(--space-sm);
}

.contact-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  font-family: 'Courier New', monospace;
}

.contact-item p {
  font-weight: 600;
  color: var(--deep-charcoal);
  margin: 0;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--deep-charcoal);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Courier New', monospace;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox-label a {
  text-decoration: underline;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

/* Map */
.map-container {
  border: 3px solid var(--border-raw);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}

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

/* Content Sections */
.content-section {
  padding: var(--space-lg) 0;
}

.content-block {
  background: white;
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.content-block h3 {
  color: var(--deep-charcoal);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--muted-yellow);
}

.content-block ul,
.content-block ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.content-block li {
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Glossary */
.glossary-grid {
  display: grid;
  gap: var(--space-md);
}

.glossary-term {
  background: white;
  border-left: 4px solid var(--accent-blue);
  border: 2px solid var(--border-raw);
  border-left-width: 4px;
  border-left-color: var(--accent-blue);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  transition: all 0.3s ease;
}

.glossary-term:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.glossary-term h3 {
  color: var(--deep-charcoal);
  margin-bottom: var(--space-xs);
  font-size: 1.3rem;
}

.glossary-term p {
  margin: 0;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.process-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted-yellow);
  border: 3px solid var(--border-raw);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  color: var(--deep-charcoal);
}

.process-content h3 {
  margin-bottom: var(--space-xs);
}

/* Footer */
footer {
  background: var(--deep-charcoal);
  color: var(--concrete-gray);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 3px solid var(--muted-yellow);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-about h3 {
  color: var(--muted-yellow);
  margin-bottom: var(--space-sm);
}

.footer-about p {
  color: var(--concrete-gray);
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--muted-yellow);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Courier New', monospace;
}

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

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--concrete-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--muted-yellow);
  padding-left: 0.5rem;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--concrete-gray);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--muted-yellow);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-charcoal);
  color: var(--concrete-gray);
  padding: var(--space-md);
  border-top: 3px solid var(--muted-yellow);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: var(--shadow-lg);
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.cookie-text p {
  color: var(--concrete-gray);
  margin: 0;
}

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

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Courier New', monospace;
}

.cookie-btn-accept {
  background: var(--muted-yellow);
  color: var(--deep-charcoal);
  border-color: var(--muted-yellow);
}

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

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

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--concrete-gray);
}

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

.cookie-btn-customize:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--concrete-gray);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  padding: var(--space-md);
  overflow-y: auto;
}

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

.cookie-settings-content {
  background: white;
  border: 3px solid var(--border-raw);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings-content h3 {
  margin-bottom: var(--space-md);
}

.cookie-category {
  padding: var(--space-md);
  border: 2px solid var(--border-raw);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.cookie-category h4 {
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--concrete-gray);
  border: 2px solid var(--border-raw);
  border-radius: 13px;
  transition: all 0.3s ease;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

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

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

.cookie-settings-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* Thank You Page */
.thank-you-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--muted-yellow);
  border: 3px solid var(--border-raw);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--deep-charcoal);
  margin: 0 auto var(--space-md);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--off-white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    border-left: 3px solid var(--border-raw);
    transition: right 0.4s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1000;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .grid-2,
  .grid-3,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: var(--space-sm);
  }
  
  .lang-switcher {
    padding: 0.4rem 0.8rem;
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .content-block {
    padding: var(--space-md);
  }
  
  .cookie-settings-buttons {
    flex-direction: column;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .cookie-consent,
  .mobile-menu-toggle,
  .lang-switcher {
    display: none;
  }
}