/**
 * NEW-EE Clean Design System
 * Professional, conversion-focused styling
 * Navy = Trust | Red = CTA only | Off-White = Calm
 */

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
   ======================================== */
:root {
  /* Core Colors */
  --navy: #0F1E2E;
  --navy-light: #1a2d3d;
  --bg: #F4F6F8;
  --card: #FFFFFF;
  --text: #374151;
  --muted: #5B6370;  /* Improved contrast: 4.7:1 vs 4.1:1 */
  --line: #E5E7EB;

  /* Brand Accents */
  --red: #C62828;
  --red-hover: #A81D1D;
  --red-light: rgba(198, 40, 40, 0.08);
  --gold: #C9A86C;  /* Brand accent for premium elements */
  --gold-dark: #B08A3A;  /* WCAG AA compliant on white */

  /* States */
  --success: #2E7D32;
  --success-light: rgba(46, 125, 50, 0.12);
  --error: #B91C1C;
  --error-light: rgba(185, 28, 28, 0.10);

  /* Radius & Shadow */
  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(15, 30, 46, 0.10);
  --shadow-sm: 0 4px 12px rgba(15, 30, 46, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 30, 46, 0.12);

  /* Typography */
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Transitions */
  --transition: 0.2s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 64px 0;
}

.section-sm {
  padding: 48px 0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.3px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 17px;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.65;
}

/* ========================================
   HEADER / TOPBAR
   ======================================== */
.topbar {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(198,40,40,1) 0%, rgba(15,30,46,1) 70%);
  box-shadow: 0 10px 22px rgba(198,40,40,0.18);
}

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

.brand-name {
  font-size: 15px;
  font-weight: 800;
}

.brand-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.8);  /* Improved contrast: 4.5:1 */
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}

.nav a {
  padding: 10px 14px;
  border-radius: 12px;
  transition: background var(--transition);
}

.nav a:hover,
.nav a.active {
  background: rgba(255,255,255,0.08);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-cta .btn-secondary {
    display: none;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: transform 0.05s ease, background var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  flex-shrink: 0;
}

/* Primary (Red) */
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(198,40,40,0.22);
}

.btn-primary:hover {
  background: var(--red-hover);
}

/* Navy */
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15,30,46,0.18);
}

.btn-navy:hover {
  background: var(--navy-light);
}

/* Secondary (Outline on dark) */
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
}

/* Outline (Light background) */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: #cbd5e1;
  background: #fff;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
}

.btn-ghost:hover {
  background: rgba(15,30,46,0.06);
}

/* Sizes */
.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
  border-radius: 16px;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

/* Full Width */
.btn-block {
  width: 100%;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: all var(--transition);
}

.card:hover {
  border-color: rgba(15,30,46,0.2);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Card with top accent */
.card-accent {
  position: relative;
  overflow: hidden;
}

.card-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.card-accent.highlight::before {
  background: var(--red);
  opacity: 1;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 48px 0 32px;
}

.hero-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
  overflow: hidden;
  position: relative;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(198,40,40,0.12), rgba(15,30,46,0.06), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-wrap {
    padding: 32px 24px;
  }
}

/* Kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15,30,46,0.05);
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

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

.hero h1 {
  margin: 18px 0 14px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-row {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.meta-row span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.meta-row svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-stat {
  text-align: center;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--red);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ========================================
   TRUST LOGOS
   ======================================== */
.trust-section {
  padding: 32px 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 20px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  padding: 10px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  transition: all var(--transition);
}

.logo-item:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ========================================
   GRIDS
   ======================================== */
.grid {
  display: grid;
  gap: 20px;
}

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

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

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

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   DUAL CTA CARDS
   ======================================== */
.dual-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.dual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.dual-card.highlight::before {
  background: var(--red);
  opacity: 1;
}

