body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #0D1015; 
  color: #f1f5f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: #f1f5f9;
}
.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #0ea5e9;
  border-radius: 0 0 50px 50px;
}
.header-title {
  font-weight: 700;
  display: block;
}
.header-desc {
  font-size: 12px;
  color: #94a3b8;
  display: block;
}
#header-text {
  font-size: 40px;
  font-weight: 700;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.5s;
}
.logo:hover {
  text-shadow: 0px 0px 7px #0ea5e9;
}
.logo .mark {
  width: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.nav a {
  text-decoration: none;
  color: #f1f5f9;
  padding: 8px 12px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.nav a:hover {
  color: #0ea5e9;
}
.nav a.cta {
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
    color: #ffffff;
}
.nav a.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0A66C2;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-desktop a {
  padding: 5px;
}
.social-btn img {
  width: 100%;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}

.social-btn.instagram { background: #1e293b; }
.social-btn.tiktok { background: #1e293b; }
.social-btn.linkedin { background: #1e293b; }
.social-btn.facebook { background: #1e293b; }

.social-desktop { display: flex; gap: 10px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #f1f5f9;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.social-mobile {
  display: flex;
  gap: 10px;
}

main {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 80px 28px;
  text-align: left;
}
.partners-section, .about-section {
  z-index: 2;
}
h1 {
  font-size: 48px;
  line-height: 1.02;
  margin: 0 0 18px;
}
p.lead {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 28px;
  color: #cbd5e1;
}
.controls {
  display: flex;
  gap: 12px;
}
.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.btn.primary {
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
  color: #fff;
}
.btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
  background: linear-gradient(90deg, #0ea5e9, #60a5fa);
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #f1f5f9;
}
.btn.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(14, 165, 233, 0.15);
  background: rgba(14, 165, 233, 0.05);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.card {
  background: #1e293b;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-title {
  font-weight: 700;
}
.card-desc {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 8px;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
.partners-section {
  max-width: 1100px;
  margin: 0 auto;
}
.partners-section h1 {
  font-size: 40px;
  margin-bottom: 28px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-card {
  background: #1e293b;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 12px 12px 28px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #31beff, #60a5fa, #80b1ff, #29dbfb);
  background-size: 400% 400%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.05s ease;
  border-radius: inherit;
}
.partner-card:hover::before {
  opacity: 1;
  animation: gradientFlow 3s ease infinite;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 15px 15px 28px rgba(0, 0, 0, 0.4);
  color: white;
}
.partner-card * {
  position: relative;
  z-index: 1;
}
@keyframes gradientFlow {
  0% { background-position: 0% 0%; }
  25% { background-position: 50% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 50% 50%; }
  100% { background-position: 0% 0%; }
}
.partner-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 10px;
}
.partner-card:hover .partner-logo {
  box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.4);
}
.partner-name {
  font-weight: 600;
  font-size: 16px;
}
.about-section {
  max-width: 1100px;
  margin: 0 auto;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-text {
  flex: 1;
}
.about-image {
  flex: 1;
  display: flex;
  overflow: hidden;
}
.about-image img {
  border-radius: 12px;
  max-height: 400px;
  width: auto;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.about-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #cbd5e1;
}
footer {
  padding: 28px;
  text-align: center;
  color: #94a3b8;
}
.bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 30%, #60a5fa, transparent 35%), radial-gradient(circle at 70% 70%, #0ea5e9, transparent 40%);
  filter: blur(60px);
  opacity: 0.4;
  border-radius: 45%;
}
.blob.b1 { left: -10%; top: 10%; animation: slideX 18s linear infinite; }
.blob.b2 { right: -15%; top: 30%; width: 520px; height: 520px; animation: slideX2 22s linear infinite; }
.blob.b3 { left: 20%; bottom: -10%; width: 360px; height: 360px; animation: drift 26s linear infinite; }
.blob.b4 { right: 5%; bottom: 5%; width: 460px; height: 460px; animation: drift2 20s linear infinite; }
.blob.b5 { left: 50%; top: 50%; width: 300px; height: 300px; animation: drift 28s linear infinite; }
.blob.b6 { right: 40%; bottom: 20%; width: 350px; height: 350px; animation: drift2 24s linear infinite; }

.overlay-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 16, 21, 0.4), rgba(13, 16, 21, 0.9));
  z-index: 1;
}

@keyframes slideX { 0% { transform: translateX(-10vw) scale(1); } 50% { transform: translateX(60vw) scale(1.05); } 100% { transform: translateX(-10vw) scale(1); } }
@keyframes slideX2 { 0% { transform: translateX(10vw) scale(1); } 50% { transform: translateX(-50vw) scale(1.03); } 100% { transform: translateX(10vw) scale(1); } }
@keyframes drift { 0% { transform: translateY(0) translateX(0) rotate(0deg); } 25% { transform: translateY(-6vh) translateX(4vw) rotate(8deg); } 50% { transform: translateY(0) translateX(0) rotate(0deg); } 75% { transform: translateY(6vh) translateX(-4vw) rotate(-8deg); } 100% { transform: translateY(0) translateX(0) rotate(0deg); } }
@keyframes drift2 { 0% { transform: translateY(0) translateX(0) rotate(0deg); } 50% { transform: translateY(-8vh) translateX(-6vw) rotate(6deg); } 100% { transform: translateY(0) translateX(0) rotate(0deg); } }

@media (max-width: 900px) { 
  h1 { font-size: 34px; } 
  .card-grid { grid-template-columns: repeat(1, 1fr); } 
  .hero { padding: 48px 20px; }
  .header-title {display: none;}
  .header-desc {display: none;}
  .partners-grid {grid-template-columns: repeat(2, 1fr);}
  .about-container {
    display: block;
    margin: 20px
  }
  .about-image img {
    width: auto;
    margin: auto;
  }
  .social-desktop { display: none; }
  .nav > a:not(.cta) { display: none; }
  .hamburger { display: block; }

  .mobile-menu {
    position: fixed;
    top: -100vh;
    padding-top: 10vh;
    left: 0;
    width: 100%;
    height: 300vh;
    background: rgba(13, 16, 21, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    font-size: 28px;
    text-decoration: none;
    color: #f1f5f9;
  }

  .social-mobile {
    display: flex;
    gap: 15px;
  }

  .social-mobile .social-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .close-menu {
    position: absolute;
    top: 100vh;
    right: 20px;
    font-size: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: #f1f5f9;
    transition: 0.5s;
  }
  .close-menu:hover {
    color: #0ea5e9;
  }
}
@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) { 
  .blob, 
  .blob * { animation: none !important; } 
}