:root {
  /* Color System */
  --primary-color: #171717;
  --secondary-color: #525252;
  --background-color: #FAFAFA;
  --footer-bg-color: #0A0A0A;
  --button-color: #262626;
  --section-bg-white: #FFFFFF;
  --section-bg-light: #F5F5F5;
  --section-bg-medium: #E5E5E5;
  --accent-color: #000000;
  --text-light: #FFFFFF;
  --text-dark: #171717;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  
  /* Shadows */
  --shadow-offset: 4px 4px 0;
  --shadow-offset-hover: 6px 6px 0;
  --shadow-elevated: 8px 8px 0;
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-color);
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 var(--space-md) 0;
  color: var(--primary-color);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

/* Paragraphs */
p {
  margin: 0 0 var(--space-md) 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

a:hover {
  border-bottom-color: var(--primary-color);
}

a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Lists */
ul, ol {
  margin: 0 0 var(--space-md) 0;
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

/* Neo-Brutalism Components */

/* Buttons - Bold & Graphic Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--accent-color);
  background-color: var(--button-color);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-offset);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  min-height: 3rem;
}

.btn:hover {
  background-color: var(--primary-color);
  box-shadow: var(--shadow-offset-hover);
  transform: translate(-2px, -2px);
}

.btn:active {
  box-shadow: 2px 2px 0 #000;
  transform: translate(2px, 2px);
}

.btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Cards - Bold & Graphic Style */
.card {
  background-color: var(--section-bg-white);
  border: 2px solid var(--accent-color);
  padding: var(--space-lg);
  box-shadow: var(--shadow-offset);
  transition: all 0.2s ease;
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translate(-2px, -2px);
}

.card-dark {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--accent-color);
}

.card-light {
  background-color: var(--section-bg-light);
  border-color: var(--secondary-color);
}

.card-medium {
  background-color: var(--section-bg-medium);
  border-color: var(--secondary-color);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-dark {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.section-light {
  background-color: var(--section-bg-light);
}

.section-medium {
  background-color: var(--section-bg-medium);
}

/* Header */
.header {
  background-color: var(--section-bg-white);
  border-bottom: 2px solid var(--accent-color);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm);
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--section-bg-white) 0%, var(--section-bg-light) 100%);
  border-bottom: 2px solid var(--accent-color);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: var(--space-xl);
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: var(--footer-bg-color);
  color: var(--text-light);
  border-top: 2px solid var(--accent-color);
  padding: var(--space-2xl) 0 var(--space-lg) 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section h4 {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p,
.footer-section a {
  color: #CCCCCC;
  margin-bottom: var(--space-xs);
}

.footer-section a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid var(--secondary-color);
  padding-top: var(--space-lg);
  text-align: center;
  color: #999999;
  font-size: 0.875rem;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--accent-color);
  background-color: var(--section-bg-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-offset);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-offset-hover);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 800;
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .header-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .nav {
    gap: var(--space-md);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .card {
    padding: var(--space-md);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero {
    min-height: 70vh;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Visible for Better Accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .nav {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    border: 1px solid #000;
    box-shadow: none;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}