:root {
  --primary: #9F1239;
  --primary-dark: #881337;
  --brand-pink: #FF1857;
  --soft-pink: #FFF1F2;
  --bg-gradient: linear-gradient(135deg, #FFF1F2 0%, #FFFFFF 50%, #FFF5F7 100%);
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --border-light: #F3F4F6;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(255, 24, 87, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  padding: 16px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
}

.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}


.brand-text small {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}

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

.nav-btn {
  background: var(--brand-pink);
  color: #FFFFFF !important;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 24, 87, 0.25);
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  background: var(--bg-gradient);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--soft-pink);
  color: var(--brand-pink);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-pink), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.app-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}

.app-store-btn.disabled {
  opacity: 0.9;
  cursor: default;
}

.btn-txt span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #9CA3AF;
}

.btn-txt strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.pill {
  background: var(--brand-pink);
  color: #FFFFFF;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.stat h3 {
  font-size: 28px;
  color: var(--primary);
}

.stat p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #E5E7EB;
}

/* Hero Brand Illustration */
.hero-brand-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-glow-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 24, 87, 0.12) 0%, rgba(255, 24, 87, 0.02) 70%, transparent 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 24, 87, 0.2);
  box-shadow: 0 20px 40px rgba(255, 24, 87, 0.15);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.hero-brand-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.98);
    box-shadow: 0 15px 30px rgba(255, 24, 87, 0.1);
  }
  100% {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 24, 87, 0.25);
  }
}


/* Features */
.features {
  padding: 100px 0;
  background: #FFFFFF;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 32px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--soft-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Services */
.services {
  padding: 100px 0;
  background: #FAFAFA;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-grid.two-packages {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}


.service-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  position: relative;
}

.service-card.featured {
  border: 2px solid var(--brand-pink);
  box-shadow: var(--shadow-lg);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 1px;
}

.card-badge.gold {
  background: linear-gradient(135deg, #D97706, #B45309);
}

.service-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-pink);
  margin-bottom: 24px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-item h4 {
  font-size: 16px;
  color: var(--primary);
}

.info-item p {
  font-size: 14px;
  margin: 0;
}

.contact-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #FAFAFA;
  font-family: inherit;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  background: var(--brand-pink);
  color: #FFFFFF;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

/* Footer */
.footer {
  background: #111827;
  color: #FFFFFF;
  padding: 80px 0 40px;
}

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

.footer-brand .brand-text {
  color: #FFFFFF;
}

.footer-brand p {
  color: #9CA3AF;
  font-size: 14px;
  margin-top: 16px;
  max-width: 400px;
}

.copyright {
  margin-top: 24px;
  font-size: 12px;
  color: #6B7280 !important;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--brand-pink);
}

/* Legal Document Styles */
.policy-page {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 8px;
}

.policy-page .date {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.policy-page h2 {
  font-size: 22px;
  color: var(--primary);
  margin: 28px 0 12px;
}

.policy-page p, .policy-page ul {
  color: var(--text-main);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.policy-page ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .hero-grid, .features-grid, .services-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
