/* Deep navy oklch(0.15 0.05 260) with frosted glass cards and vibrant cyan gradients */
:root {
  --navy: oklch(0.15 0.05 260);
  --cyan: #00f0ff;
  --cyan-bright: #70ffff;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Geist', 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Base styles for Glassmorphism */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.cyan-gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.button {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

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

header {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-primary);
}

.hero {
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.hero-images img {
  width: calc(33.333% - 1.33rem);
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

/* Features */
.features {
  padding: 6rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  text-align: center;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
  color: var(--text-primary);
}

/* FAQ */
.faq {
  padding: 6rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--cyan);
}

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

/* Form */
.contact {
  padding: 6rem 0;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

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

input, textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-images {
    flex-direction: column;
  }
  .hero-images img {
    width: 100%;
    height: 300px;
  }
}