.dual-icon {
  width: 56px;
  height: 56px;
  background: rgba(15,30,46,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.dual-card.highlight .dual-icon {
  background: var(--red-light);
  color: var(--red);
}

.dual-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.dual-card > p {
  font-size: 15px;
  margin-bottom: 20px;
}

.dual-list {
  list-style: none;
  margin: 0 0 24px;
}

.dual-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.dual-list li:last-child {
  border: none;
}

.dual-list svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: var(--navy);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-box {
  text-align: center;
  padding: 24px 16px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--red);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-number {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  transition: all var(--transition);
}

.process-step:hover .process-number {
  border-color: var(--red);
  color: var(--red);
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
}

/* ========================================
   INDUSTRIES
   ======================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.industry-icon {
  width: 48px;
  height: 48px;
  background: rgba(15,30,46,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--navy);
}

.industry-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.industry-card p {
  font-size: 12px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--navy);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-author-info h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.testimonial-author-info p {
  font-size: 12px;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  padding: 32px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

/* ========================================
   FORMS
   ======================================== */
.form {
  display: grid;
  gap: 16px;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

label {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}

.input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15,30,46,0.45);
  box-shadow: 0 0 0 4px rgba(15,30,46,0.08);
}

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

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-help {
  font-size: 12px;
  color: var(--muted);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

/* Form Status */
.form-status {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  border: 1px solid var(--line);
  background: rgba(15,30,46,0.04);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.form-status .pill {
  font-weight: 800;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--success-light);
  color: var(--success);
  border: 1px solid rgba(46,125,50,0.22);
  white-space: nowrap;
}

.form-status.error .pill {
  background: var(--error-light);
  color: var(--error);
  border-color: rgba(185,28,28,0.22);
}

/* ========================================
   SUBPAGE HERO
   ======================================== */
.hero-subpage {
  padding: 48px 0 32px;
}

.hero-subpage .hero-wrap {
  padding: 48px;
}

.hero-subpage h1 {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .hero-subpage .hero-wrap {
    padding: 32px 24px;
  }
}

/* ========================================
   FEATURE LIST
   ======================================== */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li:last-child {
  border: none;
}

.feature-list svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list strong {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.feature-list span {
  font-size: 14px;
  color: var(--muted);
}

/* ========================================
   VALUES / ABOUT GRID
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(15,30,46,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.value-card h4 {
  margin-bottom: 6px;
}

.value-card p {
  font-size: 14px;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.founder-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.founder-content .section-label {
  text-align: left;
}

@media (max-width: 900px) {
  .founder-content .section-label {
    text-align: center;
  }
}

.founder-title {
  font-size: 16px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 15px;
  margin-bottom: 16px;
}

.founder-quote {
  background: var(--bg);
  border-left: 4px solid var(--red);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
}

.founder-quote p {
  font-style: italic;
  color: var(--text);
  font-size: 15px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
  .legal-content {
    padding: 24px;
  }
}

.legal-content h1 {
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 20px;
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-size: 17px;
  margin: 24px 0 10px;
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 12px 24px;
  color: var(--text);
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--red-hover);
}

/* ========================================
   MODAL / APPLICATION FORMS
   ======================================== */
.application-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.application-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 30, 46, 0.7);
  backdrop-filter: blur(4px);
}

.application-modal-content {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.application-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all var(--transition);
}

.application-modal-close:hover {
  background: var(--line);
  color: var(--navy);
}

.application-modal-header {
  margin-bottom: 24px;
  padding-right: 40px;
}

.application-modal-header h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.application-modal-header p {
  font-size: 15px;
}

.form-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section-title {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Toast Messages */
.toast-message {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-success svg {
  color: var(--success);
}

.toast-error {
  border-left: 4px solid var(--error);
}

.toast-error svg {
  color: var(--error);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden { display: none; }

@media (max-width: 600px) {
  .hidden-mobile { display: none; }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* Skip Link - Barrierefreiheit */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  font-size: 14px;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.btn-primary:focus-visible {
  outline-color: var(--red-hover);
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.25);
}
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  outline: 2px solid #fff;
  outline-offset: -2px;
}

/* ========================================
   CONVERSION ELEMENTS
   ======================================== */

/* Header Phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  background: rgba(198, 40, 40, 0.15);
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.header-phone:hover {
  background: rgba(198, 40, 40, 0.25);
  transform: translateY(-1px);
}
.header-phone svg {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .header-phone {
    display: none;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

/* Social Proof Trust Bar */
.trust-proof {
  background: var(--navy);
  padding: 40px 0;
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-number {
    font-size: 28px;
  }
}

/* Urgency Bar */
.urgency-bar {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-bottom: 2px solid #FF9800;
  padding: 12px 0;
}
.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: #E65100;
  flex-wrap: wrap;
}
.urgency-content svg {
  color: #FF9800;
  animation: urgencyPulse 1.5s infinite;
  flex-shrink: 0;
}
.urgency-cta {
  color: #E65100;
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--transition);
}
.urgency-cta:hover {
  color: #BF360C;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ========================================
   APPLICATION FORM STYLES
   ======================================== */

/* Application Form */
.application-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.application-form .form-section {
  background: var(--bg);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.application-form .form-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* LinkedIn Quick Apply Section */
.linkedin-quick-section {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.06) 0%, rgba(15, 30, 46, 0.04) 100%);
  border: 2px solid var(--red);
  padding: 24px;
  border-radius: var(--radius);
}

.linkedin-quick-section .form-section-title {
  color: var(--red);
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}

.checkbox-group .checkbox-label:hover {
  border-color: var(--navy);
}

.checkbox-group .checkbox-label:has(input:checked) {
  background: rgba(15, 30, 46, 0.05);
  border-color: var(--navy);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

/* File Upload */
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  color: var(--muted);
  background: var(--card);
}

.file-upload-label:hover {
  border-color: var(--navy);
  background: var(--bg);
}

.file-upload-label svg {
  color: var(--navy);
}

.file-upload-label span {
  font-weight: 600;
  font-size: 14px;
}

.file-upload-label .file-input {
  display: none;
}

.file-upload-label.has-file {
  border-color: var(--success);
  background: var(--success-light);
}

.file-upload-label.has-file svg {
  color: var(--success);
}

/* Privacy and Talentpool */
.privacy-talentpool-group {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.privacy-checkbox {
  margin-bottom: 12px;
}

.talentpool-option {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkbox-subtle {
  color: var(--muted);
  font-size: 13px;
}

/* Modern Button Styles for Forms */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary-modern {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.25);
}

.btn-primary-modern:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(198, 40, 40, 0.3);
}

.btn-primary-modern:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary-modern {
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-secondary-modern:hover {
  background: var(--line);
  border-color: var(--navy);
}

/* Form Actions */
.application-form .form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

@media (max-width: 600px) {
  .application-form .form-actions {
    flex-direction: column;
  }

  .application-form .form-actions .btn-modern {
    width: 100%;
  }

  .checkbox-group {
    flex-direction: column;
  }

  .checkbox-group .checkbox-label {
    width: 100%;
  }
}

/* Form Note */
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  margin-top: 8px;
}

/* Toast Animations */
.toast-fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

@keyframes toastFadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Modal Closing Animation */
.modal-closing .application-modal-overlay {
  animation: fadeOut 0.3s ease forwards;
}

.modal-closing .application-modal-content {
  animation: slideOut 0.3s ease forwards;
}

@keyframes fadeOut {
  to { opacity: 0; }
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}

/* ========================================
   COOKIE BANNER
   ======================================== */

/* Banner Base */
.cookie-banner-modern {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--card);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  animation: cookieSlideUp 0.4s ease;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-hide-modern {
  animation: cookieSlideDown 0.4s ease forwards;
}

@keyframes cookieSlideDown {
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-content-modern {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cookie-banner-text-modern h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cookie-banner-text-modern p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-text-modern a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-text-modern a:hover {
  color: var(--red-hover);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Button Sizes for Cookie Banner */
.btn-small {
  padding: 10px 16px;
  font-size: 13px;
}

.btn-outline-modern {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-outline-modern:hover {
  background: var(--bg);
  border-color: var(--navy);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner-container {
    flex-direction: column;
    padding: 16px 20px;
    gap: 16px;
  }

  .cookie-banner-content-modern {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cookie-banner-icon {
    width: 40px;
    height: 40px;
  }

  .cookie-banner-icon svg {
    width: 24px;
    height: 24px;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-actions .btn-modern {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   COOKIE SETTINGS MODAL
   ======================================== */

.cookie-modal-modern {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 30, 46, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

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

.cookie-modal-content-modern {
  background: var(--card);
  border-radius: var(--radius);
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(20px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.cookie-modal-header-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
}

.cookie-modal-header-modern h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.cookie-modal-close-modern {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.cookie-modal-close-modern:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-modal-body-modern {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* Cookie Categories */
.cookie-category-modern {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.cookie-category-modern:last-child {
  margin-bottom: 0;
}

.cookie-category-header-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.cookie-category-info-modern h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px 0;
}

.cookie-category-status-modern {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.cookie-category-description-modern {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

/* Cookie Toggle Switch */
.cookie-switch-modern {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-switch-modern input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider-modern {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--line);
  border-radius: 26px;
  transition: all var(--transition);
}

.cookie-slider-modern:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: all var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-switch-modern input:checked + .cookie-slider-modern {
  background: var(--red);
}

.cookie-switch-modern input:checked + .cookie-slider-modern:before {
  transform: translateX(22px);
}

.cookie-switch-modern input:disabled + .cookie-slider-modern {
  background: var(--navy);
  cursor: not-allowed;
}

.cookie-switch-modern input:focus-visible + .cookie-slider-modern {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Modal Footer */
.cookie-modal-footer-modern {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.cookie-modal-footer-modern .btn-modern {
  flex: 1;
  justify-content: center;
}

@media (max-width: 480px) {
  .cookie-modal-footer-modern {
    flex-direction: column;
  }
}
