/* CabChalak - Professional Top Navigation Layout */
:root {
  --primary: #274BFF;
  --primary-dark: #0052CC;
  --accent: #FF9F1C;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* Header / Navigation */
.header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-dark);
  text-decoration: none;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.mobile-only { display: none; }
.desktop-only { display: inline-block; }

.nav-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
  font-size: 14px;
}

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

.btn-nav {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), #ffc36a);
  color: var(--text-dark);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-nav:hover {
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 36px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(39, 75, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39, 75, 255, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 34px;
  font-size: 15px;
}

.btn-outline:hover {
  background: rgba(39, 75, 255, 0.05);
  border-color: var(--primary);
}

/* Hero */
.hero {
  padding: 120px 0 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.15;
  color: var(--text-dark);
  width: 100%;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 60px 0;
  max-width: 700px;
  line-height: 1.6;
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 0 60px 0;
  width: 100%;
  max-width: 900px;
}

.stat-box {
  padding: 32px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-box:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(39, 75, 255, 0.08);
  transform: translateY(-4px);
}

.number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* Policy page styling (privacy / terms / refund) */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 4px;
}
.policy-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 22px;
}
.policy-content h3 {
  margin-top: 22px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 16px;
}
.policy-content p,
.policy-content li {
  color: var(--text-dark);
  line-height: 1.8;
}
.policy-content .muted {
  color: var(--text-muted);
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 18px 0;
}
.policy-content table thead tr {
  border-bottom: 1px solid var(--border);
}
.policy-content table th,
.policy-content table td {
  padding: 10px 8px;
  text-align: left;
  color: var(--text-dark);
  font-size: 14px;
}
.policy-chart img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
  display: block;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .hero h1 { font-size: 36px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .policy-content { padding: 0 12px; }
}

/* Mobile navigation and layout tweaks */
@media (max-width: 768px) {
  .header .container { padding: 12px 16px; }
  .nav-toggle { display: block; color: var(--text-muted); }
  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 0 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 90;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.36s ease, opacity 0.32s ease;
  }
  .nav-menu.open {
    max-height: 420px;
    opacity: 1;
    padding: 16px 20px;
  }
  .nav-menu a { padding: 12px 6px; color: var(--text-dark); }

  .nav-toggle.open { transform: rotate(90deg); transition: transform 0.25s ease; }

  /* show/hide Get Started variants */
  .desktop-only { display: none; }
  .mobile-only { display: inline-block; width: 100%; text-align: center; margin-top: 8px; }

  /* Stack contact and other grids to single column */
  .contact-grid, .features-grid, .solutions-grid, .testimonials-grid, .videos-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .hero { padding: 48px 0; }
  .hero h1 { font-size: 28px; }
  .lead { font-size: 15px; margin-bottom: 24px; }

  .contact-form, .contact-info-box { padding: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Sections */
section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
  text-align: center;
}

/* Features */
.features {
  background: var(--bg);
}

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

