/*
Theme Name: Aros Defence Fund
Author: Your Name
Description: Strategic investments in defense technologies, critical infrastructure and innovative startups for a safer Europe.
Version: 1.0
*/

/* Aros Defense Fund - Static CSS for WordPress Conversion */

/* CSS Variables - Design System */
:root {
  /* Aros Defense Fund - Professional Dark Theme */
  --background: hsl(220, 26%, 6%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(220, 23%, 8%);
  --card-foreground: hsl(210, 40%, 98%);

  /* Navy blue primary - professional & trustworthy */
  --primary: hsl(220, 91%, 25%);
  --primary-foreground: hsl(210, 40%, 98%);
  --primary-glow: hsl(220, 91%, 45%);

  /* Silver secondary - modern tech feeling */
  --secondary: hsl(215, 25%, 18%);
  --secondary-foreground: hsl(210, 40%, 95%);

  --muted: hsl(215, 25%, 15%);
  --muted-foreground: hsl(215, 20.2%, 65.1%);

  /* Premium gold accent for highlights */
  --accent: hsl(45, 100%, 55%);
  --accent-foreground: hsl(220, 26%, 6%);

  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(210, 40%, 98%);

  --border: hsl(215, 25%, 18%);
  --input: hsl(215, 25%, 18%);
  --ring: hsl(220, 91%, 45%);

  --radius: 0.75rem;

  /* Custom Design Tokens */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(220, 91%, 25%),
    hsl(220, 91%, 45%),
    hsl(45, 100%, 55%)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    hsl(215, 25%, 18%),
    hsl(215, 25%, 25%)
  );
  --gradient-hero: linear-gradient(
    135deg,
    hsl(220, 26%, 6%) 0%,
    hsl(220, 23%, 8%) 30%,
    hsl(220, 91%, 15%) 70%,
    hsl(215, 25%, 12%) 100%
  );
  --gradient-text: linear-gradient(
    135deg,
    hsl(210, 40%, 98%),
    hsl(45, 100%, 65%)
  );
  --gradient-accent: linear-gradient(
    135deg,
    hsl(45, 100%, 55%),
    hsl(45, 100%, 70%)
  );

  --shadow-elegant: 0 25px 50px -12px hsl(220, 91%, 15%, 0.5);
  --shadow-glow: 0 0 60px hsl(220, 91%, 45%, 0.4);
  --shadow-glow-intense: 0 0 80px hsl(45, 100%, 55%, 0.3);
  --shadow-card: 0 15px 40px -15px hsl(220, 26%, 6%, 0.7);
  --shadow-dramatic: 0 35px 70px -15px hsl(220, 91%, 15%, 0.6);

  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-dramatic: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(220 23% 8% / 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-glow);
  animation: pulse 2s infinite;
}

.hero-badge-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.hero-badge span {
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}

.hero-title {
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title-normal {
  color: var(--foreground);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}

.hero-subtitle {
  font-size: 1.875rem;
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-foreground);
}

.hero-subtitle-highlight {
  color: var(--foreground);
  font-weight: 600;
}

.hero-subtitle-accent {
  color: var(--accent);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 64px;
  animation: slideUp 1s ease-out 0.5s both;
}

.hero-stat-card {
  background-color: hsl(220 23% 8% / 0.7);
  backdrop-filter: blur(4px) brightness(1) contrast(1) grayscale(0)
    hue-rotate(0deg) invert(0) opacity(1) saturate(1) sepia(0);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-dramatic);
  transition: var(--transition-smooth);
}

.hero-stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow-intense);
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto 16px;
  animation: pulse 2s infinite;
}

.hero-stat-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 8px;
}

.hero-stat-desc {
  color: var(--muted-foreground);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-bar {
  width: 24px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.scroll-indicator-dot {
  width: 4px;
  height: 12px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 8px;
  animation: pulse 2s infinite;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--foreground);
  box-shadow: var(--shadow-dramatic);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-intense);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-glow);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-full-width {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px) scale(1.1);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge-icon {
  width: 16px;
  height: 16px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-title-large {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title-normal {
  color: var(--foreground);
}

.section-title-accent {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-description-large {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.section-description-accent {
  color: var(--accent);
  font-weight: 600;
}

/* Focus Areas Section */
.focus-areas-section {
  padding: 96px 0;
  background: var(--background);
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.focus-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: var(--transition-smooth);
  animation: fadeIn 0.8s ease-out;
}

.focus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-elegant);
}

.focus-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
}

.focus-card:hover .focus-card-icon {
  transform: scale(1.1);
}

.focus-card-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.focus-card-icon-primary {
  background: var(--gradient-primary);
}

.focus-card-icon-secondary {
  background: var(--gradient-secondary);
}

.focus-card-icon-accent {
  background: var(--gradient-accent);
}

.focus-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 5px;
}

.focus-card-description {
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  padding: 96px 0;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: linear-gradient(
    45deg,
    var(--accent) 0%,
    transparent 50%,
    var(--primary) 100%
  );
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.partner-card {
  background-color: hsl(220 23% 8% / 0.4);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;

  border: 1px solid hsl(45 100% 55% / 0.2);
  box-shadow: var(--shadow-dramatic);
  transition: var(--transition-smooth);
  animation: slideUp 0.8s ease-out;
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow-intense);
}

