:root {
  --primary-bg: #FFFFFF;
  --secondary-bg: #FCFCFC; /* Very soft off-white for section contrast */
  --text-main: #111111; /* Deep charcoal/black */
  --text-muted: #555555; /* Sophisticated gray */
  --accent-1: #2563EB; /* Deep modern blue */
  --accent-2: #7C3AED; /* Deep purple */
  --accent-gradient: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  --border-light: #E5E7EB;
  
  --card-bg: #FFFFFF;
  --card-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Outfit', var(--font-main);
  
  /* Missing Variables for new sections */
  --purple-glow: rgba(124, 58, 237, 0.3);
  --blue-glow: rgba(37, 99, 235, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary-bg);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display-text {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em; /* Tight, expensive typography tracking */
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 1rem; font-weight: 600; }

p { margin-bottom: 1.25rem; font-size: 1.125rem; color: var(--text-muted); font-weight: 400;}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1400px; /* Slightly wider for modern monitors */
  margin: 0 auto;
  padding: 0 6%;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowPan {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-up {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  border-radius: 4px; /* Sharp, modern corners instead of pills */
  font-weight: 500;
  font-family: var(--font-main);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--text-main);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: var(--accent-1);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.premium-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px; /* Subtle rounding */
  padding: 3rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.1);
}


/* Navigation - Modern Glassmorphism */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 1000;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease, padding 0.5s ease;
  background: rgba(255, 255, 255, 0.02); /* Almost transparent by default */
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Subpages usually have a light background, so the header should be visible immediately */
body.subpage header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF; /* Default for hero */
  transition: color 0.4s ease;
}

header.scrolled .logo-text,
body.subpage header .logo-text {
  color: var(--text-main);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8); /* Default for hero */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

header.scrolled .nav-links a,
body.subpage header .nav-links a {
  color: var(--text-muted);
}

header.scrolled .nav-links a:hover,
body.subpage header .nav-links a:hover {
  color: var(--text-main);
}

header .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

header.scrolled .btn-secondary,
body.subpage header .btn-secondary {
  border-color: var(--text-main);
  color: var(--text-main);
}

/* Sections */
section {
  padding: 10rem 0; /* More expensive whitespace */
  position: relative;
}

/* Hero Centered (Redesign) */
.hero-centered {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #050505;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-centered-content {
    max-width: 900px;
    z-index: 10;
}

.hero-centered h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.typewriter-container {
  display: inline-block;
  min-height: 1.2em; /* Ensure the line doesn't jump if height varies */
  vertical-align: bottom;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--accent-1);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  font-weight: 300;
}

@keyframes blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

.hero-input-area {
    margin-top: 2rem;
}

.input-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-input-group {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 100px;
    display: flex;
    gap: 10px;
    max-width: 580px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-input-group:focus-within {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.hero-input-group input {
    background: transparent;
    border: none;
    padding: 15px 30px;
    color: #FFFFFF;
    flex: 1;
    font-size: 1.1rem;
    outline: none;
}

.hero-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero-input-group .btn-primary {
    border-radius: 100px;
    padding: 12px 35px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sparkle-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .hero-input-group {
        flex-direction: column;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        padding: 15px;
    }
    .hero-input-group .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }
}


/* Problem Section */
.problem {
  background: var(--primary-bg);
  border-bottom: 1px solid var(--border-light);
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6rem;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
}

.stat-card {
  padding-right: 2rem;
  border-right: 1px solid var(--border-light);
}
.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 4.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -2px;
}