.feature-item {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.feature-item:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(39, 75, 255, 0.1);
  transform: translateY(-6px);
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

/* How It Works */
.how-it-works {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.step-item {
  padding: 32px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Video Section */
.video-section {
  background: var(--bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.video-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.video-wrapper iframe {
  display: block;
  width: 100%;
}

/* App Section */
.app-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.app-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.app-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.app-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.app-features {
  list-style: none;
  margin-bottom: 32px;
}

.app-features li {
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.app-features li:last-child {
  border-bottom: none;
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.phone-mockup {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.phone-frame {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 40px;
  padding: 12px;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-content {
  background: var(--card-bg);
  border-radius: 35px;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.phone-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.phone-content p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Solutions -->
.solutions {
  background: var(--bg);
}

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

.solution-box {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.solution-box:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(39, 75, 255, 0.1);
  transform: translateY(-4px);
}

.solution-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.solution-box ul {
  list-style: none;
}

.solution-box li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.solution-box li:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.testimonial-box {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.testimonial-box p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-box h4 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 80px 0;
}

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

.stat-card {
  /* styling handled by parent containers */
}

.stat-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-name {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA */
.cta {
  background: var(--card-bg);
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Contact */
.contact {
  background: var(--bg);
}

.contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact-form p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.1);
}

.contact-info-box {
  padding: 40px;
  background: linear-gradient(135deg, rgba(39, 75, 255, 0.05), rgba(255, 159, 28, 0.02));
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact-info-box h3 {
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.info-item {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
}

/* Founder Section */
.founder-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(39, 75, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.founder-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.founder-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-section .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.founder-image {
  text-align: center;
  perspective: 1000px;
}

.founder-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(39, 75, 255, 0.2), 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 6px solid #ffffff;
  transition: all 0.3s ease;
}

.founder-photo:hover {
  box-shadow: 0 40px 80px rgba(39, 75, 255, 0.25), 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: scale(1.02);
}

.founder-text {
  position: relative;
}

.founder-name-card {
  margin-bottom: 32px;
}

.founder-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.founder-role {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.founder-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.founder-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 18px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  transition: all 0.25s ease;
  background: transparent;
}

.founder-social a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(39, 75, 255, 0.2);
}

.social-icon {
  font-size: 18px;
  display: inline-block;
}

/* Footer */
.footer-new {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg) 100%);
  border-top: 2px solid var(--border);
  padding: 60px 0 20px;
}

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

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(4px);
  transition: all 0.3s;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 8px;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section h2 {
    font-size: 40px;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header .container {
    flex-direction: column;
    gap: 16px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .features-grid,
  .testimonials-grid,
  .steps-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-stat {
  padding: 16px;
  background: rgba(39, 75, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Section */
.section {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

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

.section-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-align: center;
}

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin: 0 auto 60px auto;
  max-width: 700px;
  text-align: center;
}

/* Features Showcase */
.features-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card-large {
  padding: 32px;
  background: linear-gradient(135deg, rgba(39, 75, 255, 0.03), rgba(255, 159, 28, 0.02));
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.feature-card-large:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(39, 75, 255, 0.1);
  transform: translateY(-8px);
}

.feature-icon-large {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.feature-card-large h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

/* How It Works */
.how-it-works-new {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.flow-container {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}

.flow-step {
  min-width: 220px;
  padding: 32px 24px;
  background: var(--card-bg);
  border-right: 1px solid var(--border);
  text-align: center;
}

.flow-step:last-child {
  border-right: none;
}

.flow-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.flow-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.flow-step p {
  font-size: 13px;
  color: var(--text-muted);
}

.flow-arrow {
  color: var(--text-muted);
  font-size: 24px;
  padding: 0 20px;
  display: none;
}

/* Solutions */
.solutions-cards {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.solution-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(39, 75, 255, 0.1);
}

.solution-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.solution-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.solution-list {
  list-style: none;
}

.solution-list li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.solution-list li:last-child {
  border-bottom: none;
}

/* Pricing */
.pricing-section {
  background: var(--bg-secondary);
}

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

.pricing-card {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
  display: none;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(39, 75, 255, 0.15);
  transform: translateY(-8px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(39, 75, 255, 0.1), rgba(255, 159, 28, 0.05));
  border-color: var(--accent);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark-bg);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

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

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.price span {
  font-size: 24px;
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonials-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.testimonial-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.testimonial-stars {
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.testimonial-author h4 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

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

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 60px;
}

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

.stat-item h3 {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Bold */
.cta-bold {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  text-align: center;
  padding: 80px 60px;
}

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

.cta-bold p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Contact Section */
.contact-section {
  background: var(--bg-secondary);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
}

.contact-form-box h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-form-box > p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.1);
}

.contact-info-box h3 {
  font-size: 24px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.info-item {
  margin-bottom: 32px;
}

.info-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 700;
}

.info-item p {
  color: var(--text-dark);
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

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

/* Footer */
.footer-new {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 60px;
}

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

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 1200px) {
  .hero-new,
  .section,
  .stats-banner,
  .cta-bold {
    padding: 80px 40px;
  }

  .features-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .section h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 240px;
    padding: 20px 16px;
  }

  .main-content {
    margin-left: 240px;
  }

  .hero-new,
  .section,
  .stats-banner,
  .cta-bold {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section h2 {
    font-size: 32px;
  }

  .features-grid-large,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-section h1 {
    font-size: 42px;
  }

  .founder-text h2 {
    font-size: 36px;
  }

  .founder-photo {
    width: 280px;
    height: 280px;
  }

  .flow-container {
    flex-direction: column;
  }

  .flow-step {
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .flow-step:last-child {
    border-bottom: none;
  }

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

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .app-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .sidebar {
    width: 200px;
    padding: 16px 12px;
  }

  .main-content {
    margin-left: 200px;
  }

  .hero-new,
  .section,
  .stats-banner,
  .cta-bold {
    padding: 40px 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-large,
  .btn-outline-light {
    width: 100%;
  }

  .section h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .stats-grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .flow-number {
    font-size: 32px;
  }

  .founder-section {
    padding: 60px 0;
  }

  .founder-header {
    margin-bottom: 50px;
  }

  .founder-section h1 {
    font-size: 32px;
  }

  .founder-content {
    gap: 30px;
  }

  .founder-image {
    text-align: center;
  }

  .founder-photo {
    width: 240px;
    height: 240px;
  }

  .founder-text h2 {
    font-size: 28px;
  }

  .founder-role {
    font-size: 16px;
  }

  .founder-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .founder-social {
    gap: 12px;
  }

  .founder-social a {
    font-size: 13px;
    padding: 10px 14px;
  }
}
/* ==================== FORM VALIDATION STYLES ==================== */
.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(39, 75, 255, 0.1);
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
}

/* ==================== MODAL STYLES ==================== */
#app-modal {
  display: none;
}

#app-modal.open {
  display: flex;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: var(--card-bg);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
  flex-shrink: 0;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-footer .btn {
  min-width: 100px;
}

/* ==================== NOTIFICATION STYLES ==================== */
#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

.notification {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  animation: slideIn 0.3s ease, slideOut 3.7s ease 0.3s forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* ==================== RESPONSIVE ADMIN SIDEBAR (MOBILE) ==================== */
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
}

.admin-overlay {
  display: none;
}

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

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 240px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .sidebar-toggle {
    display: block;
  }

  .admin-overlay {
    display: none;
  }

  .admin-overlay.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
  }

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

  .admin-content {
    padding: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}