:root {
  /* Colors */
  --color-primary: #0B1B3D; /* Navy Blue */
  --color-primary-light: #162A54;
  --color-accent: #F5A623; /* Gold */
  --color-accent-hover: #DDA01A;
  --color-success: #10B981; /* Green */
  --color-text-dark: #1F2937;
  --color-text-light: #6B7280;
  --color-white: #FFFFFF;
  --color-bg-light: #F9FAFB;
  --color-bg-dark: #111827;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Shadows & Borders */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.text-light { color: var(--color-text-light); }

.heading-xl { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
.heading-lg { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.text-lg { font-size: 1.125rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 27, 61, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--transition-normal);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--color-accent);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(245, 166, 35, 0.15);
  color: var(--color-accent);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

.hero-image-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-earnings {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-success);
  margin-bottom: 0.5rem;
}

.mockup-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.mockup-chart {
  height: 100px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 100%);
  border-bottom: 2px solid var(--color-success);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.mockup-chart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-success) 0px, var(--color-success) 5px, transparent 5px, transparent 10px);
  opacity: 0.3;
}

/* How It Works */
.steps-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(11, 27, 61, 0.05);
  color: var(--color-primary);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px rgba(11, 27, 61, 0.1);
}

.step-card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.step-card p {
  color: var(--color-text-light);
}

/* Features / Value Prop */
.features-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-bg-light);
}

.benefits-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.benefit-card {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(245, 166, 35, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--color-text-light);
  line-height: 1.6;
}

.features-image {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.features-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  background: var(--color-accent);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.2;
}

.stat-box {
  background: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 1.5rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Requirements */
.requirements-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.req-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.req-card {
  background: var(--color-bg-light);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  border-top: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
  text-align: center;
}

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

.req-icon-large {
  width: 60px;
  height: 60px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.req-card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.req-card p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Profit Sharing */
.profit-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.profit-section .section-header h2 {
  color: var(--color-white);
}

.profit-section .section-tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}

.profit-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.profit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profit-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.profit-client {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 0 0 10px rgba(245, 166, 35, 0.2);
}

.profit-us {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

.profit-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.profit-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  max-width: 200px;
}

.profit-divider {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
}

/* Testimonials */
.testimonials-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-bg-light);
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-top: 2rem;
  -webkit-overflow-scrolling: touch;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.carousel-item {
  scroll-snap-align: start;
  flex: 0 0 calc(50% - 1rem); /* 2 items on PC */
  min-width: 0;
}

.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.3);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(245, 166, 35, 0.15);
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Proof Gallery Carousel specific overrides if needed */
.proof-carousel {
  margin-top: 3rem;
}

.proof-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--color-white);
  height: 100%;
}

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

.proof-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  padding-bottom: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity var(--transition-normal);
  overflow: auto;
}

.modal.show {
  display: block;
  text-align: center;
  opacity: 1;
}

.modal.show::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.modal-content {
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform var(--transition-normal), max-width 0.3s ease, width 0.3s ease;
  cursor: zoom-in;
}

.modal.show .modal-content {
  transform: scale(1);
}



.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 2001;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--color-accent);
  text-decoration: none;
}

/* FAQ */
.faq-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-content {
  padding-top: 1rem;
  color: var(--color-text-light);
}

/* Footer */
.footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about .logo {
  margin-bottom: 1rem;
}

.footer-about p {
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, var(--color-accent) 0%, #E69A1C 100%);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transform: translateY(-50%);
  margin-bottom: -4rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px -10px rgba(245, 166, 35, 0.3);
}

.cta-banner h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--color-primary-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cta-banner .btn-primary:hover {
  background-color: var(--color-primary-light);
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .profit-card {
    flex-direction: column;
  }
  
  .profit-divider {
    width: 100px;
    height: 1px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .heading-xl {
    font-size: 2.5rem;
  }
  
  .heading-md {
    font-size: 2rem;
  }

  .benefits-card-grid,
  .req-card-grid {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    flex: 0 0 100%; /* Show 1 item on mobile */
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .cta-banner {
    transform: translateY(0);
    margin-bottom: 3rem;
  }
  
  .footer {
    padding-top: var(--spacing-xl);
  }
  
  .testimonial-proof img {
    margin-top: 1.5rem;
  }
}
