:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--bg-body);
  background-image: radial-gradient(circle at 0% 0%, hsla(var(--h-secondary), var(--s-secondary), var(--l-secondary), 0.05) 0%, transparent 50%), radial-gradient(circle at 100% 100%, hsla(var(--h-primary), var(--s-primary), var(--l-primary), 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

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

section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  color: var(--text-main);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: hsl(var(--h-secondary), var(--s-secondary), var(--l-secondary));
  margin: 0.5rem auto 0;
  border-radius: 9999px;
}

.page-header {
  background: #0f172a;
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-header::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 800px;
  background: radial-gradient(circle, hsla(var(--h-primary), var(--s-primary), var(--l-primary), 0.2) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.page-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fade-in-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.page-intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fade-in-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.main-content {
  min-height: calc(100vh - 200px);
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--h-primary), var(--s-primary), var(--l-primary)) 0%, hsl(var(--h-primary), var(--s-primary), calc(var(--l-primary) - 5%)) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(var(--shadow-color), 0.3);
}
.btn-primary::before {
  background: linear-gradient(135deg, hsl(var(--h-primary), var(--s-primary), calc(var(--l-primary) - 5%)) 0%, hsl(var(--h-primary), var(--s-primary), var(--l-primary)) 100%);
  opacity: 0;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--shadow-color), 0.4);
}
.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: rgba(var(--h-primary), var(--s-primary), var(--l-primary), 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.btn-secondary:hover {
  background: rgba(var(--h-primary), var(--s-primary), var(--l-primary), 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  color: var(--primary-color);
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.stat-card {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}
.stat-card {
  padding: 4rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--h-secondary), var(--s-secondary), var(--l-secondary)), hsl(var(--h-primary), var(--s-primary), var(--l-primary)));
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card:hover::after {
  opacity: 1;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, hsl(var(--h-primary), var(--s-primary), var(--l-primary)), hsl(var(--h-primary), var(--s-primary), calc(var(--l-primary) - 5%)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.project-card {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}
.project-card {
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-status {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 2px 0 rgba(var(--shadow-color), calc(var(--shadow-strength) * 0.5));
}

.status-en-cours {
  background-color: hsla(var(--h-secondary), var(--s-secondary), var(--l-secondary), 0.15);
  color: hsl(var(--h-secondary), var(--s-secondary), calc(var(--l-secondary) - 20%));
  border: 1px solid hsla(var(--h-secondary), var(--s-secondary), var(--l-secondary), 0.2);
}

.status-termine {
  background-color: hsla(210, 10%, 50%, 0.1);
  color: var(--text-muted);
  border: 1px solid hsla(210, 10%, 50%, 0.2);
}

.project-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
  padding-right: 6rem;
  line-height: 1.2;
}

.project-description {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.tech-tag {
  background-color: var(--bg-section);
  color: var(--text-muted);
  padding: 0.35rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-tag:hover {
  background-color: var(--border-glass);
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
}

.member-card {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}
.member-card {
  padding: 2.5rem;
  text-align: center;
}

.member-avatar {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
}
.member-avatar::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(var(--h-secondary), var(--s-secondary), var(--l-secondary), 0.5), hsla(var(--h-primary), var(--s-primary), var(--l-primary), 0.5));
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.member-card:hover .member-avatar::before {
  opacity: 1;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--h-primary), var(--s-primary), var(--l-primary)), hsl(var(--h-secondary), var(--s-secondary), var(--l-secondary)));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2.25rem;
  position: relative;
  z-index: 1;
  border: 4px solid var(--bg-surface);
  box-shadow: 0 10px 15px -3px rgba(var(--shadow-color), var(--shadow-strength)), 0 4px 6px -2px rgba(var(--shadow-color), 0.05);
}

.member-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.member-role {
  font-size: 0.875rem;
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.member-promo {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.benefit-card {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}
.benefit-card {
  padding: 4rem;
  height: 100%;
}

.benefit-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--h-secondary), var(--s-secondary), var(--l-secondary));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
}

.benefit-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.benefit-description {
  color: var(--text-muted);
  line-height: 1.6;
}

