body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0a041c;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #4c2885, #290f59, #0a041c, #040019);
  background-size: 400% 400%;
  z-index: -1;
  animation: gradientAnimation 15s ease infinite;
  opacity: 0.8;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

header {
  background: rgba(44, 62, 80, 0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('wave.svg') repeat-x;
  background-size: auto 120px;
  animation: wave 8s linear infinite;
  opacity: 0.8;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1200px;
  }
}

header h1 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #ddd;
}

header {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 4, 28, 0.95), rgba(168, 108, 217, 0.35));
  backdrop-filter: blur(3px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  transform: translateY(0);
  animation: fadeInUp 1.2s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  text-align: center;
  font-size: 9rem;
  background: linear-gradient(135deg, #fff 30%, #a86cd9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(168, 108, 217, 0.3);
  transform: translateZ(50px);
  transition: transform 0.3s ease;
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero h1:hover {
  transform: translateZ(60px) scale(1.02);
}

.hero p {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0 0 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.95;
}

.hero-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  text-align: center;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
  font-weight: 500;
}

.hero-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.hero-button:hover::before {
  left: 100%;
}

.feature {
  background: rgba(52, 73, 94, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(168, 108, 217, 0.15);
  border-radius: 20px;
  padding: 4rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, transparent, rgba(168, 108, 217, 0.3), transparent);
  z-index: -1;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.feature:hover::before {
  background: linear-gradient(45deg, transparent, rgba(168, 108, 217, 0.6), transparent);
}

.feature h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.feature h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a86cd9, transparent);
}

.feature p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.feature a {
  color: #a86cd9;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.feature a:hover {
  color: #fff;
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1rem 0 2rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  filter: brightness(0.9) contrast(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.feature-image:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(168, 108, 217, 0.4);
}

#og-tech-devs {
  position: relative;
  background: rgba(52, 73, 94, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 10rem 8rem;
  margin: 8rem auto;
  border: 1px solid rgba(168, 108, 217, 0.2);
  transform-style: preserve-3d;
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: calc(100% - 8rem);
  text-align: center;
}

#og-tech-devs::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(168, 108, 217, 0.3), 
    rgba(168, 108, 217, 0.1),
    transparent
  );
  z-index: -1;
  border-radius: 30px;
  transition: all 0.5s ease;
}

#og-tech-devs:hover::before {
  background: linear-gradient(45deg, 
    transparent, 
    rgba(168, 108, 217, 0.6), 
    rgba(168, 108, 217, 0.3),
    transparent
  );
}

#og-tech-devs h2 {
  color: #fff;
  margin-bottom: 5rem;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #fff 30%, #a86cd9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  letter-spacing: -1px;
}

#og-tech-devs h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(168, 108, 217, 0.8), 
    transparent
  );
}

#og-tech-devs p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  letter-spacing: 0.5px;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  letter-spacing: 0.3px;
}

#og-tech-devs p:last-of-type {
  margin-bottom: 4rem;
}

#og-tech-devs a {
  display: inline-block;
  padding: 1.8rem 3.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(168, 108, 217, 0.9), 
    rgba(149, 90, 198, 0.9)
  );
  border: none;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(168, 108, 217, 0.2);
  min-width: 250px;
  text-align: center;
}

#og-tech-devs a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.6s ease;
}

#og-tech-devs a:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 6px 15px rgba(168, 108, 217, 0.3);
  background: linear-gradient(135deg, 
    rgba(168, 108, 217, 1), 
    rgba(149, 90, 198, 1)
  );
}

#og-tech-devs a:hover::before {
  left: 100%;
}

#bbaas-features {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem;
  justify-content: center;
  align-items: center;
  background: rgba(44, 62, 80, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 6rem auto;
  max-width: 1400px;
  width: calc(100% - 6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  gap: 5rem;
}

#bbaas-features:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

#bbaas-features h2,
#api-info h2 {
  color: #fff;
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #fff 30%, #a86cd9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  width: 100%;
}

#bbaas-features h2::after,
#api-info h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(168, 108, 217, 0.8), 
    transparent
  );
}

