@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

/* Tailwind-like utilities and brand colors */
:root {
  --color-pink-bright: #EB3C94;
  --color-pink-vibrant: #EA0A8C;
  --color-magenta: #922476;
  --color-indigo: #412E80;
  --color-blue-dark: #2C3B81;
  --color-blue-darker: #2E3288;
  --color-black: #000000;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: #000000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

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

.logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #412E80 0%, #EA0A8C 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  margin-left: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  text-decoration: none;
}

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

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-pink-vibrant);
}

.nav-cta {
  background: var(--color-pink-vibrant);
  color: white;
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--color-pink-bright);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: block;
  padding: 8px;
  border-radius: 6px;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
  flex-direction: column;
  gap: 1rem;
}

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

.mobile-menu a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--color-pink-vibrant);
}

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

/* Hero Section */
.hero {
  padding-top: 128px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #2C3B81 0%, #412E80 50%, #922476 100%);
  color: white;
}

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

.hero-content {
  max-width: 1024px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 12px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, #412E80 0%, #EA0A8C 100%);
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-secondary {
  background: var(--color-blue-dark);
  color: white;
}

.btn-secondary:hover {
  background: var(--color-indigo);
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-blue-dark);
  color: var(--color-blue-dark);
}

.btn-outline:hover {
  background: var(--color-blue-dark);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-white {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-white:hover {
  background: white;
  color: var(--color-blue-dark);
}

/* Sections */
.section {
  padding: 80px 1rem;
}

.section-white {
  background: white;
}

.section-gray {
  background: #f9fafb;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

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

/* Cards */
.card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s;
  border-top: 4px solid var(--color-pink-vibrant);
}

.card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-1 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
  align-items: stretch;
}

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

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

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

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

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

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

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

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

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

.font-semibold {
  font-weight: 600;
}

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

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

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

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

/* Colors */
.text-blue-dark {
  color: var(--color-blue-dark);
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-white {
  color: white;
}

.bg-white {
  background: white;
}

.bg-gray-50 {
  background: #f9fafb;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-pink-vibrant);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--color-blue-dark);
  color: white;
  padding: 48px 1rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Utilities */
.flex {
  display: flex;
}

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

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

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

.gap-4 {
  gap: 1rem;
}

.w-full {
  width: 100%;
}

.max-w-4xl {
  max-width: 896px;
}

.max-w-7xl {
  max-width: 1280px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-xl {
  border-radius: 12px;
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 2px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--color-pink-vibrant);
  border-width: 3px;
  box-shadow: 0 8px 12px rgba(234, 10, 140, 0.2);
  padding-top: 48px;
}

.pricing-card.popular .pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-pink-vibrant);
  color: white;
  padding: 6px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 10;
}

.pricing-badge {
  display: none;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #374151;
  font-size: 0.875rem;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-pink-vibrant);
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Table */
.table-container {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid #d1d5db;
  padding: 16px 24px;
  text-align: left;
}

.table th {
  background: #f9fafb;
  font-weight: 600;
  color: var(--color-blue-dark);
}

.table tbody tr:nth-child(even) {
  background: #f9fafb;
}

/* Icon Box */
.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #412E80 0%, #EA0A8C 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

/* Gradient Background */
.bg-gradient-hero {
  background: linear-gradient(135deg, #2C3B81 0%, #412E80 50%, #922476 100%);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.125rem;
  }
  .section {
    padding: 48px 1rem;
  }
  .pricing-card {
    padding: 24px;
  }
  .pricing-card.popular {
    padding-top: 40px;
  }
}

