@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  /* BALANCED TRIO (GLEICH DOMINANT) */
  --orange: #e8723b;
  --orange-light: #f0934a;
  --orange-soft: rgba(232, 114, 59, 0.10);
  
  --gold: #c9903a;
  --gold-light: #dba84e;
  --gold-soft: rgba(201, 144, 58, 0.10);
  
  --edelgruen: #2d5a47;
  --edelgruen-light: #4a8b6f;
  --edelgruen-soft: rgba(45, 90, 71, 0.08);
  
  /* NEUTRALS */
  --anthrazit: #3a3f44;
  --anthrazit-light: #4d525a;
  --cream: #f5f1e8;
  --cream-light: #faf8f3;
  --cream-muted: #a8927a;
  
  /* FONTS */
  --display: 'Playfair Display', Georgia, serif;
  --serif: 'Libre Baskerville', serif;
  --elegant: 'Cormorant', Georgia, serif;
  
  /* LIGHT MODE */
  --bg: var(--cream-light);
  --bg-alt: var(--cream);
  --bg-card: #ffffff;
  --text: var(--anthrazit);
  --text-muted: var(--cream-muted);
  --text-heading: var(--anthrazit);
  --border: rgba(45, 90, 71, 0.12);
  --shadow: rgba(58, 63, 68, 0.08);
  
  /* NAV & HERO */
  --nav-bg: rgba(58, 63, 68, 0.96);
  --nav-text: var(--cream-light);
  --nav-muted: var(--cream-muted);
  --hero-text: var(--cream-light);
  --hero-muted: var(--cream-muted);
  
  /* DARK SECTIONS */
  --dark-bg: var(--anthrazit);
  --dark-text: var(--cream-light);
  --dark-muted: var(--cream-muted);
  
  /* ACCENT GRADIENT (ALL THREE) */
  --accent: linear-gradient(135deg, #e8723b, #c9903a, #2d5a47);
  --accent-warm: linear-gradient(135deg, #f0934a, #dba84e, #4a8b6f);
}

/* DARK MODE */
[data-theme="dark"] {
  --bg: #1a1f24;
  --bg-alt: #222a32;
  --bg-card: #2d3540;
  --text: #f5f1e8;
  --text-muted: #a8927a;
  --text-heading: #f5f1e8;
  --border: rgba(74, 139, 111, 0.15);
  --shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .section-light,
[data-theme="dark"] .section-ivory {
  background: var(--bg-alt);
}

[data-theme="dark"] .card-light {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="dark"] .card-light h3,
[data-theme="dark"] .card-light p {
  color: var(--text);
}

[data-theme="dark"] .feature-box {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}

/* GLOBAL */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.4s, color 0.4s;
}

a {
  color: var(--edelgruen-light);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--orange-light);
}

main {
  flex: 1;
}

img {
  max-width: 100%;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(232, 114, 59, 0.15);
  backdrop-filter: blur(8px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
  width: auto;
  filter: brightness(1.1);
}

.nav-logo-text {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--nav-text);
}

.nav-logo-text span {
  color: var(--nav-muted);
  font-weight: 400;
  font-style: italic;
  font-size: 0.82em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--nav-muted);
  font-family: var(--elegant);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-light);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.3s;
}

.theme-toggle:hover {
  background: var(--edelgruen);
  border-color: var(--orange);
  color: var(--orange);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: radial-gradient(ellipse 40% 50% at 20% 30%, rgba(232, 114, 59, 0.15) 0%, transparent 55%),
              radial-gradient(ellipse 35% 45% at 85% 70%, rgba(45, 90, 71, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse 50% 30% at 50% 100%, rgba(201, 144, 58, 0.10) 0%, transparent 55%),
              radial-gradient(ellipse 50% 30% at 50% 100%, rgba(58, 63, 68, 0.4) 0%, transparent 55%),
              linear-gradient(175deg, #3a3f44 0%, #2d3540 30%, #252a30 60%, #1f2329 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(174deg, transparent 0px, transparent 20px, rgba(232, 114, 59, 0.012) 20px, rgba(232, 114, 59, 0.012) 21px),
                    repeating-linear-gradient(170deg, transparent 0px, transparent 38px, rgba(201, 144, 58, 0.010) 38px, rgba(201, 144, 58, 0.010) 39px),
                    repeating-linear-gradient(177deg, transparent 0px, transparent 60px, rgba(45, 90, 71, 0.008) 60px, rgba(45, 90, 71, 0.008) 62px);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(58, 63, 68, 0.5) 70%, rgba(58, 63, 68, 0.8) 100%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  height: 80px;
  width: auto;
  max-width: 520px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(232, 114, 59, 0.35)) drop-shadow(0 0 50px rgba(45, 90, 71, 0.15));
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 1.2rem;
  border: 1px solid var(--gold);
  font-family: var(--elegant);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--hero-text);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 440px;
  color: var(--hero-muted);
  font-family: var(--elegant);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero-divider {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--orange-light), var(--gold), transparent);
}

