/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700&display=swap');

/* Base Styles */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --primary-light: #7dd3fc;
  --secondary: #ec4899;
  --secondary-dark: #be185d;
  --secondary-light: #f9a8d4;
  --tech: #06b6d4;
  --tech-dark: #0e7490;
  --tech-light: #67e8f9;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-light: #f8fafc;
  --gray: #94a3b8;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--dark);
  color: var(--gray-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-white {
  color: white;
}

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

.text-secondary {
  color: var(--secondary);
}

.text-tech {
  color: var(--tech);
}

.text-gray {
  color: var(--gray);
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.w-full {
  width: 100%;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Tech-forward Styles */
.tech-gradient {
  background: linear-gradient(135deg, var(--primary), var(--tech), var(--primary-dark));
}

.glow-effect {
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.neon-text {
  text-shadow: 0 0 5px rgba(125, 211, 252, 0.7);
}

.tech-border {
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.tech-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.3);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
  }
}

.pulse-animation {
  animation: pulse-glow 2s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 3rem;
  margin-right: 1rem;
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 1.5rem;
  color: var(--gray-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--tech-light);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--tech));
  color: white;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  opacity: 0.9;
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
}

.hero-bg-circle-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(125, 211, 252, 0.2);
  border-radius: 50%;
  filter: blur(3rem);
}

.hero-bg-circle-2 {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(236, 72, 153, 0.2);
  border-radius: 50%;
  filter: blur(3rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.hero-image {
  position: relative;
  max-width: 100%;
  margin-top: 2rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.hero-image-caption {
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--tech-light);
  font-family: 'Orbitron', sans-serif;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: rgba(15, 23, 42, 0.5);
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.benefit-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.benefit-icon {
  color: var(--tech-light);
  margin-right: 0.75rem;
}

.benefit-title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--gray);
  margin-left: 2.25rem;
}

/* Form Section */
.form-section {
  padding: 5rem 0;
}

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

.form-container {
  max-width: 48rem;
  margin: 0 auto;
}

.form-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 0.5rem;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--dark);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 0.25rem;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--tech-light);
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.toggle-buttons {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.toggle-button {
  padding: 0.5rem 1rem;
  background-color: var(--dark);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 0.25rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle-button.active {
  background-color: var(--tech-light);
  color: var(--dark);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--tech));
  color: white;
  font-weight: 500;
  font-size: 1.125rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
}

.submit-button:hover {
  opacity: 0.9;
}

.form-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(6, 182, 212, 0.3);
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 4rem;
  margin-right: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--tech-light);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Media Queries */
@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-text {
    text-align: left;
    flex: 1;
    margin-right: 2rem;
    margin-bottom: 0;
  }
  
  .hero-image {
    flex: 1;
    margin-top: 0;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-logo {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