.social-card {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}
.social-card {
  padding: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.social-card:hover {
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  transform: translateY(-5px);
}

.social-icon {
  font-size: 3rem;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
}

.social-name {
  font-weight: 700;
  font-size: 1.125rem;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.contact-form-container {
  background-color: var(--bg-body);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(var(--shadow-color), var(--shadow-strength)), 0 4px 6px -2px rgba(var(--shadow-color), 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-glass);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  transition: box-shadow 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -0.5rem;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 2px 0 rgba(var(--shadow-color), calc(var(--shadow-strength) * 0.5));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  background: var(--bg-surface);
  box-shadow: 0 10px 15px -3px rgba(var(--shadow-color), var(--shadow-strength)), 0 4px 6px -2px rgba(var(--shadow-color), 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo:hover {
  transform: translateY(-1px);
}

.logo-image {
  height: 45px;
  width: 45px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 2px 0 rgba(var(--shadow-color), calc(var(--shadow-strength) * 0.5));
}

.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  letter-spacing: -0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
  position: relative;
  z-index: 1001;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 6px;
  z-index: 1002;
}
.nav-toggle span {
  width: 30px;
  height: 3px;
  background-color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover {
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(var(--h-secondary), var(--s-secondary), var(--l-secondary));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  font-weight: 700;
}

.theme-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-btn:hover {
  background-color: var(--border-glass);
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  transform: rotate(15deg);
}
.theme-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(128, 128, 128, 0.3);
  border-color: var(--border-glass, rgba(128, 128, 128, 0.3));
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  color: var(--text-main);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}
.lang-btn:hover {
  background-color: var(--border-glass);
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  border-color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

.footer {
  background-color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  color: white;
  padding: 4rem 0 1.5rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-info h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}
.footer-info p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-social h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hero {
  background: #0f172a;
  color: white;
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, hsla(var(--h-primary), var(--s-primary), var(--l-primary), 0.25) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(var(--h-secondary), var(--s-secondary), var(--l-secondary), 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1.5rem;
  color: hsl(var(--h-secondary), var(--s-secondary), var(--l-secondary));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}
.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(5px);
}
.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about {
  background-color: var(--bg-body);
  padding: 6rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.about-text:first-of-type {
  font-size: 1.25rem;
  color: var(--text-main);
  font-weight: 500;
}

.stats {
  background-color: var(--bg-surface);
  padding: 6rem 0;
  position: relative;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(var(--h-primary), var(--s-primary), var(--l-primary), 0.1), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  gap: 2.5rem;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.projects-section {
  background-color: var(--bg-body);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

.team-section {
  background-color: var(--bg-body);
  margin-bottom: 2.5rem;
}
.team-section:last-of-type {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.join-section {
  background-color: var(--bg-section);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.process-section {
  background-color: var(--bg-body);
}

.process-steps {
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.process-step {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}
.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.step-description {
  color: var(--text-muted);
  line-height: 1.6;
}

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

.cta-box {
  background-color: var(--bg-body);
  padding: 4rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(var(--shadow-color), var(--shadow-strength)), 0 10px 10px -5px rgba(var(--shadow-color), 0.04);
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.contact-section {
  background-color: var(--bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 1.125rem;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-value:hover {
  color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
}

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

:root {
  --h-primary: 204;
  --s-primary: 61%;
  --l-primary: 23%;
  --h-secondary: 197;
  --s-secondary: 65%;
  --l-secondary: 70%;
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-section: #f0f4f8;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(23, 66, 94, 0.1);
  --text-main: #0a192f;
  --text-muted: #48586c;
  --text-light: #8892b0;
  --shadow-color: 23, 66, 94;
  --shadow-strength: 0.1;
}

[data-theme=dark] {
  --h-primary: 210;
  --s-primary: 100%;
  --l-primary: 60%;
  --h-secondary: 199;
  --s-secondary: 89%;
  --l-secondary: 48%;
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-section: #121215;
  --bg-glass: rgba(24, 24, 27, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --shadow-color: 0, 0, 0;
  --shadow-strength: 0.5;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 768px) {
  .logo-image {
    height: 32px;
    width: 32px;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .nav-toggle {
    display: flex !important;
    z-index: 1100;
    position: relative;
  }
  .nav-toggle span {
    background-color: var(--text-main);
  }
  .nav-menu {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-body);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    z-index: 1050;
  }
  .nav-menu.active {
    display: flex !important;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    margin: 15px 0;
  }
  .nav-menu .nav-link {
    font-size: 1.8rem;
    display: inline-block;
    color: var(--text-main);
    padding: 10px;
  }
  .nav-menu .nav-link.active {
    color: hsl(var(--h-primary), var(--s-primary), var(--l-primary));
  }
  .nav-menu .theme-btn {
    margin-top: 2rem;
    transform: scale(1.5);
  }
  .nav-link.active::after {
    display: none;
  }
  .nav-link.active {
    background-color: var(--bg-section);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .section-title {
    font-size: 2.25rem;
  }
  .page-title {
    font-size: 2.25rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .logo-image {
    height: 28px;
    width: 28px;
  }
  .logo-text {
    font-size: 1.125rem;
  }
  .hero {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 2.5rem 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

/*# sourceMappingURL=main.css.map */