.partner-icon {
  background: var(--gradient-primary);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
}

.partner-card:hover .partner-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-intense);
}

.partner-icon svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  animation: pulse 2s infinite;
}

.partner-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.3;
}

.partner-card-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.6;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.partner-feature span {
  color: var(--foreground);
  font-weight: 500;
}

.partnership-statement {
  text-align: center;
  background-color: hsl(220 23% 8% / 0.4);
  backdrop-filter: blur(4px); /* backdrop-blur-sm */
  border-radius: 1rem; /* rounded-2xl */
  padding: 3rem; /* p-12 */
  border: 1px solid hsl(45 100% 55% / 0.2);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.25); /* shadow-dramatic (custom) */
  animation: power-pulse 3s ease-in-out infinite; /* animate-power-pulse */
}

.partnership-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}

.partnership-description {
  font-size: 20px;
  color: var(--muted-foreground);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

.partnership-highlight {
  color: var(--accent);
  font-weight: 600;
}

/* Partner Logos */
.partners-logos {
  margin-top: 80px;
}

.partners-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 48px;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 120px;
  transition: var(--transition-smooth);
}

.partner-logo:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.partner-logo img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.partner-logo-nato {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

.partner-logo-eu {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

.partner-logo-bundeswehr {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

.partner-logo-edf {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

/* About Section */
.about-section {
  padding: 96px 0;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  animation: fadeIn 0.8s ease-out;
}

.about-title {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-title-accent {
  color: var(--accent);
}

.about-description {
  font-size: 18px;
  color: var(--muted-foreground);
  margin-bottom: 32px;
  line-height: 1.6;
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideUp 0.8s ease-out;
}

.achievement-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.achievement span {
  color: var(--foreground);
}

.about-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .about-buttons {
    flex-direction: row;
  }
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  animation: scaleIn 0.8s ease-out;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 200px;
  transition: var(--transition-smooth);
}

.about-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.about-card-wide {
  grid-column: 1 / -1;
}

.about-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.about-card-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  text-align: center;
}

.about-card-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
  padding: 96px 0;
  background: var(--background);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}

.contact-form-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.contact-form-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-details {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-details-header {
  margin-bottom: 24px;
}

.contact-details-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
}

.contact-details-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.contact-item-content {
  flex: 1;
}

.contact-item-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}

.contact-item-text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.investment-info {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-glow);
}

.investment-info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.investment-info-description {
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.6;
}