/* Services Section */
.services {
  background: var(--secondary-bg);
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.premium-card h3 {
  color: var(--text-main);
  font-size: 1.35rem;
}

.service-icon {
  margin-bottom: 1.5rem;
  color: var(--text-main);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.services-visual {
  position: sticky;
  top: 8rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
}
.services-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Local Focus Section */
.local-focus {
  background: var(--primary-bg);
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.local-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.map-visual {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
}

.map-visual img {
  width: 100%;
  height: auto;
  display: block;
}

ul.bullet-list {
  list-style: none;
  margin-top: 2.5rem;
}
ul.bullet-list li {
  margin-bottom: 1.2rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  font-size: 1.1rem;
  font-weight: 500;
}
ul.bullet-list li span {
  color: var(--accent-1);
  margin-right: 15px;
  font-weight: bold;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 8rem 0;
  background: var(--text-main);
  color: white;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  color: #A1A1AA;
}

.report-form {
  display: flex;
  gap: 1rem;
  max-width: 650px;
  margin: 4rem auto 0;
}

.report-form input {
  flex: 1;
  padding: 1.25rem 2rem;
  border-radius: 4px;
  border: none;
  background: #FFFFFF;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 1.1rem;
  outline: none;
}

.report-form .btn-primary {
  background: var(--accent-1);
  color: white;
  white-space: nowrap;
}
.report-form .btn-primary:hover {
  background: #1D4ED8;
}

/* Footer */
footer {
  padding: 4rem 0;
  background: var(--primary-bg);
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.copyright {
  text-align: left;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero-layout, .services-layout, .local-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .services-visual {
    position: static;
    order: -1;
  }
  .map-visual {
    order: -1;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stat-card {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2rem;
  }
  .stat-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-btns { flex-direction: column; }
  .nav-links { display: none; }
  .report-form { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
}


/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--secondary-bg);
    content-visibility: auto;
    contain-intrinsic-size: 0 1200px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: var(--text-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.faq-item.active {
    border-color: var(--text-main);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    padding-right: 40px;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--accent-1);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--text-main);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(0, 0, 0, 0.01);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Large enough to fit any answer */
    padding: 0 40px 40px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Vibrant Glow CTA */
.cta-vibrant {
    background: #050505;
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
}

.glow-purple {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    opacity: 0.8;
    filter: blur(80px);
    pointer-events: none;
}

.glow-blue {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    opacity: 0.8;
    filter: blur(80px);
    pointer-events: none;
}

.cta-vibrant h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 30px;
    line-height: 1.1;
    color: #FFFFFF;
}

.cta-vibrant p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 50px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Comparison Section */
.comparison {
    background: #FAFAFA;
    border-bottom: 1px solid var(--border-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-panel {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.ai-panel {
    border-color: var(--accent-2);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.panel-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.ai-panel .panel-tag {
    color: var(--accent-2);
}

.google-view, .ai-view {
    border: 1px solid #F3F4F6;
    border-radius: 8px;
    padding: 20px;
    background: #F9FAFB;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.ai-view {
    background: #FFFFFF;
    border-color: #EDE9FE;
}

.g-search-bar {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: #374151;
}

.g-result {
    margin-bottom: 16px;
}

.ad-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #111;
    border: 1px solid #111;
    display: inline-block;
    padding: 0 4px;
    margin-bottom: 4px;
}

.g-title {
    color: #1A0DAB;
    font-size: 1rem;
    margin-bottom: 2px;
}

.g-url {
    color: #006621;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.g-desc {
    font-size: 0.85rem;
    color: #4B5563;
    line-height: 1.4;
}

.g-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, #F9FAFB, transparent);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-2);
}

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

.ai-query {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.ai-response {
    background: #F5F3FF;
    border-radius: 12px;
    padding: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
}

.ai-response strong {
    color: var(--text-main);
}

.ai-citations {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.citation {
    width: 16px;
    height: 16px;
    background: #DDD6FE;
    color: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-weight: 700;
}

.panel-caption {
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.comparison-cta {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-card {
        padding: 30px;
    }
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-btns {
        flex-direction: column;
    }
}
/* Report Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(80px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #0A0A0A;
    width: 90%;
    max-width: 550px;
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

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

.modal-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.report-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.1rem 1.4rem;
    border-radius: 12px;
    color: white;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.modal-btn-primary {
    background: #7C3AED;
    color: white;
    font-weight: 600;
    padding: 1.2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.modal-btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.modal-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.modal-glow-purple {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}