.feature {
  width: calc(33.333% - 3rem);
  padding: 3.5rem;
  margin: 0;
  background: rgba(52, 73, 94, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 108, 217, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature:hover {
  transform: translateY(-10px) rotateX(10deg);
  box-shadow: 0 15px 35px rgba(168, 108, 217, 0.3);
  border-color: rgba(168, 108, 217, 0.4);
}

.feature h3 {
  position: relative;
  display: inline-block;
  margin: 2rem 0;
  text-align: center;
  width: 100%;
}

.feature h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a86cd9, transparent);
}

.feature p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin: 1rem 0;
  text-align: center;
}

.feature-image {
  margin-bottom: 2rem;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  filter: brightness(0.9) contrast(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.feature-image:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(168, 108, 217, 0.4);
}

#why-choose-bbaas {
  background: rgba(44, 62, 80, 0.25);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 10rem 8rem;
  text-align: center;
  margin: 6rem auto;
  max-width: 1200px;
  width: calc(100% - 6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

#why-choose-bbaas:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

#why-choose-bbaas h2 {
  color: #a86cd9;
  margin-bottom: 40px;
  font-size: 2.75rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.percentages {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 6rem;
  margin: 5rem 0;
}

.percentage-item {
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.circle-wrap {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(168, 108, 217, 0.1), rgba(52, 73, 94, 0.3));
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(168, 108, 217, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s ease;
  margin-bottom: 1rem;
}

.circle-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(168, 108, 217, 0.4);
}

.circle-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #a86cd9, transparent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

.circle-wrap .circle {
  width: 100%;
  height: 100%;
  background: #a86cd9;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.circle-wrap .circle .mask,
.circle-wrap .circle .fill {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #a86cd9;
}

.circle-wrap .circle .mask {
  clip: rect(0px, 150px, 150px, 75px);
}

.circle-wrap .circle .mask.full,
.circle-wrap .circle .fill {
  clip: rect(0px, 75px, 150px, 0px);
}

.circle-wrap .circle .inside-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a041c, #151e27);
  line-height: 120px;
  text-align: center;
  margin-top: 15px;
  margin-left: 15px;
  position: absolute;
  z-index: 100;
  font-weight: bold;
  font-size: 1.5em;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 30px rgba(168, 108, 217, 0.4);
}

#why-choose-bbaas p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
}

#api-info {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem;
  justify-content: space-around;
  background: rgba(44, 62, 80, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  margin: 6rem auto;
  max-width: 1400px;
  width: calc(100% - 6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  gap: 5rem;
}

#api-info:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.api-feature {
  width: calc(33.333% - 3rem);
  margin: 0;
  padding: 4rem;
  background: rgba(52, 73, 94, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(168, 108, 217, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.api-feature:hover {
  transform: translateY(-8px) rotateX(8deg);
  box-shadow: 0 15px 35px rgba(168, 108, 217, 0.3);
}

.api-feature-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  filter: brightness(0.9) contrast(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.api-feature-image:hover {
  filter: brightness(1) contrast(1);
  transform: scale(1.05);
}

#contact-us {
  text-align: center;
  padding: 10rem 8rem;
  background: rgba(44, 62, 80, 0.2);
  backdrop-filter: blur(20px);
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  margin: 6rem auto;
  max-width: 900px;
  width: calc(100% - 6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-us:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

#contact-us h2 {
  margin-bottom: 3rem;
  font-size: 2.75rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#contact-us p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
  letter-spacing: 0.3px;
  max-width: 700px;
  margin: 0 auto 3rem;
}

#contact-us a {
  display: inline-block;
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #a86cd9, #955ac6);
  border: none;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  border-radius: 7px;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  text-align: center;
  padding: 1.5rem 3rem;
  border-radius: 12px;
}

#contact-us a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

#contact-us a:hover::before {
  left: 100%;
}

#contact-us a:hover {
  transform: translateY(-3px);
  background-color: #955ac6;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

footer {
  text-align: center;
  padding: 5rem;
  background: linear-gradient(180deg, 
    rgba(21, 30, 39, 0.97), 
    rgba(10, 4, 28, 0.99)
  );
  color: #fff;
  border-top: 1px solid rgba(168, 108, 217, 0.1);
  position: relative;
  backdrop-filter: blur(10px);
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(168, 108, 217, 0.5), 
    transparent
  );
}

footer a {
  color: #a86cd9;
  text-decoration: none;
  margin: 0;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #a86cd9;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

footer a:hover {
  color: #fff;
}

footer p {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .feature,
  .api-feature {
    width: calc(50% - 3rem);
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem;
  }
  
  #og-tech-devs,
  #bbaas-features,
  #why-choose-bbaas,
  #api-info,
  #contact-us {
    width: calc(100% - 3rem);
    padding: 4rem 2rem;
    margin: 3rem auto;
  }
  
  .feature,
  .api-feature {
    width: 100%;
  }
  
  .percentages {
    gap: 3rem;
  }
  
  footer p {
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  #og-tech-devs,
  #bbaas-features,
  #why-choose-bbaas,
  #api-info,
  #contact-us {
    padding: 3rem 1.5rem;
  }
  
  .percentages {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  #bbaas-features h2,
  #api-info h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  #bbaas-features h2,
  #api-info h2 {
    font-size: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.feature p,
.api-feature p,
#og-tech-devs p,
#why-choose-bbaas p,
#contact-us p {
  line-height: 1.8;
  letter-spacing: 0.3px;
}

#og-tech-devs,
#why-choose-bbaas,
#contact-us {
  max-width: 1200px;
}

#bbaas-features,
#api-info {
  max-width: 1400px;
}

a:focus,
button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 108, 217, 0.5);
}

