/* ========================================
   CSS Variables & Color Palette
   ======================================== */
:root {
  --primary-teal: #2D6A6A;
  --primary-teal-light: #3D7A7A;
  --accent-gold: #D4A574;
  --accent-gold-hover: #C49564;
  --background-cream: #FAF8F5;
  --background-white: #FFFFFF;
  --text-dark: #2D3748;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;
  --icon-bg: #E8F4F4;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ========================================
   Container
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
  background-color: var(--background-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.8;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-teal);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-teal);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-teal);
}

.btn-signup {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-signup:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: var(--text-dark);
  padding: 8px;
}

.mobile-toggle i {
  width: 24px;
  height: 24px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: linear-gradient(135deg, #1D4A4A 0%, #3D7A7A 50%, #4A8A8A 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background-color: var(--background-white);
  color: var(--primary-teal);
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Section Styles
   ======================================== */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 60px;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
  padding: 100px 24px;
  background-color: var(--background-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.step-icon i {
  width: 36px;
  height: 36px;
  color: var(--text-light);
}

.step-icon svg {
  stroke: var(--text-light);
  color: var(--text-light);
}

.step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   Key Areas Section
   ======================================== */
.key-areas {
  padding: 100px 24px;
  background-color: var(--background-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.area-card {
  background-color: var(--background-white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.area-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background-color: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon i {
  width: 32px;
  height: 32px;
  color: var(--primary-teal);
}

.area-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.area-description {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   Testimonial Section
   ======================================== */
.testimonial {
  padding: 100px 24px;
  background-color: var(--background-cream);
  position: relative;
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  color: var(--primary-teal);
  opacity: 0.3;
}

.quote-icon i {
  width: 50px;
  height: 50px;
}

.testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

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

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.stars {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.star-filled {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.trust-badge {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.badge-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--primary-teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.badge-circle i {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.badge-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.badge-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--background-white);
  border-top: 1px solid #E5E7EB;
  padding: 60px 24px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.footer-column {
  text-align: left;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(45, 106, 106, 0.1);
}

.newsletter-button {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.newsletter-button:hover {
  background-color: var(--accent-gold-hover);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #E5E7EB;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
  padding: 100px 24px;
  background-color: var(--background-white);
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-weight: 500;
}

.pricing-card {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--background-white);
  border: 2px solid var(--primary-teal);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.pricing-price {
  margin: 20px 0;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-teal);
}

.pricing-features {
  margin-bottom: 35px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.features-list li i {
  width: 24px;
  height: 24px;
  color: var(--primary-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-pricing {
  width: 100%;
  background-color: var(--accent-gold);
  color: var(--text-dark);
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 35px;
}

.btn-pricing:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing-addons {
  border-top: 1px solid #E5E7EB;
  padding-top: 30px;
}

.addons-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addons-list li {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
}

.addons-list strong {
  color: var(--primary-teal);
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.trust-item i {
  width: 24px;
  height: 24px;
  color: var(--primary-teal);
  flex-shrink: 0;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  padding: 100px 24px;
  background-color: var(--background-cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .steps-grid,
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .area-card {
    padding: 32px 24px;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  /* Header Mobile */
  .nav-container {
    padding: 12px 0;
  }

  .logo-image {
    height: 32px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: var(--shadow-md);
    padding: 24px;
  }

  .main-nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .btn-signup {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Hero Mobile */
  .hero {
    min-height: 500px;
    padding: 60px 24px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-cta {
    padding: 14px 32px;
    font-size: 1rem;
  }

  /* Sections Mobile */
  .how-it-works,
  .key-areas,
  .testimonial,
  .pricing,
  .faq {
    padding: 60px 24px;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .steps-grid,
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .area-card {
    padding: 32px 24px;
  }

  /* Testimonial Mobile */
  .testimonial-quote {
    font-size: 1.1rem;
  }

  .badge-circle {
    width: 120px;
    height: 120px;
  }

  /* Pricing Mobile */
  .pricing-card {
    padding: 40px 24px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  /* FAQ Mobile */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-item {
    padding: 24px;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-button {
    width: 100%;
  }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 479px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .step-title,
  .area-title {
    font-size: 1.2rem;
  }
}
