/* Custom properties */
:root {
  --color-primary: #1F2937; /* Dark Navy/Gray */
  --color-secondary: #D4AF37; /* Elegant Gold */
  --color-accent: #C5A028;
  --color-bg-light: #F9FAFB;
  --color-bg-dark: #111827;
  --color-text: #374151;
  --color-text-light: #9CA3AF;
  --color-white: #FFFFFF;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Topbar */
.topbar {
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hero__content {
  flex: 1;
  max-width: 600px;
}

.hero__tagline {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-secondary);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__headline {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero__headline em {
  color: var(--color-secondary);
  font-style: normal;
}

.hero__subtext {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #D1D5DB;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 15px;
  text-align: center;
  min-width: 80px;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  display: block;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #D1D5DB;
}

/* Form Card */
.hero__form-wrap {
  flex: 1;
  width: 100%;
  max-width: 450px;
}

.form-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  color: var(--color-text);
}

.form-card__title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.form-card__subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.btn-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
}

.btn-cta:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Bio Section */
.section-bio {
  padding: 80px 0;
  background-color: var(--color-white);
}

.bio__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .bio__inner {
    flex-direction: row;
    gap: 60px;
  }
}

.bio__image-wrap {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.bio__image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.bio__image-decor {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: 12px;
  z-index: -1;
}

.bio__content {
  flex: 1;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  margin-bottom: 30px;
}

.bio__text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.bio__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.bio__tag {
  background: var(--color-bg-light);
  border: 1px solid #E5E7EB;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* Pain Section */
.section-pain {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

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

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

.pain-card {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

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

.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.pain-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.pain-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* Footer */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 40px 20px;
}
