/* CSS Variables - Modern Light/Glass Theme */
:root {
  --background: 210 40% 98%;
  --foreground: 222 47% 11%;
  --primary: 221 83% 53%;
  --primary-glow: 221 83% 63%;
  --accent: 346 77% 49%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 25% 27%;
  --border: 214 32% 91%;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.8);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* New Bangla Font Stack */
body {
  font-family: 'Tiro Bangla', 'Kalpurush', 'Noto Sans Bengali', 'Hind Siliguri', sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 100%);
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* For English text and special elements */
h1, h2, h3, h4, .hero-title, .section-title, .cta-title {
  font-family: 'Space Grotesk', sans-serif;
}

/* For Bangla text with better readability */
.bangla-text {
  font-family: 'Tiro Bangla', 'Kalpurush', serif;
  font-weight: 400;
  line-height: 1.8;
}

/* Special class for important Bangla text */
.important-bangla {
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary {
  color: hsl(var(--primary));
}

.text-accent {
  color: hsl(var(--accent));
  font-weight: bold;
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Enhanced Glass Card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

/* Glow Effect */
.glow-box {
  position: relative;
  overflow: hidden;
}

.glow-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  animation: rotateGlow 20s linear infinite;
  z-index: -1;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-cta::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: left 0.6s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 15px 40px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: hsl(var(--foreground));
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { 
    box-shadow: 
      0 0 40px rgba(59, 130, 246, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
  50% { 
    box-shadow: 
      0 0 60px rgba(59, 130, 246, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 50%, #eff6ff 100%);
}

.bg-gradient-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.bg-gradient-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at bottom right, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
  z-index: 0;
}

.orb-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
}

.orb-2 {
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.2), rgba(249, 115, 22, 0.2));
  animation-delay: -4s;
  animation-duration: 16s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.badge .icon {
  color: hsl(var(--accent));
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  border-radius: 16px;
}

.phone-number {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.03));
}

.bg-gradient-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 10;
}

.benefit-item {
  padding: 1.5rem;
  cursor: default;
  border-radius: 20px;
}

.benefit-item:hover {
  transform: translateY(-8px);
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item p {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
}

.important-notes {
  margin-top: 4rem;
  padding: 2rem;
  border: 2px solid rgba(225, 29, 72, 0.2);
  border-radius: 20px;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 226, 226, 0.3));
}

.important-notes h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

.important-notes ul {
  list-style: none;
}

.important-notes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.important-notes .bullet {
  color: hsl(var(--accent));
  font-size: 1.125rem;
}

.important-notes li span {
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
  font-weight: 500;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.03), transparent);
}

.bg-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: radial-gradient(ellipse at bottom, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.pricing-block {
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pricing-card {
  padding: 2rem;
  border-radius: 24px;
}

.zone-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
}

.pricing-table th {
  padding: 1rem 0.5rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
  border-bottom: 2px solid rgba(59, 130, 246, 0.1);
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
}

.pricing-table td {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.05);
  font-weight: 600;
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
}

/* Bandwidth List */
.bandwidth-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bandwidth-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bandwidth-item:hover {
  background: rgba(59, 130, 246, 0.08);
  transform: translateX(5px);
}

.bw-name {
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
}

.bw-name .note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.25rem;
}

.bw-price {
  color: hsl(var(--accent));
  font-weight: 700;
  font-size: 0.875rem;
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #eff6ff 100%);
}

.cta-section .container {
  max-width: 56rem;
}

.cta-card {
  padding: 3rem 2rem;
  text-align: center;
  animation: pulseGlow 4s ease-in-out infinite;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(225, 29, 72, 0.15));
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.cta-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--primary));
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cta-phone {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-size: 1rem;
}

.cta-phone .text-primary {
  font-weight: 700;
}

.partner-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  font-family: 'Kalpurush', 'Tiro Bangla', serif;
}

.partner-message svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

/* Copy Protection Styles */
.copy-alert {
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.no-select {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* Allow selection for specific elements */
.btn-cta, .btn-secondary, .phone-number, .cta-phone {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (min-width: 640px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .feature-highlights {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .pricing-table {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zone-title {
    font-size: 1rem;
  }

  .cta-card {
    padding: 4rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .benefit-item {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title {
    font-size: 6rem;
  }

  .container {
    padding: 0 2rem;
  }

  .feature-item {
    padding: 1.25rem 2rem;
  }

  .pricing-card {
    padding: 2.5rem;
  }
}
/* ========== GOOGLE FORM SECTION ========== */
.form-section {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03), rgba(66, 133, 244, 0.03));
}

.bg-gradient-form {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(66, 133, 244, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.form-card {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  border: 2px solid rgba(66, 133, 244, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 239, 241, 0.3));
}

.form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(76, 175, 80, 0.15));
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.form-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #4285f4;
}

.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a73e8;
}

.form-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.btn-google-form {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
  margin-bottom: 2.5rem;
}

.btn-google-form:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

.google-form-icon {
  width: 24px;
  height: 24px;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(66, 133, 244, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: #34a853;
}

.form-note {
  margin-top: 3rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.form-note svg {
  width: 20px;
  height: 20px;
  color: #fbbc05;
  flex-shrink: 0;
}

/* Alternative Design Styles */
.form-main-card {
  padding: 2.5rem;
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-icon-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
  margin-bottom: 1.5rem;
}

.form-icon-big svg {
  width: 3rem;
  height: 3rem;
  color: #34a853;
}

.form-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-main-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-form-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.btn-form-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4);
}

.btn-form-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(66, 133, 244, 0.2);
  color: #4285f4;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-form-secondary:hover {
  background: rgba(66, 133, 244, 0.05);
  transform: translateY(-2px);
}

.google-icon {
  width: 20px;
  height: 20px;
}

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

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(66, 133, 244, 0.05);
  transform: translateX(5px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1a73e8;
}

.step-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Simple Form Section CSS */
.simple-form-section {
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
}

.simple-form-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid rgba(66, 133, 244, 0.1);
}

.simple-form-header {
  margin-bottom: 2rem;
}

.simple-form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  margin-bottom: 1rem;
}

.simple-form-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.simple-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 0.5rem;
}

.simple-form-desc {
  color: #5f6368;
  line-height: 1.6;
  font-size: 1rem;
}

.simple-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.simple-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.simple-form-button svg {
  width: 20px;
  height: 20px;
}

.simple-form-info {
  text-align: left;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #34a853;
}

.simple-form-info p {
  margin-bottom: 0.5rem;
  color: #5f6368;
  font-size: 0.875rem;
}

.simple-form-info p:last-child {
  margin-bottom: 0;
}

/* Responsive Design for Form Section */
@media (min-width: 640px) {
  .form-features {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  
  .form-actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .form-steps {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .step {
    flex: 1;
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .form-title {
    font-size: 2rem;
  }
  
  .form-main-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .form-card {
    padding: 4rem;
  }
  
  .form-main-card {
    padding: 3.5rem;
  }
}
/* Enhanced focus states */
:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
  border-radius: 4px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, hsl(var(--primary-glow)), hsl(var(--primary)));
}