/* ========================================
   LUNOVATECH - MINIMAL BUSINESS CARD SITE
   Clean white & black design
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-border: #e5e5e5;
  --color-accent: #000000;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 1200px;
  --header-height: 72px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   LAYOUT
   ======================================== */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text {
  color: var(--color-text);
}

.logo-accent {
  color: var(--color-text-secondary);
}

.logo-cursor {
  color: var(--color-text-secondary);
  font-weight: 300;
  margin-left: 2px;
  opacity: 1;
}

.logo-cursor.typing-done {
  animation: cursorBlink 1.2s ease-in-out infinite;
}

@keyframes cursorBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.nav a:hover {
  color: var(--color-text);
}

.lang-switcher {
  display: flex;
  gap: 4px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.lang-switcher button {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
}

.lang-switcher button:hover {
  color: var(--color-text);
  background: var(--color-border);
}

.lang-switcher button.active {
  color: var(--color-bg);
  background: var(--color-text);
}

@media (max-width: 768px) {
  .header {
    position: static;
    height: auto;
    padding: 16px 0;
  }

  .header .container {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }

  .header-right {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    font-size: 13px;
  }

  .lang-switcher {
    margin-top: 4px;
  }

  .logo {
    font-size: 20px;
  }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero-accent {
  color: var(--color-text-secondary);
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero-text {
    font-size: 16px;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}

.section-header {
  margin-bottom: 32px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Important text highlighting */
.about-text p:first-child,
.approach-text p:first-child {
  font-weight: 500;
  color: var(--color-text);
}

.expertise-item h3 {
  font-weight: 700;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

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

/* ========================================
   ABOUT
   ======================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  gap: 32px;
}

.stat {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-value {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ========================================
   EXPERTISE
   ======================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.expertise-item {
  padding: 32px;
  border: 1px solid var(--color-border);
}

.expertise-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.expertise-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .expertise-item {
    padding: 24px;
  }
}

/* ========================================
   APPROACH
   ======================================== */
.approach-content {
  max-width: 720px;
}

.approach-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.approach-text p:last-child {
  margin-bottom: 0;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-content {
  max-width: 600px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 48px;
}

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.contact-item a,
.contact-item span:not([class*="slider"]) {
  font-size: 18px;
  color: var(--color-text);
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Schedule */
.contact-item.schedule {
  margin-top: 16px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule-row {
  display: flex;
  gap: 16px;
  font-size: 18px;
}

.schedule-days {
  color: var(--color-text);
  min-width: 140px;
  font-size: 18px;
}

.schedule-hours {
  color: var(--color-text-secondary);
  font-size: 18px;
}

@media (max-width: 768px) {
  .contact-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .contact-item a,
  .contact-item span:not([class*="slider"]) {
    font-size: 16px;
  }

  .schedule-row {
    font-size: 16px;
  }

  .schedule-days,
  .schedule-hours {
    font-size: 16px;
  }

  .schedule-days {
    min-width: 120px;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  margin-top: auto;
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.footer-brand .logo {
  font-size: 18px;
}

.footer-slogan {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Code Typer Animation */
.code-typer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  color: var(--color-text-muted);
  min-width: 260px;
  height: 24px;
  white-space: nowrap;
}

.code-text {
  color: var(--color-text-secondary);
  letter-spacing: -0.02em;
}

.code-cursor {
  color: var(--color-text);
  animation: blink 1s step-end infinite;
  margin-left: 1px;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 992px) {
  .code-typer {
    min-width: 200px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .code-typer {
    min-width: auto;
    font-size: 11px;
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-nav a:hover,
.footer-nav .footer-link:hover {
  color: var(--color-text);
}

.footer-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom .version {
  font-size: 11px;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
}

/* ========================================
   PROTECTED CONTENT & EMAIL TOGGLE
   ======================================== */
.protected-email {
  unicode-bidi: bidi-override;
  direction: ltr;
}

.email-loading {
  color: var(--color-text-muted);
  font-size: 18px;
  animation: pulse 1s ease-in-out infinite;
}

.email-note {
  display: block;
  font-size: 11px;
  color: var(--color-text);
  opacity: 0.3;
  margin-top: 10px;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

[data-protected="true"] {
  -webkit-user-select: text;
  user-select: text;
}

.email-reveal {
  display: flex;
  align-items: center;
}

.email-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.email-toggle-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.email-toggle:hover .email-toggle-text {
  color: var(--color-text);
}

.email-toggle-slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--color-border);
  border-radius: 12px;
  transition: background 0.2s;
}

.email-toggle:hover .email-toggle-slider {
  background: var(--color-text-muted);
}

.email-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--color-bg);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.email-toggle:hover .email-toggle-knob {
  background: var(--color-text);
  transform: translateX(20px);
}

/* Honeypot trap for bots - hidden from users */
.bot-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .header {
    position: static;
    border-bottom: none;
  }

  .hero {
    padding-top: 40px;
  }

  .section {
    padding: 40px 0;
  }

  /* Hide email on print */
  .protected-email {
    display: none;
  }

  .protected-email::after {
    content: '[email protected]';
    display: inline;
  }
}

/* ========================================
   ANTI-SCRAPING PROTECTION
   ======================================== */

/* Decoy content - invisible to users, visible to scrapers */
.decoy-content {
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  font-size: 1px !important;
  line-height: 0 !important;
  color: transparent !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  z-index: -9999 !important;
}

/* Protected text styling */
[data-protected] {
  /* Prevent easy text selection for bots */
  -webkit-touch-callout: default;
}

[data-protected] > span {
  display: inline;
}

/* Loading placeholder */
[data-loading="true"] {
  min-height: 1em;
  background: linear-gradient(90deg, transparent 0%, transparent 100%);
}

/* Additional honeypot traps */
.ht-email, .ht-phone, .ht-contact, .ht-more, .ht-extra {
  position: absolute !important;
  left: -99999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  font-size: 0 !important;
}

/* Invisible separator that breaks text concatenation for scrapers */
.text-break::after {
  content: '\200B'; /* Zero-width space */
  font-size: 0;
  display: inline;
}

/* Reverse text for scrapers (CSS will display correctly) */
.text-secure {
  unicode-bidi: bidi-override;
  direction: ltr;
}

/* Block common scraper CSS selectors */
[class*="content-grab"],
[class*="scrape-target"],
[id*="scraper"] {
  display: none !important;
}

/* Make automated text extraction harder */
.protected-block {
  font-variant-ligatures: discretionary-ligatures;
  font-feature-settings: "liga" 1, "calt" 1;
}

/* Decoy data attributes that scrapers might target */
[data-text]:not([data-protected])::before {
  content: attr(data-decoy);
  position: absolute;
  left: -99999px;
  opacity: 0;
}

/* Ensure real content is visible */
.app [data-protected="1"] {
  visibility: visible !important;
  opacity: 1 !important;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: var(--color-bg);
  z-index: 1001;
  animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-bg);
  opacity: 0.9;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-btn-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  color: var(--color-bg);
  opacity: 0.7;
  cursor: pointer;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.cookie-btn-link:hover {
  opacity: 1;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-bg);
  border: 1px solid var(--color-bg);
  padding: 10px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.85;
}

.cookie-btn-decline:hover {
  opacity: 1;
  background: rgba(10, 10, 10, 0.1);
}

.cookie-btn-accept {
  background: var(--color-bg);
  color: var(--color-text);
  border: none;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

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

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 16px;
  }

  .cookie-banner-text {
    font-size: 13px;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}

/* ========================================
   PRIVACY MODAL
   ======================================== */
.modal-content--large {
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-content--medium {
  max-width: 480px;
}

/* ========================================
   COOKIE SETTINGS MODAL
   ======================================== */
.cookie-settings-body {
  padding: 0 28px 28px;
}

.cookie-status-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
}

.cookie-status-label {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-status-value {
  font-size: 14px;
  font-weight: 500;
}

.cookie-status-value.status-accepted {
  color: #22c55e;
}

.cookie-status-value.status-declined {
  color: var(--color-text-secondary);
}

.cookie-settings-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.cookie-data-block {
  margin-bottom: 24px;
}

.cookie-data-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cookie-data-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.cookie-data-list li {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.cookie-action-message {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.5;
}

.cookie-settings-actions {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.cookie-withdraw-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-settings-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #f5f5f5;
  border-color: var(--color-text-muted);
}

.btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-danger {
  background: #dc2626;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-danger:hover {
  background: #b91c1c;
}

@media (max-width: 480px) {
  .cookie-settings-body {
    padding: 20px;
  }

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

  .cookie-settings-buttons button {
    width: 100%;
  }
}

.privacy-modal-body {
  padding: 40px;
}

.privacy-intro {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.privacy-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.privacy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.privacy-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.privacy-section p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.privacy-updated {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .modal-content--large {
    max-height: 90vh;
    margin: 16px;
  }

  .privacy-modal-body {
    padding: 24px;
  }

  .privacy-section h3 {
    font-size: 13px;
  }

  .privacy-section p {
    font-size: 13px;
  }
}

/* ========================================
   LEGAL INFO LINK
   ======================================== */
.legal-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.legal-link:hover {
  color: var(--color-text);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--color-bg);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-text-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--color-border);
  color: var(--color-text);
}

.modal-body {
  padding: 40px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 32px;
  padding-right: 40px;
}

/* Cookie settings modal specific title */
.modal-content--medium .modal-title {
  margin: 0 0 20px 0;
  padding: 28px 40px 0 28px;
}

.legal-grid {
  display: grid;
  gap: 24px;
}

.legal-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.legal-value {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .modal-body {
    padding: 32px 24px;
  }

  .modal-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .legal-value {
    font-size: 14px;
  }
}

.slider {
  width: 100%;
  max-width: 340px;
}

.slider-track {
  position: relative;
  height: 44px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 22px;
  overflow: hidden;
  user-select: none;
}

/* Базовый стиль текста */
.slider-label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
}

/* Чёрный текст - на белом фоне */
.slider .slider-label-black {
  width: 100%;
  color: #000000 !important;
  z-index: 1;
  font-weight: 600;
}

/* Чёрная заливка */
.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #000;
  overflow: hidden;
  z-index: 2;
}

/* Белый текст внутри заливки */
.slider .slider-label-white {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
}

/* Круг для перетаскивания */
.slider-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 38px;
  height: 38px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 10;
  color: #fff;
}

.slider-knob:active {
  cursor: grabbing;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .slider-track {
    height: 40px;
    border-radius: 20px;
  }

  .slider-knob {
    width: 34px;
    height: 34px;
  }

  .slider .slider-label,
  .slider .slider-label-white {
    font-size: 13px !important;
  }
}

/* Email анимация */
.email-fade-in {
  animation: emailFadeIn 0.4s ease forwards;
}

@keyframes emailFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

button {
  font-family: inherit;
}

