:root {
  --color-primary: #0d1b2a;
  --color-accent: #7b2ff7;
  --color-accent-light: #9d5cff;
  --color-accent-glow: rgba(123, 47, 247, 0.45);
  --color-bg: #f8f7fc;
  --color-text: #1a1a1a;
  --color-text-light: #6b7280;
  --color-dark-bg: #0a1220;
  --color-dark-surface: rgba(13, 27, 42, 0.72);
  --color-dark-text: #e8eaf0;
  --color-dark-muted: #9ca3af;
  --color-glass: rgba(255, 255, 255, 0.06);
  --color-glass-border: rgba(123, 47, 247, 0.25);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Roboto Mono", monospace;
  --max-width: 1200px;
  --header-height: 72px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --gradient-purple: linear-gradient(135deg, #7b2ff7 0%, #5a1fd4 50%, #3d0fa8 100%);
  --gradient-hero: radial-gradient(ellipse at 50% 40%, rgba(123, 47, 247, 0.35) 0%, rgba(13, 27, 42, 0.95) 55%, #060d16 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #c4a0ff;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header — glass morphism */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 18, 32, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 47, 247, 0.2);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
}

.logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--color-dark-text);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-purple);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark-text);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

main {
  padding-top: var(--header-height);
}

/* Hero — homepage */
.hero-future {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border: 1px solid rgba(123, 47, 247, 0.3);
  animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 0s;
}

.hero-shapes .shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 12%;
  transform: rotate(45deg);
  animation-delay: -2s;
}

.hero-shapes .shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  border-radius: 50%;
  animation-delay: -4s;
}

.hero-shapes .shape-4 {
  width: 100px;
  height: 100px;
  top: 25%;
  right: 25%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: rgba(123, 47, 247, 0.08);
  animation-delay: -1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 4rem 1.5rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 40px rgba(123, 47, 247, 0.5);
}

.hero-content h1 span {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .subtitle {
  font-size: 1.15rem;
  color: var(--color-dark-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-purple);
  color: #fff;
  box-shadow: 0 0 24px var(--color-accent-glow);
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px var(--color-accent-glow);
  color: #fff;
}

.btn-secondary {
  background: var(--color-glass);
  color: var(--color-dark-text);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: #fff;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(123, 47, 247, 0.35); }
  50% { box-shadow: 0 0 32px rgba(123, 47, 247, 0.55); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--color-primary);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-dark-muted);
  margin-bottom: 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-block {
  background: var(--color-glass);
  border: 1px solid rgba(123, 47, 247, 0.4);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.15), inset 0 0 20px rgba(123, 47, 247, 0.05);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-label {
  color: var(--color-dark-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Use case tabs — CSS only */
.use-cases {
  background: linear-gradient(180deg, var(--color-dark-bg) 0%, var(--color-primary) 100%);
}

.tabs-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.tabs-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.tabs-nav label {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-glass);
  border: 1px solid transparent;
  color: var(--color-dark-muted);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tabs-input:nth-of-type(1):checked ~ .tabs-nav label:nth-child(1),
.tabs-input:nth-of-type(2):checked ~ .tabs-nav label:nth-child(2),
.tabs-input:nth-of-type(3):checked ~ .tabs-nav label:nth-child(3),
.tabs-input:nth-of-type(4):checked ~ .tabs-nav label:nth-child(4) {
  background: rgba(123, 47, 247, 0.2);
  border-color: var(--color-accent);
  color: #fff;
}

.tab-panel {
  display: none;
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 0 30px rgba(123, 47, 247, 0.12);
}

.tabs-input:nth-of-type(1):checked ~ .tab-panels .tab-panel:nth-child(1),
.tabs-input:nth-of-type(2):checked ~ .tab-panels .tab-panel:nth-child(2),
.tabs-input:nth-of-type(3):checked ~ .tab-panels .tab-panel:nth-child(3),
.tabs-input:nth-of-type(4):checked ~ .tab-panels .tab-panel:nth-child(4) {
  display: block;
}

.tab-panel h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.tab-panel p {
  color: var(--color-dark-muted);
}

/* Hex grid — tech stack */
.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hex-item {
  width: 110px;
  height: 127px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-glass);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-shadow: 0 0 16px rgba(123, 47, 247, 0.2);
  transition: var(--transition);
}

.hex-inner:hover {
  background: rgba(123, 47, 247, 0.15);
  box-shadow: 0 0 24px rgba(123, 47, 247, 0.35);
}

.hex-icon {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.hex-label {
  font-size: 0.7rem;
  color: var(--color-dark-muted);
  text-align: center;
  padding: 0 0.5rem;
}

/* Timeline — process */
.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(123, 47, 247, 0.1) 100%);
  box-shadow: 0 0 12px var(--color-accent-glow);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.15rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent-glow);
}

.timeline-item h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--color-dark-muted);
  margin-bottom: 0;
}

/* Glass CTA */
.cta-glass {
  padding: 5rem 0;
}

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(123, 47, 247, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(123, 47, 247, 0.15);
}

.cta-card h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--color-dark-muted);
  margin-bottom: 1.75rem;
}

/* Page hero — subpages */
.page-hero {
  background: var(--gradient-hero);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--color-dark-muted);
  max-width: 640px;
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-dark-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--color-accent-light);
}

.breadcrumb span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.page-hero-image {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 0 30px rgba(123, 47, 247, 0.15);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.08);
}

