:root {
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --accent-orange: #ff6b35;
  --accent-hover: #e55a2b;
  --slate: #4a5568;
  --slate-light: #718096;
  --border-gray: #e2e8f0;
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.3);
  
  --shadow-sm: 0 2px 4px rgba(26, 26, 26, 0.04), 0 1px 2px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 4px 8px rgba(26, 26, 26, 0.08), 0 2px 4px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-lg: 0 12px 24px rgba(26, 26, 26, 0.12), 0 6px 12px rgba(26, 26, 26, 0.08), 0 2px 4px rgba(26, 26, 26, 0.06);
  --shadow-xl: 0 20px 40px rgba(26, 26, 26, 0.16), 0 10px 20px rgba(26, 26, 26, 0.12), 0 4px 8px rgba(26, 26, 26, 0.08);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(3rem, 6vw, 5rem);
  --space-xl: clamp(5rem, 10vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
}

::selection {
  background: var(--accent-orange);
  color: var(--white);
}

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

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

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

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

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

p {
  margin-bottom: 1.25rem;
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--charcoal);
  transition: all 0.3s ease;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  gap: var(--space-md);
}

.logo {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.nav-links a {
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-orange);
  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: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 2px solid var(--charcoal);
}

.lang-btn {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--slate);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

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

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

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

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

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--charcoal);
  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(8px, -8px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
  padding: var(--space-xl) var(--space-sm);
  margin-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
}

.hero-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 900px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 10;
}

.hero-glass-card h1 {
  margin-bottom: var(--space-sm);
}

.hero-glass-card .typed-text {
  color: var(--accent-orange);
}

.hero-glass-card p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--slate);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  border: 3px solid var(--charcoal);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button:active {
  transform: translateY(0);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

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

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--slate-light);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.card {
  background: var(--white);
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--charcoal);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

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

.card p {
  color: var(--slate-light);
  margin-bottom: 0;
}

.sticky-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  min-height: 100vh;
}

.sticky-visual {
  position: sticky;
  top: 120px;
  height: calc(100vh - 160px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid var(--charcoal);
  box-shadow: var(--shadow-xl);
}

.sticky-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
}

.sticky-content-block {
  background: var(--off-white);
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.sticky-content-block h3 {
  margin-bottom: var(--space-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background: var(--charcoal);
  color: var(--white);
}

.comparison-table th {
  padding: var(--space-sm);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: var(--space-sm);
  border-bottom: 2px solid var(--border-gray);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--off-white);
}

.comparison-table .recommended {
  background: rgba(255, 107, 53, 0.05);
  position: relative;
}

.comparison-table .recommended::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
}

.checkmark {
  color: var(--accent-orange);
  font-size: 1.25rem;
}

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

.feature-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--off-white);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-orange);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.feature-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.9375rem;
  color: var(--slate-light);
  margin-bottom: 0;
}

.contact-section {
  background: var(--off-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info {
  background: var(--white);
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.contact-item i {
  color: var(--accent-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item strong {
  display: block;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--slate);
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--charcoal);
  height: 300px;
}

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

.contact-form {
  background: var(--white);
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

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

.checkbox-group label {
  font-size: 0.9375rem;
  color: var(--slate);
  cursor: pointer;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

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

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

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent-orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.thanks-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
}

.thanks-content {
  max-width: 600px;
  background: var(--white);
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.5rem;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--charcoal);
}

.legal-section {
  padding: var(--space-xl) 0;
  margin-top: 80px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.legal-content h1 {
  margin-bottom: var(--space-sm);
}

.legal-date {
  color: var(--slate-light);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.legal-content h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-sm);
  border-top: 4px solid var(--accent-orange);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p {
  color: var(--slate-light);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--slate-light);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 2px solid var(--slate);
  color: var(--slate-light);
  font-size: 0.9375rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-md);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--accent-orange);
}

.cookie-banner.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: 250px;
}

.cookie-text p {
  margin-bottom: 0;
  color: var(--slate-light);
}

.cookie-text a {
  color: var(--accent-orange);
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

@media (max-width: 1024px) {
  .sticky-section {
    grid-template-columns: 1fr;
  }
  
  .sticky-visual {
    position: relative;
    top: 0;
    height: 400px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: var(--space-sm);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-md) var(--space-md);
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    border-left: 3px solid var(--charcoal);
    gap: var(--space-sm);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    margin-top: 70px;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero-glass-card {
    padding: var(--space-md);
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }
  
  .logo svg {
    width: 32px;
    height: 32px;
  }
  
  .cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}