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

:root {
  --color-primary: #0f172a;
  --color-secondary: #475569;
  --color-accent: #8b5cf6;
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-bg: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-border: #e2e8f0;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-primary);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem;
  transition: all 0.3s;
}

.nav-link-mobile:hover {
  color: var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: 0.5rem;
}

.btn-primary-mobile {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 1.25rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

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

.highlight {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-hero-primary {
  background: var(--color-primary);
  color: white;
}

.btn-hero-primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-border);
}

.btn-hero-secondary:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-secondary);
}

.hero-image-placeholder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.placeholder-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

/* Hero Form Card */
.hero-form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.hero-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-icon {
  font-size: 1.75rem;
}

.hero-form-subtitle {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.hero-form .form-group {
  margin-bottom: 1.25rem;
}

.hero-form .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.label-icon {
  font-size: 1.1rem;
}

.hero-form .form-input,
.hero-form .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.hero-form .form-input:focus,
.hero-form .form-select:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-helper {
  display: block;
  font-size: 0.8rem;
  color: #10b981;
  margin-top: 0.375rem;
}

.btn-hero-form {
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn-hero-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-hero-form:active {
  transform: translateY(0);
}

.btn-hero-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 1.25rem;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-secondary);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.note-icon {
  color: #10b981;
}

@media (max-width: 767px) {
  .hero-form-card {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .hero-form-title {
    font-size: 1.25rem;
  }
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 768px) {
  .benefits {
    padding: 6rem 0;
  }
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--color-secondary);
  max-width: 42rem;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
}

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

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

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: var(--color-secondary);
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
}

@media (min-width: 768px) {
  .pricing {
    padding: 6rem 0;
  }
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.pricing-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.popular {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.pricing-card-inner {
  padding: 2rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.pricing-duration {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-original {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.price-current {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .price-number {
    font-size: 3.5rem;
  }
}

.price-currency {
  font-size: 1.125rem;
  color: var(--color-secondary);
}

.price-save {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #334155;
  font-size: 0.875rem;
}

.check {
  color: var(--color-success);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  background: #f1f5f9;
  color: var(--color-primary);
}

.btn-pricing:hover {
  background: #e2e8f0;
  box-shadow: var(--shadow-xl);
}

.popular-btn {
  background: var(--color-primary);
  color: white;
}

.popular-btn:hover {
  background: #1e293b;
}

/* Premium Lifetime */
.premium-lifetime {
  max-width: 80rem;
  margin: 4rem auto 0;
}

.premium-lifetime-border {
  position: relative;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #8b5cf6 100%);
  border-radius: 1.5rem;
  padding: 1px;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(40px);
  opacity: 0.3;
}

.blob-1 {
  top: 0;
  left: -1rem;
  background: #d8b4fe;
  animation: blob 7s infinite;
}

.blob-2 {
  top: 0;
  right: -1rem;
  background: #93c5fd;
  animation: blob 7s infinite 2s;
}

.blob-3 {
  bottom: -2rem;
  left: 5rem;
  background: #fbcfe8;
  animation: blob 7s infinite 4s;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -50px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(50px, 50px) scale(1.05); }
}

.premium-lifetime-content {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .premium-lifetime-content {
    padding: 2.5rem;
  }
}

.lifetime-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.lifetime-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.lifetime-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .lifetime-price {
    flex-direction: row;
    justify-content: center;
  }
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-main .price-number {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .price-main .price-number {
    font-size: 4rem;
  }
}

.price-main .price-currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.price-save-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.lifetime-description {
  font-size: 1.125rem;
  color: var(--color-secondary);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.lifetime-highlights {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .lifetime-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 2px solid #ddd6fe;
  text-align: center;
  transition: transform 0.3s;
}

.highlight-card:nth-child(2) {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #bbf7d0;
}

.highlight-card:nth-child(3) {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  border-color: #fed7aa;
}

.highlight-card:hover {
  transform: scale(1.05);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.highlight-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--color-secondary);
}

.lifetime-features {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.lifetime-features h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #334155;
}

.feature-item span:first-child {
  color: var(--color-success);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.lifetime-warning {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  border: 2px solid #bfdbfe;
  padding: 1.25rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.lifetime-warning p {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.6;
}

.btn-lifetime {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-2xl);
  border: none;
  cursor: pointer;
}

.btn-lifetime:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.5);
}

.lifetime-trust {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-secondary);
  margin-top: 1rem;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note p {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.note-small {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 768px) {
  .faq {
    padding: 6rem 0;
  }
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: white;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--color-bg-secondary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-secondary);
  line-height: 1.7;
}

.faq-answer ul {
  list-style: disc;
  padding-left: 3rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 6rem 0;
  }
}

.form-wrapper {
  max-width: 42rem;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .form-wrapper {
    padding: 3rem;
  }
}

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

.form-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.form-description {
  color: var(--color-secondary);
  font-size: 1.125rem;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

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

.form-group label {
  font-weight: 600;
  color: var(--color-primary);
}

.required {
  color: var(--color-error);
}

.form-group input,
.form-group select {
  padding: 0.875rem;
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.form-group.error input,
.form-group.error select {
  border-color: var(--color-error);
}

.error-message {
  color: var(--color-error);
  font-size: 0.875rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.btn-submit {
  background: var(--color-primary);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.btn-submit:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-submit:disabled,
.btn-hero-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit .btn-loading,
.btn-hero-form .btn-loading {
  display: none;
}

.btn-submit.loading .btn-text,
.btn-hero-form.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading,
.btn-hero-form.loading .btn-loading {
  display: inline;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-secondary);
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-secondary);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.modal-description {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--color-border);
}

.contact-btn:hover {
  transform: translateX(4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 2rem;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--color-secondary);
}

.contact-value {
  font-weight: 700;
  color: var(--color-primary);
}

.modal-footer {
  text-align: center;
  color: var(--color-secondary);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.modal-message {
  text-align: center;
}

.modal-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.modal-icon.success::before {
  content: '✅';
}

.modal-icon.error::before {
  content: '❌';
}

.btn-modal-ok {
  margin-top: 1.5rem;
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-modal-ok:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Utilities */
.scroll-mt-20 {
  scroll-margin-top: 5rem;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit.loading::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
