/* ==========================================================================
   DIGITAL LIFE GREEN FUTURE – Modern Design System
   Inspired by Salviz Elektrotechnik design language
   Color: Deep Navy #0a0e1a | Electric Green #1EA64B | White #ffffff
   Font: Inter (headings) | Roboto (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&family=Roboto:wght@300;400;500&display=swap');

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --navy:        #0a0e1a;
  --navy-mid:    #0f1628;
  --navy-light:  #162035;
  --green:       #1EA64B;
  --green-dark:  #127a33;
  --green-glow:  rgba(30,166,75,0.15);
  --blue-accent: #004F7C;
  --white:       #ffffff;
  --gray-light:  #f4f6fa;
  --gray:        #aab2c8;
  --text-dark:   #1a2240;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius:      12px;
  --shadow:      0 8px 40px rgba(0,0,0,0.35);
  --shadow-green: 0 4px 30px rgba(30,166,75,0.25);
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background: var(--navy);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: #3ecf6b; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.green       { color: var(--green); }
.section-padding    { padding: 96px 0; }
.section-padding-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 24px; }
.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-navy-light { background: var(--navy-light); }

/* ── Section Headers ────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--green); }
.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover {
  background: #28c95e;
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
#dlgf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}
#dlgf-nav.scrolled {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(30,166,75,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 5px 14px;
  border-radius: 10px;
  height: 54px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  text-decoration: none;
}
.nav-logo:hover {
  background: #f8fff9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.nav-logo img { 
  height: 100%; 
  width: auto; 
}
.nav-logo-text {
  display: none; /* Hide redundant text since it's in the logo image */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-glow);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Language toggle */
.lang-toggle {
  display: flex;
  background: var(--navy-light);
  border: 1px solid rgba(30,166,75,0.2);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 16px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}
.lang-btn.active { background: var(--green); color: var(--white); }
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(30,166,75,0.1);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: var(--transition);
  display: block;
}
.nav-mobile a:hover { color: var(--green); background: var(--green-glow); }
.nav-mobile.open { display: flex; }

/* ── Floating / Antigravity Animations ──────────────────────────────────── */
@keyframes antigravity {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-28px) rotate(6deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes antigravity-reverse {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(28px) rotate(-6deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
.floating-element {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: antigravity 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-element.reverse { animation: antigravity-reverse 8s ease-in-out infinite; }
.glass-orb {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(30,166,75,0.18));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30,166,75,0.35);
  box-shadow: 0 10px 40px 0 rgba(30,166,75,0.35);
  border-radius: 50%;
}
.glass-icon {
  font-size: 50px;
  filter: drop-shadow(0 0 18px rgba(30,166,75,0.8));
}

/* ── Erasmus+ Badge (hero) ───────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-glow);
  border: 1px solid rgba(30,166,75,0.35);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

/* ── Page Hero (full-screen) ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.65) 55%, rgba(0,79,124,0.40) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-title .highlight { color: var(--green); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Inner page subhero */
.subhero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
}
.subhero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.88) 0%, rgba(10,14,26,0.6) 55%, rgba(0,79,124,0.45) 100%);
  z-index: 1;
}
.subhero .container { position: relative; z-index: 2; }
.subhero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.subhero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.subhero-desc {
  font-size: 18px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Expertise / Service Cards ───────────────────────────────────────────── */
.expertise-card {
  background: var(--navy-mid);
  border: 1px solid rgba(30,166,75,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue-accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.expertise-card:hover {
  border-color: rgba(30,166,75,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30,166,75,0.12);
}
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-card .card-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--green-glow);
  border: 1px solid rgba(30,166,75,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.expertise-card:hover .card-icon {
  background: var(--green);
  color: var(--white);
}
.expertise-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.expertise-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--green);
  margin-top: 18px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── Stats Section ───────────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-top: 1px solid rgba(30,166,75,0.1);
  border-bottom: 1px solid rgba(30,166,75,0.1);
  padding: 80px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ── Steps Grid (How We Work) ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(0,79,124,0.6));
  border-radius: 2px;
  z-index: 0;
}
.step-cell {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Feature List (icon + text) ─────────────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-glow);
  border: 1px solid rgba(30,166,75,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-top: 2px;
}
.feature-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.feature-item p  { font-size: 14px; color: var(--gray); margin: 0; }