/* SECTIONS */
section {
  padding: 5.5rem 3rem;
  transition: background 0.4s;
}

.section-light {
  background: var(--bg);
}

.section-ivory {
  background: var(--bg-alt);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--dark-text);
  background: radial-gradient(ellipse 40% 50% at 20% 35%, rgba(232, 114, 59, 0.12) 0%, transparent 55%),
              radial-gradient(ellipse 35% 45% at 85% 70%, rgba(45, 90, 71, 0.10) 0%, transparent 50%),
              radial-gradient(ellipse 50% 30% at 50% 100%, rgba(201, 144, 58, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse 50% 30% at 50% 100%, rgba(58, 63, 68, 0.4) 0%, transparent 55%),
              linear-gradient(162deg, #3a3f44 0%, #2d3540 35%, #252a30 65%, #1f2329 100%);
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(172deg, transparent 0px, transparent 26px, rgba(232, 114, 59, 0.010) 26px, rgba(232, 114, 59, 0.010) 27px),
                    repeating-linear-gradient(168deg, transparent 0px, transparent 48px, rgba(201, 144, 58, 0.008) 48px, rgba(201, 144, 58, 0.008) 49px);
}

.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(45, 90, 71, 0.08) 0%, transparent 50%);
}

.section-dark .section-label {
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.section-dark .section-title {
  color: var(--dark-text);
  position: relative;
  z-index: 1;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.narrow {
  max-width: 800px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--elegant);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--text-heading);
}

.section-text {
  font-family: var(--elegant);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.elegant-rule {
  width: 48px;
  height: 2px;
  margin: 1.5rem auto;
  background: linear-gradient(to right, var(--orange), var(--gold), var(--edelgruen-light));
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card-dark {
  background: rgba(45, 90, 71, 0.05);
  border: 1px solid rgba(232, 114, 59, 0.15);
  padding: 2.2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.card-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--gold), var(--edelgruen));
  opacity: 0;
  transition: opacity 0.4s;
}

.card-dark:hover {
  border-color: var(--orange-light);
  transform: translateY(-3px);
  background: rgba(232, 114, 59, 0.08);
  box-shadow: 0 8px 30px var(--shadow);
}

.card-dark:hover::after {
  opacity: 1;
}

.card-dark h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 0.4rem;
}

.card-dark p {
  color: var(--dark-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-family: var(--elegant);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.badge-active {
  background: rgba(45, 90, 71, 0.18);
  color: var(--edelgruen-light);
}

.badge-planned {
  background: rgba(232, 114, 59, 0.16);
  color: var(--orange-light);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  color: var(--gold-light);
  font-family: var(--elegant);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.3s;
}

.card-link:hover {
  color: var(--orange-light);
}

.card-light {
  background: var(--bg-card);
  border: 1px solid rgba(201, 144, 58, 0.15);
  padding: 2.2rem;
  text-align: center;
  transition: all 0.4s;
}

.card-light:hover {
  border-color: var(--edelgruen-light);
  box-shadow: 0 8px 30px var(--shadow);
}

.card-light .number {
  font-family: var(--display);
  font-size: 2.2rem;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: 0.4rem;
}

.card-light h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.card-light p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.card-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon {
  font-size: 3.5rem;
  margin: 1.2rem 0;
  opacity: 0.85;
  transition: transform 0.3s;
}

.card-featured:hover .card-icon {
  transform: scale(1.12);
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  margin: 1.5rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(232, 114, 59, 0.12);
  border-bottom: 1px solid rgba(232, 114, 59, 0.12);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: var(--elegant);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  background: var(--edelgruen);
  color: var(--cream-light);
  border: 1px solid var(--edelgruen);
  font-family: var(--elegant);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background: var(--orange);
  border-color: var(--gold);
  color: var(--cream-light);
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 2.5rem auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--edelgruen-light), transparent);
  opacity: 0.3;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.timeline-item:nth-child(odd) {
  direction: rtl;
}

.timeline-item:nth-child(odd) > * {
  direction: ltr;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--cream-light);
  box-shadow: 0 0 0 3px var(--orange);
}

