:root {
  /* Premium Dark Palette */
  --bg-dark: #050505;
  --bg-dark-overlay: rgba(5, 5, 5, 0.85);
  --bg-glass: rgba(25, 25, 25, 0.6);
  --bg-card: #111111;

  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #666666;

  /* Accent Colors - Keeping the pillars */
  --red: #D93025;
  /* Politik - Richer Red */
  --red-glow: rgba(217, 48, 37, 0.4);

  --amber: #F9AB00;
  /* Energie - Golden Amber */
  --amber-glow: rgba(249, 171, 0, 0.4);

  --cyan: #00BFA5;
  /* IT - Teal/Cyan */
  --cyan-glow: rgba(0, 191, 165, 0.4);

  --gold: #D4AF37;
  /* Premium Gold Accents */

  /* Layout & Spacing */
  --max-width: 1400px;
  --radius: 12px;
  --radius-lg: 24px;

  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

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

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

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-dark);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), #a01c1c);
  color: white;
  box-shadow: 0 10px 20px -5px var(--red-glow);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber), #c28500);
  color: black;
  box-shadow: 0 10px 20px -5px var(--amber-glow);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #008f7a);
  color: black;
  box-shadow: 0 10px 20px -5px var(--cyan-glow);
}

.btn:hover {
  transform: translateY(-3px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: 0.3s ease;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0) 100%);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
  /* Slight dim for readability */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.8) 80%, rgba(5, 5, 5, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 1rem;
}

.hero-tagline {
  font-family: var(--font-mono);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0;
  animation: fadeInDown 1s ease 0.5s forwards;
}

.hero-title {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-description {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
  opacity: 0.5;
}

/* ABOUT SECTION */
.about-section {
  padding: 10rem 0;
  position: relative;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portrait-frame img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.portrait-frame:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.quote-box {
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin: 2rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* PILLARS SECTION */
.pillars-section {
  padding: 8rem 0;
  background: #080808;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--text-secondary);
  transition: 0.3s;
}

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(40, 40, 40, 0.5);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.card-politics::before {
  background: var(--red);
}

.card-politics .card-icon {
  color: var(--red);
}

.card-energy::before {
  background: var(--amber);
}

.card-energy .card-icon {
  color: var(--amber);
}

.card-it::before {
  background: var(--cyan);
}

.card-it .card-icon {
  color: var(--cyan);
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.glass-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-card ul li::before {
  content: '→';
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  background: black;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  text-align: center;
  margin-bottom: 4rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  /* Simplified for now */
  .hero-description {
    font-size: 1.125rem;
  }
}

/* =====================================================
   INNER PAGES - PROFESSIONAL HIGH-TECH STYLING
   ===================================================== */

/* PAGE HEADER - Gradient Background */
.page-header {
  position: relative;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
  overflow: hidden;
  margin-top: 0;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 165, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #ccc 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header .subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

/* CONTENT SECTION */
.content-section {
  padding: 5rem 0;
  position: relative;
}

.content-section>p:first-of-type {
  font-size: 1.375rem;
  color: var(--text-secondary);
  max-width: 800px;
  line-height: 1.8;
}

.content-section h2 {
  font-size: 2rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.content-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.content-section h3 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
}

/* STYLED LISTS */
.content-section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.content-section ul li {
  position: relative;
  padding: 0.875rem 0 0.875rem 2rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.content-section ul li:last-child {
  border-bottom: none;
}

.content-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  transition: 0.3s;
}

.content-section ul li:hover {
  padding-left: 2.5rem;
  color: #fff;
}

.content-section ul li:hover::before {
  color: #fff;
}

.content-section ul li strong {
  color: #fff;
  font-weight: 600;
}

/* GLASS CARDS FOR INNER PAGES */
.card {
  background: linear-gradient(135deg, rgba(30, 30, 40, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
}

.card ul {
  margin: 0;
}

.card ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: none;
}

/* GRID LAYOUTS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* NOTICE / ALERT BOXES */
.notice {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem 0;
  position: relative;
}

.notice::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}

.notice-title {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.notice p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* PILLAR-SPECIFIC ACCENT COLORS */
.pillar-red .page-header::before {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(217, 48, 37, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(217, 48, 37, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.pillar-red .content-section h2::after {
  background: var(--red);
}

.pillar-red .content-section h3 {
  color: var(--red);
}

.pillar-red .content-section ul li::before {
  color: var(--red);
}

.pillar-red .card::before {
  background: linear-gradient(90deg, var(--red), transparent);
}

.pillar-red .notice {
  background: linear-gradient(135deg, rgba(217, 48, 37, 0.1) 0%, rgba(217, 48, 37, 0.05) 100%);
  border-color: rgba(217, 48, 37, 0.3);
}

.pillar-red .notice::before {
  background: var(--red);
}

.pillar-red .notice-title {
  color: var(--red);
}

.pillar-amber .page-header::before {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(249, 171, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249, 171, 0, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.pillar-amber .content-section h2::after {
  background: var(--amber);
}

.pillar-amber .content-section h3 {
  color: var(--amber);
}

.pillar-amber .content-section ul li::before {
  color: var(--amber);
}

.pillar-amber .card::before {
  background: linear-gradient(90deg, var(--amber), transparent);
}

.pillar-amber .notice {
  background: linear-gradient(135deg, rgba(249, 171, 0, 0.1) 0%, rgba(249, 171, 0, 0.05) 100%);
  border-color: rgba(249, 171, 0, 0.3);
}

.pillar-amber .notice::before {
  background: var(--amber);
}

.pillar-amber .notice-title {
  color: var(--amber);
}

.pillar-cyan .page-header::before {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(0, 191, 165, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 165, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.pillar-cyan .content-section h2::after {
  background: var(--cyan);
}

.pillar-cyan .content-section h3 {
  color: var(--cyan);
}

.pillar-cyan .content-section ul li::before {
  color: var(--cyan);
}

.pillar-cyan .card::before {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.pillar-cyan .notice {
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.1) 0%, rgba(0, 191, 165, 0.05) 100%);
  border-color: rgba(0, 191, 165, 0.3);
}

.pillar-cyan .notice::before {
  background: var(--cyan);
}

.pillar-cyan .notice-title {
  color: var(--cyan);
}

.pillar-gold .content-section h2::after {
  background: var(--gold);
}

.pillar-gold .content-section h3 {
  color: var(--gold);
}

.pillar-gold .content-section ul li::before {
  color: var(--gold);
}

/* FORM STYLING */
.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  transition: 0.3s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* FOOTER GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: 0.3s;
}

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

/* RESPONSIVE - INNER PAGES */
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 6rem 1.5rem 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }
}