/* ETABROKERS Theme - Exact Match to Reference Design */

:root {
  --primary-gold: #F2A92B;
  --primary-gold-light: #F9C851;
  --primary-gold-dark: #E19F1B;
  --text-dark: #333333;
  --text-muted: #666666;
  --text-light: #999999;
  --white: #FFFFFF;
  --light-cream: #FFFBF2;
  --light-yellow: #FDFBF5;
  --light-gray: #F6F7FB;
  --border-light: #EEEEEE;
  --footer-dark: #1A1A2E;
  --footer-text: #C7D2FE;
  --footer-gold: #F9C851;
  --footer-blue: #66B2FF;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

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

/* Header Styles - Exact Match */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-dark);
}

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

.primary-nav {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: var(--primary-gold);
}

.header-cta {
  margin-left: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn--header {
  background: var(--text-dark);
  color: var(--white);
}

.btn--header:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(242, 169, 43, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 169, 43, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--primary-gold);
}

.btn--secondary:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
}

/* Hero Section - Exact Match to Reference */
.hero {
  background: linear-gradient(180deg, var(--light-yellow) 0%, var(--white) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(80% 80% at 90% 10%, rgba(242, 169, 43, 0.1) 0%, rgba(242, 169, 43, 0) 60%);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero h1 .highlight {
  color: var(--primary-gold);
  display: block;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-actions .btn {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--light-yellow), var(--white));
  background-image: url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?q=80&w=1000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 24px;
  width: 100px;
  height: 100px;
  background: var(--primary-gold);
  border-radius: 50%;
  opacity: 0.2;
}

/* Client Logos Section - Exact Match */
.client-logos {
  padding: 60px 0;
  background: var(--white);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
  text-align: center;
}

.logo-item {
  font-size: 18px;
  font-weight: 700;
  color: #C5CCD7;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

/* Features Section - Exact Match */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--text-dark);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

/* Platform Section - Exact Match */
.platform {
  padding: 100px 0;
  background: var(--light-yellow);
}

.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.platform-text h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.platform-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.platform-features {
  list-style: none;
  padding: 0;
}

.platform-features li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--text-dark);
}

.platform-features li::before {
  content: '✓';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--primary-gold);
  color: var(--text-dark);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  margin-right: 16px;
  flex-shrink: 0;
}

.platform-image {
  position: relative;
  background: linear-gradient(135deg, var(--light-yellow), var(--white));
  border-radius: 20px;
  height: 400px;
  overflow: hidden;
}

.platform-image::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  background: var(--primary-gold);
  border-radius: 50%;
  opacity: 0.2;
}

/* Why Section - Exact Match */
.why {
  padding: 100px 0;
  background: var(--white);
}

.why h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.why-card {
  text-align: center;
  padding: 40px 20px;
}

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--text-dark);
}

.why-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

/* Testimonial Section - Exact Match */
.testimonial {
  padding: 100px 0;
  background: var(--light-yellow);
  position: relative;
}

.testimonial-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonial-quote {
  background: var(--white);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 120px;
  color: var(--primary-gold);
  line-height: 1;
}

.testimonial-quote p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 16px;
}

.testimonial-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
}

/* Pricing Section - Exact Match */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

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

.pricing-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.pricing-badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(242, 169, 43, 0.2);
}

.pricing-card.featured {
  border-color: var(--primary-gold);
  background: var(--light-cream);
  box-shadow: 0 20px 60px rgba(242, 169, 43, 0.25);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.pricing-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card .price-period {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
}

.pricing-features li::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--primary-gold);
  color: var(--text-dark);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

/* FAQ Section - Exact Match */
.faq {
  padding: 100px 0;
  background: var(--light-gray);
}

.faq h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--light-yellow);
}

.faq-question::after {
  content: '▼';
  font-size: 14px;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 32px 24px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* CTA Section - Exact Match */
.cta {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23F2A92B" opacity="0.3"/><line x1="0" y1="25" x2="50" y2="25" stroke="%23F2A92B" stroke-width="1" opacity="0.2"/><line x1="25" y1="0" x2="25" y2="50" stroke="%23F2A92B" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cta h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.cta .btn {
  font-size: 18px;
  padding: 20px 40px;
}

/* Footer - Exact Match */
.site-footer {
  background: var(--footer-dark);
  color: var(--footer-text);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--footer-text);
}

.footer-brand .logo span {
  color: var(--footer-gold);
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--footer-gold);
}

.btn--footer {
  background: var(--text-dark);
  color: var(--white);
  justify-self: end;
}

.btn--footer:hover {
  background: var(--footer-gold);
  color: var(--text-dark);
}

.footer-copy {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(199, 210, 254, 0.2);
  color: var(--text-light);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-image { 
    width: 400px; 
    height: 400px; 
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .features-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonial-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    gap: 20px;
  }
  
  .menu {
    gap: 20px;
  }
  
  .hero { 
    padding: 80px 0; 
  }
  
  .hero h1 { 
    font-size: 36px; 
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .features-grid,
  .why-grid,
  .pricing-grid,
  .logos-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .footer-menu {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { 
    font-size: 28px; 
  }
  
  .features h2,
  .why h2,
  .pricing-header h2,
  .cta h2 {
    font-size: 32px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .testimonial-quote {
    padding: 30px 20px;
  }
  
  .testimonial-quote p {
    font-size: 18px;
  }
}