.investment-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.investment-category {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.investment-category-title {
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.9;
}

.investment-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.investment-item:last-child {
  margin-bottom: 0;
}

.investment-amount {
  font-weight: 600;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40%,
  43% {
    transform: translateX(-50%) translateY(-30px);
  }
  70% {
    transform: translateX(-50%) translateY(-15px);
  }
  90% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .focus-cards {
    grid-template-columns: 1fr;
  }

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

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

  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-card-wide {
    grid-column: 1;
  }
}

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

  .hero-content {
    padding: 0 16px;
  }

  .hero-badge {
    padding: 8px 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

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

  .focus-areas-section,
  .partners-section,
  .about-section,
  .contact-section {
    padding: 64px 0;
  }
}

/* footer */
.footer {
  background-color: hsl(222.2, 84%, 4.9%);
  border-top: 1px solid hsl(217.2, 32.6%, 17.5%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Elements */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: transparent;
  border: 1px solid hsl(217.2, 32.6%, 17.5%);
  border-radius: 0.375rem;
  color: hsl(210, 40%, 98%);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.back-button:hover {
  background-color: hsl(210, 40%, 98%);
  color: hsl(222.2, 84%, 4.9%);
}

.back-icon {
  width: 1rem;
  height: 1rem;
}

/* Brand Section */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.brand-icon {
  background-color: hsl(220 91% 25%);
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  height: 1.5rem;
  width: 1.5rem;
  color: hsl(222.2, 84%, 4.9%);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(210, 40%, 98%);
  margin: 0;
}

.brand-subtitle {
  font-size: 0.875rem;
  color: hsl(215, 20.2%, 65.1%);
  margin: 0;
}

.brand-description {
  color: hsl(215, 20.2%, 65.1%);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Links Section */
.section-title {
  font-weight: 600;
  color: hsl(210, 40%, 98%);
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link {
  display: block;
  color: hsl(215, 20.2%, 65.1%);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: hsl(210, 40%, 98%);
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0;
}

.contact-icon {
  height: 1rem;
  width: 1rem;
  color: hsl(215, 20.2%, 65.1%);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-text {
  font-size: 0.875rem;
  color: hsl(215, 20.2%, 65.1%);
}

.contact-address {
  font-size: 0.875rem;
  color: hsl(215, 20.2%, 65.1%);
  line-height: 1.4;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid hsl(217.2, 32.6%, 17.5%);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: hsl(215, 20.2%, 65.1%);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-container {
    padding: 2rem 1rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .brand {
    align-items: flex-start;
  }

  .contact-item {
    align-items: flex-start;
  }
}

/* terms page */
.page-container {
  min-height: 100vh;
  background-color: hsl(222.2, 84%, 4.9%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 4rem;
}

.back-icon {
  height: 1rem;
  width: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  background-color: hsl(217.2, 32.6%, 17.5%);
  color: hsl(210, 40%, 98%);
  border-radius: 9999px;
  font-size: 0.875rem;
}

.badge-icon {
  height: 1rem;
  width: 1rem;
}

.title {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(210, 40%, 98%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .title {
    font-size: 3rem;
  }
}

.subtitle {
  font-size: 1.25rem;
  color: hsl(215, 20.2%, 65.1%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* Content Styles */
.content {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  background-color: hsla(222.2, 84%, 4.9%, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(217.2, 32.6%, 17.5%);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(210, 40%, 98%);
  margin-bottom: 0;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-content p {
  color: hsl(215, 20.2%, 65.1%);
  margin: 0;
}

.card-content ul {
  list-style-type: disc;
  list-style-position: inside;
  color: hsl(215, 20.2%, 65.1%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-content li {
  margin: 0;
}

.risk-warning {
  font-weight: 600 !important;
}

.contact-info-secondary-page {
  background-color: hsla(217.2, 32.6%, 17.5%, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.contact-name {
  font-weight: 600 !important;
  color: hsl(210, 40%, 98%) !important;
}

.last-updated {
  font-size: 0.875rem !important;
  color: hsl(215, 20.2%, 65.1%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }

  .header {
    margin-bottom: 2rem;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .card-header,
  .card-content {
    padding: 1rem;
  }
}

/* Privacy Policy Specific Styles */
.privacy-policy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-policy-back-icon {
  height: 1rem;
  width: 1rem;
}

.privacy-policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  background-color: hsl(217.2, 32.6%, 17.5%);
  color: hsl(210, 40%, 98%);
  border-radius: 9999px;
  font-size: 0.875rem;
}

.privacy-policy-badge-icon {
  height: 1rem;
  width: 1rem;
}

.privacy-policy-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(210, 40%, 98%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .privacy-policy-title {
    font-size: 3rem;
  }
}

.privacy-policy-subtitle {
  font-size: 1.25rem;
  color: hsl(215, 20.2%, 65.1%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.5;
}

.privacy-policy-content {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.privacy-policy-card {
  background-color: hsla(222.2, 84%, 4.9%, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(217.2, 32.6%, 17.5%);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.privacy-policy-card-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.privacy-policy-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(210, 40%, 98%);
  margin-bottom: 0;
}

.privacy-policy-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-policy-card-content p {
  color: hsl(215, 20.2%, 65.1%);
  margin: 0;
}

.privacy-policy-card-content ul {
  list-style-type: disc;
  list-style-position: inside;
  color: hsl(215, 20.2%, 65.1%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-policy-card-content li {
  margin: 0;
}

.privacy-policy-contact-info {
  background-color: hsla(217.2, 32.6%, 17.5%, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.privacy-policy-contact-name {
  font-weight: 600 !important;
  color: hsl(210, 40%, 98%) !important;
}

.privacy-policy-last-updated {
  font-size: 0.875rem !important;
  color: hsl(215, 20.2%, 65.1%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }

  .privacy-policy-header {
    margin-bottom: 2rem;
  }

  .privacy-policy-title {
    font-size: 2rem;
  }

  .privacy-policy-subtitle {
    font-size: 1.125rem;
  }

  .privacy-policy-card-header,
  .privacy-policy-card-content {
    padding: 1rem;
  }
}

/* Imprint page  */
.imprint-header {
  text-align: center;
  margin-bottom: 4rem;
}

.imprint-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  background-color: hsl(217.2, 32.6%, 17.5%);
  color: hsl(210, 40%, 98%);
  border-radius: 9999px;
  font-size: 0.875rem;
}

.imprint-badge svg {
  width: 16px;
  height: 16px;
}

.imprint-title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.imprint-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content */
.imprint-content {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.imprint-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.imprint-card-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.imprint-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.imprint-card-content {
  padding: 1.5rem;
}

.imprint-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

/* Info Grid */
.imprint-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .imprint-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.imprint-info-item {
  /* No additional styles needed */
}

.imprint-info-label {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.imprint-info-value {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Address Section */
.imprint-address-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.imprint-address-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.imprint-address-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
}

.imprint-address-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* Text */
.imprint-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

/* List */
.imprint-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.imprint-list li {
  margin-bottom: 0.5rem;
}

/* Warning Box */
.imprint-warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.imprint-warning-text {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

/* Last Updated */
.imprint-last-updated {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }

  .imprint-header {
    margin-bottom: 2rem;
  }

  .imprint-title {
    font-size: 2.5rem;
  }

  .imprint-subtitle {
    font-size: 1.125rem;
  }

  .imprint-card-content {
    padding: 1rem;
  }

  .imprint-card-header {
    padding: 1rem 1rem 0 1rem;
  }
}