.card:hover {
  border-color: rgba(123, 47, 247, 0.5);
  box-shadow: 0 0 28px rgba(123, 47, 247, 0.2);
  transform: translateY(-3px);
}

.card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(123, 47, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
}

/* Content prose */
.content-section {
  padding: 4rem 0;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  color: #fff;
  margin: 2rem 0 1rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p, .prose li {
  color: var(--color-dark-muted);
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul li {
  margin-bottom: 0.35rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.1);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.team-member h3 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-accent-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  text-align: left;
}

/* Case studies */
.case-study {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.1);
}

.case-study h3 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.case-industry {
  color: var(--color-accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.case-block {
  margin-bottom: 1rem;
}

.case-block h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.case-block p {
  color: var(--color-dark-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Job listings */
.job-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.job-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-dark-muted);
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.benefit-item {
  background: rgba(123, 47, 247, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.benefit-item h4 {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.benefit-item p {
  color: var(--color-dark-muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.25rem;
}

.contact-detail h4 {
  color: var(--color-accent-light);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: var(--color-dark-muted);
  margin-bottom: 0;
}

.contact-form {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: block;
  color: var(--color-dark-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(123, 47, 247, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-dark-text);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 12px rgba(123, 47, 247, 0.2);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  background: rgba(123, 47, 247, 0.15);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-list summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-accent-light);
  transition: var(--transition);
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-dark-muted);
  margin-bottom: 0;
}

/* Articles */
.article-list {
  display: grid;
  gap: 1.5rem;
}

.article-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  border-color: rgba(123, 47, 247, 0.5);
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.article-card-body {
  padding: 1.75rem 1.75rem 1.75rem 0;
}

.article-date {
  font-size: 0.8rem;
  color: var(--color-accent-light);
  margin-bottom: 0.5rem;
}

.article-card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.article-card p {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--color-dark-muted);
  margin-bottom: 2rem;
}

.article-content h2 {
  color: #fff;
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--color-dark-muted);
}

/* Legal */
.legal-content h1 {
  color: #fff;
  margin-bottom: 2rem;
}

.legal-content h2 {
  color: #fff;
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p, .legal-content li {
  color: var(--color-dark-muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
}

.value-item h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--color-dark-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--color-primary) 0%, #060d16 100%);
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(123, 47, 247, 0.15);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--color-dark-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: var(--color-dark-muted);
  font-size: 0.85rem;
}

.footer-copy p {
  margin-bottom: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 18, 32, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(123, 47, 247, 0.25);
  padding: 1.25rem 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: var(--color-dark-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-buttons button {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

#cookie-accept {
  background: var(--gradient-purple);
  color: #fff;
}

#cookie-decline {
  background: transparent;
  color: var(--color-dark-muted);
  border: 1px solid rgba(123, 47, 247, 0.3);
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 18, 32, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-card-body {
    padding: 0 1.75rem 1.75rem;
  }

  .benefits-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hex-grid {
    gap: 0.5rem;
  }

  .hex-item {
    width: 90px;
    height: 104px;
  }

  .tabs-nav {
    flex-direction: column;
  }

  .tabs-nav label {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Fix hero overflow */
.hero-massive h1,
.hero h1,
.hero-section h1,
[class*="hero"] h1 {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100vw;
  padding: 0 1rem;
}

section, main {
  overflow-x: hidden;
}

/* Hero section with background image */
.hero,
.hero-section,
.hero-split,
.hero-massive,
[class*="hero"] {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(135deg, #0d1b2aee 0%, #0d1b2acc 100%), url('../img/hero-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 6rem 2rem;
}

.hero h1,
.hero-section h1,
.hero-split h1,
.hero-massive h1,
[class*="hero"] h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  max-width: 800px;
}

.hero p,
.hero-section p,
[class*="hero"] p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin-top: 1rem;
}

.hero .btn,
.hero a.btn,
.hero button,
[class*="hero"] .btn,
[class*="hero"] .cta-btn,
[class*="hero"] a[class*="btn"] {
  background: #7b2ff7;
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1.5rem;
  margin-right: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero .btn:hover,
[class*="hero"] .btn:hover,
[class*="hero"] .cta-btn:hover,
[class*="hero"] a[class*="btn"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Section visual depth */
section:nth-child(even) {
  background-color: #f8f7fc;
}

section:nth-child(odd) {
  background-color: #ffffff;
}

section {
  padding: 5rem 2rem;
}

section .container,
section .section-inner,
section > div:first-child {
  max-width: 1200px;
  margin: 0 auto;
}

/* Better card styling */
.service-card,
.card,
[class*="card"] {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover,
.card:hover,
[class*="card"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Stats/numbers section */
.stats,
.numbers,
[class*="stat"],
[class*="zahlen"] {
  background: #0d1b2a;
  color: #ffffff;
  padding: 4rem 2rem;
}

.stats h2,
.stats h3,
[class*="stat"] h2,
[class*="stat"] span {
  color: #7b2ff7;
}

/* Footer enhancement */
footer {
  background: #0d1b2a;
  color: rgba(255,255,255,0.85);
  padding: 4rem 2rem 2rem;
}

footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

footer a:hover {
  color: #7b2ff7;
}

/* Enhanced navigation */
.site-header,
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d1b2a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-cta,
nav a:last-child,
.main-nav a:last-child {
  background: #7b2ff7;
  color: #ffffff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
}