.timeline-year {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-label {
  font-family: var(--elegant);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CASE STUDIES */
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.case-study {
  background: var(--bg-card);
  border: 1px solid rgba(201, 144, 58, 0.15);
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s;
}

.case-study:hover {
  border-left-color: var(--orange-light);
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateX(4px);
}

.case-number {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.case-study h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.case-label {
  font-family: var(--elegant);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.case-section {
  margin-bottom: 1.5rem;
}

.case-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.case-impact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 144, 58, 0.12);
  border-bottom: 1px solid rgba(201, 144, 58, 0.12);
}

.impact-item {
  display: flex;
  gap: 1rem;
}

.impact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

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

.impact-text strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.impact-text span {
  font-family: var(--elegant);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.case-quote {
  font-family: var(--elegant);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.5rem 0 0.8rem;
}

.case-tech {
  font-family: var(--elegant);
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0;
}

.case-tech strong {
  color: var(--gold);
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: rgba(232, 114, 59, 0.04);
  border: 1px solid rgba(201, 144, 58, 0.15);
  padding: 2.2rem;
  text-align: center;
  transition: all 0.4s;
}

.team-member:hover {
  border-color: var(--orange-light);
  background: rgba(232, 114, 59, 0.08);
}

.team-role-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(201, 144, 58, 0.15);
  color: var(--gold-light);
  font-family: var(--elegant);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.team-title {
  font-family: var(--elegant);
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.team-focus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.focus-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(201, 144, 58, 0.2);
  color: var(--gold-light);
  font-family: var(--elegant);
  font-size: 0.7rem;
  border-radius: 12px;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(45, 90, 71, 0.15);
  padding: 2rem;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-4px);
}

.blog-date {
  font-family: var(--elegant);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.blog-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--text);
}

.blog-card h3 a:hover {
  color: var(--orange);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}

.blog-link {
  display: inline-block;
  color: var(--edelgruen-light);
  font-family: var(--elegant);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.3s;
}

.blog-link:hover {
  color: var(--orange-light);
}

/* OPPORTUNITIES */
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.opportunity-card {
  background: rgba(201, 144, 58, 0.04);
  border: 1px solid rgba(201, 144, 58, 0.15);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.opportunity-card:hover {
  border-color: var(--gold-light);
  background: rgba(201, 144, 58, 0.08);
  transform: translateY(-3px);
}

.opp-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.opportunity-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.opportunity-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

/* FOOTER */
footer {
  position: relative;
  overflow: hidden;
  background: var(--anthrazit);
  color: var(--cream-muted);
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(232, 114, 59, 0.15);
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(172deg, transparent 0px, transparent 28px, rgba(201, 144, 58, 0.008) 28px, rgba(201, 144, 58, 0.008) 29px);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-left img {
  height: 22px;
  width: auto;
}

.footer-left span {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--cream-light);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--cream-muted);
  font-family: var(--elegant);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--orange-light);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  color: var(--cream-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold-light);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeUp 0.8s ease both;
}

.fade-in-d1 {
  animation: fadeUp 0.8s ease 0.12s both;
}

.fade-in-d2 {
  animation: fadeUp 0.8s ease 0.26s both;
}

.fade-in-d3 {
  animation: fadeUp 0.8s ease 0.42s both;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 0.7rem 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3.5rem;
  }

  .hero-logo {
    height: 60px;
    max-width: 340px;
  }

  section {
    padding: 3.5rem 1.5rem;
  }

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

  .card-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .timeline {
    gap: 1.5rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) {
    direction: ltr;
  }

  .case-impact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

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

  footer {
    padding: 2rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }
}
