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

:root {
  --font-family-title: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;
  
  --color-bg: #FAF9F6;
  --color-bg-subtle: #F4F2EE;
  --color-bg-card: #FFFFFF;
  --color-text-main: #2D3142;
  --color-text-muted: #6C757D;
  --color-border: #EAE7E2;
  
  --color-brand: #E07A5F;
  --color-brand-dark: #D1674B;
  --color-brand-light: #FDF1ED;
  --color-success: #81B29A;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 2px 8px rgba(45, 49, 66, 0.04);
  --shadow-md: 0 8px 24px rgba(45, 49, 66, 0.06);
  --shadow-lg: 0 16px 40px rgba(45, 49, 66, 0.1);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-family-title);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  gap: 6px;
  min-height: 42px;
}

.btn-primary {
  background-color: var(--color-brand);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-main);
}

.btn-outline:hover {
  background-color: var(--color-bg-subtle);
  border-color: var(--color-text-muted);
}

.btn-text {
  background: transparent;
  color: var(--color-text-main);
  padding: 8px 16px;
  border: none;
}

.btn-text:hover {
  color: var(--color-brand);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--color-border);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text-main);
}

.logo-icon {
  font-size: 28px;
  color: var(--color-brand);
}

.logo-text {
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 14.5px;
  transition: var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger menu for mobile */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  cursor: pointer;
}

.menu-toggle span {
  font-size: 28px;
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(45, 49, 66, 0.3);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
  z-index: 2100;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--color-text-main);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-family-title);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px 0;
  text-align: center;
  background: radial-gradient(circle at top, var(--color-brand-light) 0%, var(--color-bg) 60%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-brand-light);
  color: var(--color-brand-dark);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  font-family: var(--font-family-title);
  border: 1px solid rgba(224, 122, 95, 0.15);
}

.hero-section h1 {
  font-size: 54px;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--color-text-main);
  line-height: 1.15;
}

.hero-section .lead {
  font-size: 19px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-actions-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-mockup-wrapper {
  margin-top: 50px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

/* Features Section */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 16.5px;
  font-weight: 500;
}

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

.feature-card {
  background-color: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--color-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
}

.feature-icon-wrapper span {
  font-size: 28px;
}

.feature-card h3 {
  font-size: 22px;
  color: var(--color-text-main);
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  background-color: var(--color-bg-subtle);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-brand);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: var(--font-family-title);
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.2);
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.step-item p {
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.step-arrow {
  align-self: center;
  font-size: 32px;
  color: var(--color-border);
  margin-top: -30px;
}

/* Showcase Section */
.showcase-carousel-wrapper {
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-top: 20px;
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.showcase-tab-btn {
  background: var(--color-bg-subtle);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-family-title);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.showcase-tab-btn.active {
  background-color: var(--color-brand);
  color: #FFFFFF;
  border-color: var(--color-brand);
}

.showcase-content-container {
  display: none;
}

.showcase-content-container.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 48px;
  animation: fadeIn 0.4s ease-out;
}

.showcase-text-details h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.showcase-text-details p {
  font-size: 15.5px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.showcase-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-text-main);
}

.showcase-features-list span.check-icon {
  color: var(--color-success);
  font-weight: 800;
}

.showcase-img-container {
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1.5px solid var(--color-border);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.showcase-img-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase-img-container img:hover {
  transform: scale(1.02);
}

/* Who It's For */
.who-is-it-for-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.who-text-card {
  background-color: var(--color-brand-light);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(224, 122, 95, 0.15);
}

.who-text-card h2 {
  font-size: 38px;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--color-text-main);
}

.who-text-card p {
  font-size: 16px;
  color: var(--color-brand-dark);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.who-grid-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.who-box {
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.who-box h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.who-box p {
  font-size: 13.5px;
  color: var(--color-text-muted);
}

/* Why AFH Chart */
.why-section {
  background-color: var(--color-bg-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background-color: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-brand-light);
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-check span {
  font-size: 18px;
  font-weight: 800;
}

.why-card h4 {
  font-size: 15.5px;
  color: var(--color-text-main);
  font-weight: 700;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background-color: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  border-color: var(--color-brand);
  background: radial-gradient(circle at top right, var(--color-brand-light) 0%, var(--color-bg-card) 40%);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-brand);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.pricing-desc {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-family-title);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-main);
}

.pricing-features span {
  font-size: 18px;
  color: var(--color-brand);
}

.pricing-card .btn {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-bg-subtle);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.faq-item {
  background-color: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

details.faq-item[open] {
  border-color: var(--color-brand);
}

summary.faq-question {
  padding: 20px 24px;
  font-family: var(--font-family-title);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  list-style: none;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::after {
  content: "add";
  font-family: 'Material Symbols Outlined';
  font-size: 20px;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
}

details.faq-item[open] summary.faq-question::after {
  content: "remove";
  color: var(--color-brand);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1.5px solid var(--color-border);
  padding-top: 16px;
}

/* Contact / Call to Action Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-text-main) 0%, #171A24 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Footer */
.site-footer {
  background-color: var(--color-text-main);
  color: #FFFFFF;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 40px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info .logo-text {
  color: #FFFFFF;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  max-width: 260px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #FFFFFF;
}

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

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 46px;
  }
  .features-grid, .who-is-it-for-grid, .why-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    max-width: 450px;
    margin: 0 auto;
  }
  .who-is-it-for-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .showcase-tabs {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    width: 100% !important;
    white-space: nowrap !important;
    scrollbar-width: none;
  }
  .showcase-tabs::-webkit-scrollbar {
    display: none;
  }
  .showcase-tab-btn {
    flex: none !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
  }
  .showcase-carousel-wrapper {
    padding: 24px !important;
  }
  .hero-section {
    padding: 60px 0 80px 0;
  }
  .hero-section h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .hero-actions-container {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-actions-container .btn {
    width: 100%;
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .step-arrow {
    transform: rotate(90deg);
    font-size: 24px;
    margin-top: 0;
  }
  .showcase-content-container.active {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-content h2 {
    font-size: 32px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}