p {
  color: rgba(255, 255, 255, 0.9);
}

#og-tech-devs,
#bbaas-features,
#why-choose-bbaas,
#api-info,
#contact-us {
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature,
.api-feature,
.feature-image,
.api-feature-image,
.hero-button,
#og-tech-devs a,
#contact-us a {
  border-radius: 12px;
}

@media (max-width: 768px) {
  #og-tech-devs {
    padding: 6rem 3rem;
    width: calc(100% - 4rem);
    margin: 4rem auto;
  }
  
  #og-tech-devs h2 {
    font-size: 2.8rem;
  }
  
  #og-tech-devs p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  #og-tech-devs {
    padding: 4rem 2rem;
    width: calc(100% - 3rem);
    margin: 3rem auto;
  }
  
  #og-tech-devs h2 {
    font-size: 2.4rem;
  }
  
  #og-tech-devs p {
    font-size: 1.1rem;
  }
  
  #og-tech-devs a {
    padding: 1.5rem 2.5rem;
    min-width: 200px;
  }
}

#our-vision {
  position: relative;
  background: rgba(52, 73, 94, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 8rem;
  margin: 8rem auto;
  border: 1px solid rgba(168, 108, 217, 0.2);
  transform-style: preserve-3d;
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: calc(100% - 8rem);
  text-align: center;
}

#our-vision::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(168, 108, 217, 0.3), 
    rgba(168, 108, 217, 0.1),
    transparent
  );
  z-index: -1;
  border-radius: 30px;
  transition: all 0.5s ease;
}

#our-vision:hover::before {
  background: linear-gradient(45deg, 
    transparent, 
    rgba(168, 108, 217, 0.6), 
    rgba(168, 108, 217, 0.3),
    transparent
  );
}

#our-vision h2 {
  color: #fff;
  margin-bottom: 4rem;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #fff 30%, #a86cd9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

#our-vision h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(168, 108, 217, 0.8), 
    transparent
  );
}

.vision-pillars {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 4rem;
}

.vision-pillar {
  flex: 1;
  padding: 3rem;
  background: rgba(52, 73, 94, 0.12);
  border-radius: 15px;
  border: 1px solid rgba(168, 108, 217, 0.1);
  transition: all 0.3s ease;
}

.vision-pillar:hover {
  transform: translateY(-10px);
  background: rgba(52, 73, 94, 0.25);
  border-color: rgba(168, 108, 217, 0.3);
}

.vision-pillar h3 {
  font-size: 1.8rem;
  color: #a86cd9;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: -0.5px;
}

.vision-pillar h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a86cd9, transparent);
}

.vision-pillar p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

@media (max-width: 1200px) {
  #our-vision {
    padding: 6rem 4rem;
    width: calc(100% - 6rem);
  }
  
  .vision-pillars {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  #our-vision {
    padding: 4rem 2rem;
    width: calc(100% - 3rem);
  }
  
  #our-vision h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  #our-vision h2 {
    font-size: 2.4rem;
  }
  
  .vision-pillar h3 {
    font-size: 1.6rem;
  }
}

* {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(168, 108, 217, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 108, 217, 0.5);
}

::selection {
  background: rgba(168, 108, 217, 0.3);
  color: #fff;
}