/* === 0031 - Amber Warm Brand Style === */
:root {
  --primary: #D97706;
  --primary-dark: #B45309;
  --primary-light: #F59E0B;
  --primary-bg: rgba(217, 119, 6, 0.08);
  --primary-border: rgba(217, 119, 6, 0.25);
  --gradient-start: #F59E0B;
  --gradient-end: #D97706;
  --text-dark: #1a1a2e;
  --text-gray: #6b7280;
  --bg-warm: #FFFBF0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text-dark); background: #FFFBEB; line-height: 1.6; overflow-x: hidden; }

/* === Navbar Glassmorphism === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  padding: 0 2rem; height: 72px; display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: 0 4px 30px rgba(217, 119, 6, 0.08); }
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo i { color: var(--primary); font-size: 1.75rem; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); color: #fff !important; padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 600; box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3); transition: all 0.3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4); }
.nav-cta::after { display: none; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }

/* === Hero with circular warm glow === */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 2rem 4rem; overflow: hidden;
  background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 40%, #FDE68A 100%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; pointer-events: none;
}
.hero-glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent); top: -150px; right: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent); bottom: -100px; left: -80px; }
.hero-glow-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(251, 191, 36, 0.4), transparent); top: 40%; left: 45%; }
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(217, 119, 6, 0.1); border: 1px solid var(--primary-border); color: var(--primary-dark); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title { font-size: 3.5rem; font-weight: 900; line-height: 1.15; color: var(--text-dark); margin-bottom: 1.5rem; }
.hero-title span { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.15rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 2.5rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem;
  text-decoration: none; box-shadow: 0 8px 30px rgba(217, 119, 6, 0.35);
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(217, 119, 6, 0.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--primary-dark); padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 2px solid rgba(217, 119, 6, 0.3); transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { background: rgba(217, 119, 6, 0.06); border-color: var(--primary); transform: translateY(-3px); }
.hero-image-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-image-wrap img { width: 100%; max-width: 520px; border-radius: 20px; box-shadow: 0 30px 80px rgba(217, 119, 6, 0.2); position: relative; z-index: 1; }
.hero-image-wrap::before {
  content: ''; position: absolute; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
  border-radius: 50%; z-index: 0;
}

/* === Section Common === */
.section { padding: 6rem 2rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-tag { display: inline-block; color: var(--primary); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-gray); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; }

/* === Features === */
.features-bg { background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card {
  background: #fff; border-radius: 20px; padding: 2.5rem 2rem; text-align: left;
  border: 1px solid rgba(217, 119, 6, 0.08); box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  transition: all 0.35s; position: relative; overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); transform: scaleX(0); transition: transform 0.35s; transform-origin: left; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(217, 119, 6, 0.1); border-color: var(--primary-border); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary); background: var(--primary-bg); margin-bottom: 1.5rem;
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-dark); }
.feature-card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.7; }

/* === Stats === */
.stats-bg { background: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 50%, #FEF3C7 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2.5rem 1.5rem; background: #fff; border-radius: 20px; box-shadow: 0 4px 30px rgba(217, 119, 6, 0.06); transition: transform 0.3s; }
.stat-item:hover { transform: translateY(-5px); }
.stat-number { font-size: 3rem; font-weight: 900; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 1rem; color: var(--text-gray); margin-top: 0.5rem; font-weight: 500; }

/* === Testimonials === */
.testimonials-bg { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--bg-warm); border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid rgba(217, 119, 6, 0.06); transition: all 0.3s; position: relative;
}
.testimonial-card:hover { box-shadow: 0 15px 50px rgba(217, 119, 6, 0.08); transform: translateY(-4px); }
.testimonial-card .quote-icon { font-size: 2rem; color: var(--primary-light); opacity: 0.3; margin-bottom: 1rem; }
.testimonial-text { font-size: 1rem; color: var(--text-dark); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--primary-light); }
.testimonial-author h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.testimonial-author p { font-size: 0.85rem; color: var(--text-gray); }

/* === FAQ Accordion === */
.faq-bg { background: var(--bg-warm); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 16px; margin-bottom: 1rem; border: 1px solid rgba(217, 119, 6, 0.08); overflow: hidden; transition: all 0.3s; }
.faq-item.active { border-color: var(--primary-border); box-shadow: 0 8px 35px rgba(217, 119, 6, 0.08); }
.faq-question {
  width: 100%; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); text-align: left;
}
.faq-question i { color: var(--primary); transition: transform 0.35s; font-size: 1rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 2rem 1.5rem; }
.faq-answer p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.8; }

/* === CTA === */
.cta-bg { background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%); position: relative; overflow: hidden; }
.cta-bg::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.06); border-radius: 50%; top: -200px; right: -100px; }
.cta-bg::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.04); border-radius: 50%; bottom: -100px; left: -50px; }
.cta-content { text-align: center; position: relative; z-index: 1; color: #fff; }
.cta-content h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 1rem; }
.cta-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--primary-dark); padding: 0.9rem 2.5rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #fff; padding: 0.9rem 2.5rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s; cursor: pointer;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }

/* === Footer === */
.footer { background: #1a1a2e; color: #d1d5db; padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: #9ca3af; }
.footer-col h4 { font-size: 1rem; color: #fff; margin-bottom: 1.25rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: #9ca3af; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1200px; margin: 0 auto; font-size: 0.85rem; color: #6b7280; }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-desc { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-width: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(217,119,6,0.1); }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.2rem; }
  .hero-section { padding: 6rem 1.5rem 3rem; }
  .section { padding: 4rem 1.5rem; }
  .section-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-content h2 { font-size: 2rem; }
}
