body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e0e7ff 60%, #f3e7ff 100%);
  min-height: 100vh;
}

.navbar {
  background: linear-gradient(90deg, #fff 60%, #e0e7ff 100%) !important;
  border-bottom: 2px solid #e0e7ff;
  box-shadow: 0 2px 12px 0 rgba(0, 85, 255, 0.04);
}

.navbar-brand {
  background: linear-gradient(90deg, #1c00ff 0%, #6f6afb 40%, #d83548 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero {
  background: none;
  color: #222;
  padding: 5rem 0 3rem 0;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-shape1,
.hero-bg-shape2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.18;
}

.hero-bg-shape1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, #6a82fb 0%, #d335d8 80%, transparent 100%);
}

.hero-bg-shape2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, #ffb6ea 0%, #6a82fb 80%, transparent 100%);
}

.hero-glass {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  border-radius: 2rem;
  padding: 3rem 2rem 2.5rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.hero h1,
.hero h6 {
  background: none;
  color: #222;
}

/* Gradient heading utility for cross-browser */
.gradient-heading {
  background: linear-gradient(90deg, #0055ff 0%, #6a82fb 40%, #d335d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn-primary,
.btn-success {
  background: linear-gradient(90deg, #0055ff 0%, #6a82fb 50%, #d335d8 100%);
  border: none;
  box-shadow: 0 2px 8px 0 rgba(211, 53, 216, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-success:hover {
  background: linear-gradient(90deg, #d335d8 0%, #6a82fb 50%, #0055ff 100%);
  box-shadow: 0 4px 16px 0 rgba(211, 53, 216, 0.18);
}

.btn-outline-primary {
  border: 2px solid #6a82fb;
  color: #0055ff;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-primary:hover {
  background: linear-gradient(90deg, #0055ff 0%, #d335d8 100%);
  color: #fff;
  border-color: #d335d8;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 2.5rem;
  color: #6a82fb;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 1.5px 8px 0 rgba(211, 53, 216, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 15px;
  width: 30px;
  height: 18px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(1px);
}

.feature-icon:hover {
  transform: translateY(-8px) scale(1.08) rotate(-2deg);
  box-shadow: 0 16px 32px 0 rgba(31, 38, 135, 0.22), 0 4px 24px 0 rgba(211, 53, 216, 0.18);
  background: rgba(255, 255, 255, 0.32);
  color: #d335d8;
  cursor: pointer;
}

section {
  margin-bottom: 2rem;
}

.ratio iframe {
  /* border: 3px solid #d335d8; */
  box-shadow: 0 2px 16px rgba(0, 85, 255, 0.08);
}

footer {
  background: linear-gradient(90deg, #e0e7ff 0%, #fff 60%, #f3e7ff 100%);
  color: black;
  padding: 2rem 0 1rem 0;
  border-radius: 2rem 2rem 0 0;
  margin-top: 2rem;
  box-shadow: 0 -2px 12px 0 rgba(0, 85, 255, 0.04);
}

.form-control:focus {
  border-color: #d335d8;
  box-shadow: 0 0 0 0.2rem rgba(211, 53, 216, 0.15);
}

.faq-question {
  font-weight: 600;
  color: #4f545f;
}

.faq-answer {
  color: #333;
  font-weight: 400;
}

.lead {
  font-size: 1.09rem;
}