/* ============================================
   TEKLEKUA - Corporate Styles
   Color Palette (Refined for accessibility):
   - Primary:     #005F6B (Deepened teal - WCAG AA on white)
   - Secondary:   #D4845A (Warm coral - WCAG AA on white)
   - Text:        #1E2D36 (Deep navy - high contrast)
   - Background:  #FAFAF8 (Warm near-white)
   - Accent Light:#EDF6F9 (Alice Blue)
   - Accent Mid:  #6BAFAA (Muted aqua - WCAG AA on white)
   ============================================ */

:root {
  --color-primary: #005F6B;
  --color-primary-dark: #004A54;
  --color-secondary: #D4845A;
  --color-secondary-light: #E8A882;
  --color-text: #1E2D36;
  --color-text-light: #4A6572;
  --color-bg: #FAFAF8;
  --color-bg-warm: #FFF5F1;
  --color-bg-cool: #EDF6F9;
  --color-accent: #6BAFAA;
  --color-white: #FFFFFF;
  --color-border: #D6E0E4;
  --font-primary: 'DM Sans', 'Helvetica Neue', Helvetica, Calibri, Arial, sans-serif;
  --font-heading: 'DM Sans', 'Helvetica Neue', Helvetica, Calibri, Arial, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  text-align: justify;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global network canvas background */
.global-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure all content sits above the canvas */
.site-header { z-index: 1000; }
main, .site-footer { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }
a:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: 2px; }

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.logo span { color: var(--color-secondary); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Language Selector */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  font-family: var(--font-primary);
}
.lang-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.lang-btn svg { width: 12px; height: 12px; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.875rem;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-primary);
}
.lang-dropdown button:hover { background: var(--color-bg-cool); }
.lang-dropdown button:first-child { border-radius: 8px 8px 0 0; }
.lang-dropdown button:last-child { border-radius: 0 0 8px 8px; }
.lang-dropdown button.active { color: var(--color-primary); font-weight: 600; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-primary);
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 95, 107, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-large { padding: 16px 36px; font-size: 1.0625rem; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-content { max-width: 720px; position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero h1 span {
  color: var(--color-secondary);
}

.hero .tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero, .hero * { text-align: center; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Network canvas background */
.hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============ SCROLL REVEAL SECTIONS ============ */
.reveal-section {
  padding: 100px 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tools Section */
.tools-section { background: transparent; }
.tools-section .section-label {
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.tools-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

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

.tool-card {
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  background: var(--color-bg);
}
.tool-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(0, 95, 107, 0.08);
  transform: translateY(-4px);
}
.tool-card .tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
}
.tool-card .tool-icon.qlik { background: #009845; color: #fff; }
.tool-card .tool-icon.binance { background: #F0B90B; color: #1E2026; }
.tool-card .tool-icon.api { background: var(--color-primary); color: #fff; }

.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}
.tool-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Keywords section */
.keywords-section {
  text-align: center;
  padding: 80px 24px;
  background: transparent;
}
.keywords-section .keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.keywords-section .keyword {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text);
  transition: all var(--transition);
}
.keywords-section .keyword:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 24px;
  background: var(--color-primary);
  color: #fff;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-section p {
  font-size: 1.0625rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--color-primary);
}
.cta-section .btn-primary:hover {
  background: var(--color-bg-cool);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* CTA dual buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Garfield popup */
.garfield-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.garfield-popup {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.garfield-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.garfield-close:hover { color: var(--color-text); }
.garfield-img {
  width: 180px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 12px;
}
.garfield-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ============ ABOUT PAGE ============ */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center !important;
  background: transparent;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero .subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.about-content p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}
.about-content p.lead {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  padding: 32px;
  border-radius: 12px;
  background: var(--color-white);
  border-left: 4px solid var(--color-primary);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}
.service-card:nth-child(1) { border-left-color: var(--color-primary); }
.service-card:nth-child(2) { border-left-color: var(--color-secondary); }
.service-card:nth-child(3) { border-left-color: var(--color-accent); }
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 95, 107, 0.08);
  transform: translateY(-2px);
}
.service-card .service-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  line-height: 36px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card:nth-child(1) .service-number { background: var(--color-primary); }
.service-card:nth-child(2) .service-number { background: var(--color-secondary); }
.service-card:nth-child(3) .service-number { background: var(--color-accent); }
.service-card {
  text-align: left;
  position: relative;
  overflow: hidden;
}
.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Animated floating symbols behind service cards */
.service-symbols {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 0.07;
}
.service-symbols span {
  position: absolute;
  font-size: 1.5rem;
  animation: floatSymbol 8s ease-in-out infinite;
}
.service-symbols span:nth-child(1) { top: 12%; right: 10%; animation-delay: 0s; }
.service-symbols span:nth-child(2) { bottom: 15%; right: 25%; animation-delay: -2s; font-size: 1.2rem; }
.service-symbols span:nth-child(3) { top: 50%; right: 5%; animation-delay: -4s; font-size: 1.8rem; }
.service-symbols span:nth-child(4) { bottom: 10%; left: 70%; animation-delay: -6s; font-size: 1rem; }

@keyframes floatSymbol {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(5deg); }
  50% { transform: translateY(-4px) rotate(-3deg); }
  75% { transform: translateY(-12px) rotate(2deg); }
}

.service-card .service-number,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

/* Center services section title */
.about-content h2 {
  text-align: center;
}

/* ============ EXPLORE PAGE ============ */
.explore-layout {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  gap: 24px;
  padding: 100px 24px 60px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 72px);
}

.explore-sidebar {
  padding: 24px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  height: fit-content;
  position: sticky;
  top: 96px;
}
.explore-sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.explore-sidebar ul {
  list-style: none;
  padding: 0;
}
.explore-sidebar li {
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.explore-sidebar li:last-child { border-bottom: none; }
.explore-sidebar .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-bg-cool);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.explore-main {
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.explore-main iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
}
.explore-placeholder {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-text-light);
}
.explore-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--color-border);
  margin-bottom: 16px;
}
.explore-placeholder p {
  font-size: 1rem;
  margin-bottom: 8px;
}

.explore-description {
  padding: 24px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  height: fit-content;
  position: sticky;
  top: 96px;
}
.explore-description h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.explore-description p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.explore-cta {
  text-align: center;
  padding: 60px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============ CONTACT PAGE ============ */
.contact-section {
  padding: 60px 24px 80px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 95, 107, 0.1);
}
.form-group textarea { resize: vertical; min-height: 160px; }

.form-status {
  padding: 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}
.form-status.error {
  display: block;
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

/* ============ PRIVACY PAGE ============ */
.privacy-content {
  padding: 60px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 16px;
}
.privacy-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 28px;
  margin-bottom: 12px;
}
.privacy-content p,
.privacy-content li {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.footer-social a svg { width: 18px; height: 18px; }

.footer-address {
  font-size: 0.8125rem;
  text-align: center;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .explore-layout {
    grid-template-columns: 1fr;
    padding-top: 88px;
  }
  .explore-sidebar,
  .explore-description {
    position: static;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .menu-toggle { display: block; }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: center; }

  .reveal-section { padding: 60px 24px; }
  .tools-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }

/* ============ COOKIE CONSENT ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 24px;
  z-index: 9998;
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
  margin: 0;
}
.cookie-inner p a {
  color: var(--color-accent);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-primary);
  border: none;
  transition: all var(--transition);
}
.cookie-btn-accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--color-accent);
}
.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn-reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Print styles */
@media print {
  .site-header, .site-footer, .hero-bg, .lang-selector, .menu-toggle { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