/* ── Process Steps ───────────────────────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.step-content h4 { font-size: 18px; margin-bottom: 6px; color: var(--white); }
.step-content p  { font-size: 14px; color: var(--gray); margin: 0; }

/* ── Project / Article Cards ─────────────────────────────────────────────── */
.project-card {
  background: var(--navy-mid);
  border: 1px solid rgba(30,166,75,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.project-card:hover {
  border-color: rgba(30,166,75,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.project-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.project-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,14,26,0.85));
}
.project-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(30,166,75,0.15);
  border: 1px solid rgba(30,166,75,0.4);
  padding: 4px 12px;
  border-radius: 20px;
}
.project-card-body { padding: 28px 24px; }
.project-card-body h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.project-card-body p  { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── Article (Insights) Cards ───────────────────────────────────────────── */
.article-card {
  background: var(--navy-mid);
  border: 1px solid rgba(30,166,75,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.article-card:hover {
  border-color: rgba(30,166,75,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(30,166,75,0.12);
}
.article-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.article-card-body { padding: 26px 24px; }
.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.article-card-body h4 { font-size: 17px; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.article-card-body p  { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── Team Member Cards ───────────────────────────────────────────────────── */
.team-card {
  background: var(--navy-mid);
  border: 1px solid rgba(30,166,75,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  border-color: rgba(30,166,75,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(30,166,75,0.12);
}
.team-card-img {
  position: relative;
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 240px;
  object-fit: cover; object-position: top;
  filter: grayscale(20%);
  transition: var(--transition);
}
.team-card:hover .team-card-img img { filter: grayscale(0); transform: scale(1.04); }
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,14,26,0.9));
}
.team-card-body { padding: 24px 20px; }
.team-card-body h3 { font-size: 17px; color: var(--white); margin-bottom: 4px; }
.team-card-body .role { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 12px; }
.team-card-body p   { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.member-skills-list {
  list-style: none;
  padding: 0;
  text-align: left;
  border-top: 1px solid rgba(30,166,75,0.1);
  padding-top: 14px;
  margin-top: 4px;
}
.member-skills-list li {
  font-size: 12px;
  color: var(--gray);
  padding: 3px 0 3px 16px;
  position: relative;
}
.member-skills-list li::before {
  content: '▸';
  color: var(--green);
  position: absolute;
  left: 0;
  font-size: 11px;
}
.team-socials { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.team-social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--navy-light);
  border: 1px solid rgba(30,166,75,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
  text-decoration: none;
}
.team-social-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-accent) 100%);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner h2  { font-size: clamp(24px,3vw,36px); margin-bottom: 12px; }
.cta-banner p   { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 17px; }
.cta-actions    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Form ────────────────────────────────────────────────────────── */
.form-group  { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(30,166,75,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,166,75,0.1);
}
.form-control::placeholder { color: rgba(170,178,200,0.5); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control, select.form-control option { background: var(--navy-mid); cursor: pointer; }

/* ── Contact Info Card ───────────────────────────────────────────────────── */
.info-card {
  background: var(--navy-mid);
  border: 1px solid rgba(30,166,75,0.1);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.info-card:hover { border-color: rgba(30,166,75,0.3); }
.info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-glow);
  border: 1px solid rgba(30,166,75,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-card h4 { font-size: 15px; margin-bottom: 6px; color: var(--white); }
.info-card p, .info-card a { font-size: 14px; color: var(--gray); margin: 0; display: block; }
.info-card a:hover { color: var(--green); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
#dlgf-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(30,166,75,0.12);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 44px; }
.footer-logo-text { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 14px; line-height: 1.3; color: var(--white); }
.footer-logo-text span { color: var(--green); }
.footer-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--navy-light);
  border: 1px solid rgba(30,166,75,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--gray);
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-col a:hover { color: var(--green); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item .fc-icon { color: var(--green); font-size: 15px; margin-top: 1px; }
.footer-contact-item span { font-size: 13px; color: var(--gray); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(170,178,200,0.5); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(170,178,200,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--green); }

/* ── Preloader ───────────────────────────────────────────────────────────── */
#dlgf-preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#dlgf-preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: 2px; }
.preloader-logo span { color: var(--green); }
.preloader-bar {
  width: 160px; height: 3px;
  background: rgba(30,166,75,0.2);
  border-radius: 2px;
  margin: 16px auto 0;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%; height: 100%;
  background: var(--green);
  border-radius: 2px;
  animation: preload 1s infinite;
}
@keyframes preload {
  0%   { margin-left: -40%; }
  100% { margin-left: 100%; }
}

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ── Divider ─────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(30,166,75,0.25), transparent); }

/* ── Back to Top ─────────────────────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 500;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-green);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover   { transform: translateY(-3px); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { gap: 24px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .floating-element { display: none !important; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-banner { padding: 40px 24px; }
  .cta-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .subhero { padding: 130px 0 60px; }
  .subhero-title { font-size: 36px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .article-full-body { padding: 24px 20px; }
  .article-full-img { height: 200px; }
  .team-card-img img { height: 200px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .stats-section .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .article-full-body { padding: 20px 16px; }
  .author-line { flex-wrap: wrap; gap: 10px; }
}

