/* Modern fin.ai-inspired design for TopAIEngineers */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.font-inter {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #0a1628;
  margin: 0;
  opacity: 0;
  will-change: opacity;
  transition: opacity 1s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === CHATBOT PAGE SPECIFIC STYLES === */

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff5600;
  background: rgba(255, 86, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 32px;
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #ff5600;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.section-subheading {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Section subheading on light backgrounds */
.how-it-works-section .section-subheading,
.chatbot-usecases-section .section-subheading {
  color: #555555;
}

/* How It Works Section */
.how-it-works-section {
  background: #f8f9fa;
  padding: 100px 32px;
}

.how-it-works-container {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.step-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: #ff5600;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 16px;
}

.step-tech {
  font-size: 13px;
  color: #ff5600;
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2642 100%);
  padding: 100px 32px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subheading {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input {
  width: 100%;
}

.form-input.full-width {
  grid-column: 1 / -1;
}

.submit-button {
  background: #ff5600;
  color: #ffffff;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #e64d00;
  transform: translateY(-2px);
}

/* Footer */
.footer-section {
  background: #0a1628;
  padding: 60px 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
}

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

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ff5600;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive - Chatbot Page */
@media(max-width: 768px) {
  .steps-timeline {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    gap: 40px;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-badge {
    min-width: 120px;
    padding: 16px 24px;
  }
  .cta-heading {
    font-size: 36px;
  }
}

/* === NAVIGATION === */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffffff;
}

.cta-button {
  background: #ff5600;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #e64d00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 86, 0, 0.3);
}

.mobile-menu-icon {
  color: #ffffff;
  cursor: pointer;
  display: none;
}

@media(max-width: 767px) {
  .mobile-menu-icon {
    display: block;
  }
}

.mobile-menu-card {
  background: #0a1628;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.mobile-nav-links a {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.mobile-cta {
  background: #ff5600;
  padding: 16px 48px;
  border-radius: 8px;
  margin-top: 16px;
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3a 100%);
  padding: 120px 32px 80px;
  text-align: center;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ff5600;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #e64d00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 86, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

@media(max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-section {
    padding: 100px 24px 60px;
  }
}

@media(max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

/* ========== CHATBOT SECTIONS ========== */

/* Chatbot Overview Section */
.chatbot-overview-section {
  background: #f8f9fa;
  padding: 100px 32px 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chatbot-overview-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.chatbot-intro {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff5600;
  background: rgba(255, 86, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.chatbot-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.chatbot-main-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
  max-width: 800px;
  margin: 0 auto;
}

.chatbot-key-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.benefit-pill:hover {
  background: rgba(255, 86, 0, 0.05);
  border-color: #ff5600;
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 20px;
}

.benefit-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Chatbot Features Section - 4 Pillars */
.chatbot-features-section {
  background: #0a1628;
  padding: 100px 32px;
}

.chatbot-features-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.feature-pillar {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.feature-pillar:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 86, 0, 0.3);
  transform: translateY(-4px);
}

.pillar-icon-wrapper {
  background: rgba(255, 86, 0, 0.1);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon {
  font-size: 32px;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.pillar-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

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

.pillar-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.pillar-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5600;
  font-weight: bold;
}

/* Chatbot Use Cases Section */
.chatbot-usecases-section {
  background: #f8f9fa;
  padding: 100px 32px;
}

.chatbot-usecases-container {
  max-width: 1280px;
  margin: 0 auto;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.usecase-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.usecase-card:hover {
  background: #ffffff;
  border-color: rgba(255, 86, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.usecase-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.usecase-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.usecase-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.usecase-stat {
  font-size: 14px;
  font-weight: 700;
  color: #ff5600;
  background: rgba(255, 86, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
}

/* Chatbot Results Section */
.chatbot-results-section {
  background: #0a1628;
  padding: 100px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-results-container {
  max-width: 1280px;
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.result-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  background: rgba(255, 86, 0, 0.05);
  border-color: #ff5600;
  transform: translateY(-4px);
}

.result-metric {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #ff5600;
  margin-bottom: 12px;
  line-height: 1;
}

.result-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.result-context {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Chatbot Sections */
@media(max-width: 1024px) {
  .features-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  .chatbot-main-heading {
    font-size: 40px;
  }
  .features-grid-4,
  .usecases-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .chatbot-key-benefits {
    flex-direction: column;
    align-items: center;
  }
  .benefit-pill {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media(max-width: 480px) {
  .chatbot-main-heading {
    font-size: 32px;
  }
  .chatbot-main-subtitle {
    font-size: 17px;
  }
}

/* === COMPARISON TABLE SECTION === */
.comparison-section {
  background: #f8f9fa;
  padding: 100px 32px;
}

.comparison-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #0a1628;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

/* Section heading on dark backgrounds */
.chatbot-features-section .section-heading,
.chatbot-results-section .section-heading {
  color: #ffffff;
}

.comparison-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: #0a1628;
  color: #ffffff;
  padding: 20px;
  font-weight: 600;
  gap: 16px;
}

.header-item {
  padding: 12px;
  text-align: center;
  font-size: 16px;
}

.header-item.highlight {
  background: #ff5600;
  border-radius: 8px;
  font-weight: 700;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid #e9ecef;
  padding: 20px;
  gap: 16px;
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:nth-child(even) {
  background: #f8f9fa;
}

.row-label {
  font-weight: 600;
  color: #0a1628;
  font-size: 15px;
}

.row-value {
  text-align: center;
  color: #495057;
  font-size: 14px;
  padding: 12px;
  border-radius: 6px;
}

.row-value.highlight {
  background: rgba(255, 86, 0, 0.05);
  color: #0a1628;
  font-weight: 500;
}

.checkmark {
  color: #28a745;
  font-weight: 700;
  margin-right: 8px;
  font-size: 18px;
}

.crossmark {
  color: #dc3545;
  font-weight: 700;
  margin-right: 8px;
  font-size: 18px;
}

@media(max-width: 768px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-item,
  .row-label,
  .row-value {
    text-align: left;
  }

  .row-value.highlight {
    margin-left: 0;
  }
}

/* === STATS SECTION === */
.stats-section {
  background: #0a1628;
  padding: 80px 32px;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #ff5600;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media(max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  background: #f8f9fa;
  padding: 100px 32px;
}

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

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

.testimonial-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #495057;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

.author-name {
  font-weight: 600;
  color: #0a1628;
  font-size: 15px;
}

.author-role {
  font-size: 13px;
  color: #6c757d;
  margin-top: 4px;
}

@media(max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === SERVICES SECTION === */
.services-section {
  background: #f8f9fa;
  padding: 100px 32px;
}

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

.services-section .section-heading {
  color: #1a1a1a;
}

.section-heading-white {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

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

.service-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
  border-color: #ff5600;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card.highlight {
  border: 2px solid #ff5600;
  background: #ffffff;
}

.service-card.highlight:hover {
  border-color: #ff5600;
  box-shadow: 0 8px 32px rgba(255, 86, 0, 0.2);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
}

@media(max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* === PRICING SECTION === */
.pricing-section {
  background: #f8f9fa;
  padding: 100px 32px;
}

.pricing-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 48px;
}

.pricing-card {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid #ff5600;
}

.pricing-label {
  font-size: 14px;
  text-transform: uppercase;
  color: #6c757d;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 32px;
}

.pricing-period {
  font-size: 20px;
  color: #6c757d;
  font-weight: 400;
}

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

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  color: #495057;
  font-size: 15px;
}

.pricing-features li:before {
  content: "✓";
  color: #28a745;
  font-weight: 700;
  margin-right: 12px;
}

.pricing-cta {
  background: #ff5600;
  color: #ffffff;
  padding: 16px 48px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.pricing-cta:hover {
  background: #e64d00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 86, 0, 0.3);
}

/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3a 100%);
  padding: 100px 32px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px !important;
}

/* === FAQ SECTION === */
.faq-section {
  background: #f8f9fa;
  padding: 100px 32px;
}

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

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

.faq-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
}

@media(max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* === FOOTER === */
.page-footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ff5600;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-link:hover {
  color: #ff5600 !important;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  transition: color 0.3s;
  text-decoration: none;
  font-family: 'FontAwesome';
}

.social-link:hover {
  color: #ff5600;
}

@media(max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* === UTILITY CLASSES === */
.question {
  margin-bottom: 20px;
}

.question header {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0a1628;
}

#progress-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background: transparent url("../images/progress-01.gif") no-repeat center center;
}

.loader {
  background: rgba(10, 22, 40, 0.95);
  padding: 40px;
  border-radius: 12px;
}
