/* ===== HOME PAGE ===== */

.home-page {
  background: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  padding: 120px 60px 80px;
  max-width: 1300px;
  margin: auto;
}

/* ===== HERO LEFT ===== */

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
  color: #0f172a;
}

.hero-left h1 span {
  color: #dc2626;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 35px;
  max-width: 650px;
}

/* ===== BUTTONS ===== */

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn {
  background: #dc2626;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #b91c1c;
}

.secondary-btn {
  background: white;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background: #f1f5f9;
}

/* ===== HERO IMAGE ===== */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ===== HIGHLIGHTS SECTION ===== */

.highlights-section {
  padding: 80px 40px;
  text-align: center;
}

.highlights-section h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #0f172a;
}

/* ===== HIGHLIGHTS GRID ===== */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* ===== HIGHLIGHT CARD ===== */

.highlight-card {
  background: white;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
}

.highlight-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0f172a;
}

.highlight-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== DASHBOARD PREVIEW ===== */

.dashboard-preview-section {
  padding: 100px 40px;
  background: linear-gradient(to right, #eff6ff, #f8fafc);
  text-align: center;
}

.dashboard-content {
  max-width: 850px;
  margin: auto;
}

.dashboard-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #0f172a;
}

.dashboard-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 35px;
}

/* ===== CTA SECTION ===== */

.cta-section {
  padding: 110px 30px;
  background: linear-gradient(to right, #111827, #1e293b);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

.cta-section p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 120px 30px 60px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    margin: auto;
    margin-bottom: 30px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-right img {
    max-width: 450px;
  }
}

@media (max-width: 768px) {

  .hero-left h1 {
    font-size: 34px;
  }

  .highlights-section h2,
  .dashboard-content h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .hero-section,
  .highlights-section,
  .dashboard-preview-section,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-right img {
    max-width: 100%;
  }
}/* ===== ABOUT PAGE ===== */

.about-page {
  background: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */

.about-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(to right, #eef2ff, #f8fafc);
}

.about-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-hero h1 span {
  color: #dc2626;
}

.about-hero p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

/* ===== ABOUT SECTION ===== */

.about-section {
  padding: 80px 40px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;

  max-width: 1300px;
  margin: auto;
}

/* ===== ABOUT CARD ===== */

.about-card {
  background: white;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
}

.about-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
}

/* ===== WHY SECTION ===== */

.why-section {
  padding: 80px 40px;
  background: white;
}

.why-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #0f172a;
}

/* ===== WHY GRID ===== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;

  max-width: 1200px;
  margin: auto;
}

/* ===== WHY CARD ===== */

.why-card {
  background: #f8fafc;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.why-card:hover {
  background: #eef2ff;
  transform: translateY(-6px);
}

.why-card span {
  display: inline-block;
  font-size: 36px;
  margin-bottom: 18px;
  color: #dc2626;
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0f172a;
}

.why-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== LEGAL TECH SECTION ===== */

.legal-tech-section {
  padding: 100px 40px;
  text-align: center;
}

.legal-tech-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #0f172a;
}

.legal-tech-section p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #475569;
}

/* ===== CTA SECTION ===== */

.about-cta {
  padding: 110px 30px;
  background: linear-gradient(to right, #111827, #1e293b);

  text-align: center;
  color: white;
}

.about-cta h2 {
  font-size: 46px;
  margin-bottom: 25px;
}

.about-cta p {
  max-width: 750px;
  margin: auto;
  margin-bottom: 35px;

  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;
}

/* ===== CTA BUTTON ===== */

.about-cta button {
  background: #dc2626;
  color: white;
  border: none;

  padding: 15px 32px;
  border-radius: 8px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s ease;
}

.about-cta button:hover {
  background: #b91c1c;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .about-hero h1,
  .why-section h2,
  .legal-tech-section h2,
  .about-cta h2 {
    font-size: 38px;
  }

  .about-section,
  .why-section,
  .legal-tech-section,
  .about-cta {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 768px) {

  .about-hero {
    padding: 110px 20px 70px;
  }

  .about-hero h1,
  .why-section h2,
  .legal-tech-section h2,
  .about-cta h2 {
    font-size: 30px;
  }

  .about-hero p,
  .legal-tech-section p,
  .about-cta p {
    font-size: 16px;
  }

  .about-card,
  .why-card {
    padding: 30px 22px;
  }
}/* ===== FEATURES PAGE ===== */

.features-page {
  background: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */

.features-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(to right, #eef2ff, #f8fafc);
}

.features-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #0f172a;
}

.features-hero h1 span {
  color: #dc2626;
}

.features-hero p {
  max-width: 850px;
  margin: auto;
  margin-bottom: 35px;

  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

/* ===== BUTTON ===== */

.features-btn {
  background: #dc2626;
  color: white;
  border: none;

  padding: 14px 30px;
  border-radius: 8px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s ease;
}

.features-btn:hover {
  background: #b91c1c;
}

/* ===== FEATURES SECTION ===== */

.features-section {
  padding: 90px 40px;
}

.features-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #0f172a;
}

/* ===== FEATURES GRID ===== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;

  max-width: 1300px;
  margin: auto;
}

/* ===== FEATURE CARD ===== */

.feature-card {
  background: white;

  padding: 40px 30px;
  border-radius: 18px;

  text-align: center;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0f172a;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

/* ===== FLOW SECTION ===== */

.flow-section {
  padding: 100px 40px;
  background: white;
  text-align: center;
}

.flow-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #0f172a;
}

.flow-section p {
  max-width: 850px;
  margin: auto;
  margin-bottom: 50px;

  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

/* ===== FLOW IMAGE ===== */

.flow-image-container {
  max-width: 1200px;
  margin: auto;
}

.flow-image-container img {
  width: 100%;
  border-radius: 20px;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* ===== WORKFLOW SECTION ===== */

.workflow-section {
  padding: 90px 40px;
}

.workflow-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

/* ===== WORKFLOW STEPS ===== */

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* ===== WORKFLOW CARD ===== */

.workflow-card {
  background: white;

  width: 220px;

  padding: 35px 25px;
  border-radius: 18px;

  text-align: center;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.workflow-card:hover {
  transform: translateY(-6px);
}

.workflow-card span {
  display: inline-block;

  width: 50px;
  height: 50px;

  line-height: 50px;

  border-radius: 50%;

  background: #dc2626;
  color: white;

  font-weight: 700;
  font-size: 18px;

  margin-bottom: 18px;
}

.workflow-card p {
  font-size: 17px;
  font-weight: 500;
  color: #1e293b;
}

/* ===== BENEFITS SECTION ===== */

.benefits-section {
  padding: 90px 40px;
  background: white;
}

.benefits-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

/* ===== BENEFITS GRID ===== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;

  max-width: 1200px;
  margin: auto;
}

/* ===== BENEFIT CARD ===== */

.benefit-card {
  background: #f8fafc;

  padding: 28px;
  border-radius: 16px;

  font-size: 17px;
  font-weight: 500;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ===== DASHBOARD PREVIEW ===== */

.dashboard-preview {
  padding: 100px 40px;
  text-align: center;
}

.dashboard-preview h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.dashboard-preview p {
  max-width: 850px;
  margin: auto;
  margin-bottom: 45px;

  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

/* ===== DASHBOARD BOX ===== */

.dashboard-box {
  max-width: 1000px;
  height: 350px;

  margin: auto;

  border-radius: 20px;

  background: linear-gradient(to right, #dbeafe, #eff6ff);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  font-weight: 700;

  color: #1e293b;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* ===== CTA SECTION ===== */

.cta-section {
  padding: 110px 30px;

  background: linear-gradient(to right, #111827, #1e293b);

  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

.cta-section p {
  max-width: 800px;

  margin: auto;
  margin-bottom: 35px;

  font-size: 18px;
  line-height: 1.8;

  color: #cbd5e1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .features-hero h1,
  .features-section h2,
  .flow-section h2,
  .workflow-section h2,
  .benefits-section h2,
  .dashboard-preview h2,
  .cta-section h2 {
    font-size: 36px;
  }

  .features-section,
  .flow-section,
  .workflow-section,
  .benefits-section,
  .dashboard-preview,
  .cta-section {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 768px) {

  .features-hero {
    padding: 110px 20px 70px;
  }

  .features-hero h1,
  .features-section h2,
  .flow-section h2,
  .workflow-section h2,
  .benefits-section h2,
  .dashboard-preview h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .features-hero p,
  .flow-section p,
  .dashboard-preview p,
  .cta-section p {
    font-size: 16px;
  }

  .workflow-card {
    width: 100%;
    max-width: 300px;
  }

  .dashboard-box {
    height: 250px;
    font-size: 22px;
  }
}/* ===== PRICING PAGE ===== */

.pricing-page {
  min-height: 100vh;

  background: #f8fafc;

  padding: 80px 20px;
}

/* ===== HERO ===== */

.pricing-hero {
  text-align: center;

  margin-bottom: 70px;
}

.pricing-hero h1 {
  font-size: 48px;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 18px;
}

.pricing-hero p {
  font-size: 18px;

  color: #64748b;

  max-width: 700px;

  margin: 0 auto;

  line-height: 1.7;
}

/* ===== CONTAINER ===== */

.pricing-container {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;
}

/* ===== CARD ===== */

.pricing-card {
  background: white;

  padding: 40px 35px;

  border-radius: 24px;

  position: relative;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* ===== FEATURED CARD ===== */

.pricing-card.featured {
  border: 2px solid #dc2626;
}

/* ===== BADGE ===== */

.popular-badge {
  position: absolute;

  top: -14px;
  right: 25px;

  background: #dc2626;
  color: white;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 13px;
  font-weight: 600;
}

/* ===== TITLE ===== */

.pricing-card h2 {
  font-size: 30px;

  color: #0f172a;

  margin-bottom: 20px;
}

/* ===== PRICE ===== */

.price {
  font-size: 52px;
  font-weight: 700;

  color: #dc2626;

  margin-bottom: 25px;
}

.price span {
  font-size: 18px;
  font-weight: 500;

  color: #64748b;
}

/* ===== FEATURES ===== */

.pricing-card ul {
  list-style: none;

  padding: 0;

  margin-bottom: 35px;
}

.pricing-card ul li {
  padding: 12px 0;

  color: #334155;

  border-bottom: 1px solid #e2e8f0;

  font-size: 15px;
}

/* ===== BUTTON ===== */

.pricing-card button {
  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 12px;

  background: #dc2626;
  color: white;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.pricing-card button:hover {
  background: #b91c1c;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .pricing-hero h1 {
    font-size: 36px;
  }

  .pricing-hero p {
    font-size: 16px;
  }

  .price {
    font-size: 42px;
  }
}/* ===== CONTACT PAGE ===== */

.contact-page {
  background: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */

.contact-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(to right, #eef2ff, #f8fafc);
}

.contact-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-hero h1 span {
  color: #dc2626;
}

.contact-hero p {
  max-width: 800px;
  margin: auto;

  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 90px 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 50px;

  max-width: 1300px;
  margin: auto;
}

/* ===== CONTACT INFO ===== */

.contact-info h2,
.contact-form-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
}

.contact-info > p {
  margin-bottom: 35px;
  color: #64748b;
  line-height: 1.8;
}

/* ===== INFO CARD ===== */

.info-card {
  background: white;

  padding: 25px;
  border-radius: 16px;

  margin-bottom: 20px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.info-card p {
  color: #64748b;
  line-height: 1.7;
}

/* ===== FORM CONTAINER ===== */

.contact-form-container {
  background: white;

  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

/* ===== FORM ===== */

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

/* ===== INPUTS ===== */

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 15px;
  border-radius: 10px;

  border: 1px solid #cbd5e1;

  font-size: 16px;

  outline: none;

  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #dc2626;
}

/* ===== BUTTON ===== */

.contact-form button {
  background: #dc2626;
  color: white;

  border: none;

  padding: 15px;
  border-radius: 10px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #b91c1c;
}

/* ===== SUPPORT SECTION ===== */

.support-section {
  padding: 100px 40px;
  background: white;
}

.support-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

/* ===== SUPPORT GRID ===== */

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;

  max-width: 1200px;
  margin: auto;
}

/* ===== SUPPORT CARD ===== */

.support-card {
  background: #f8fafc;

  padding: 35px 25px;
  border-radius: 18px;

  text-align: center;

  transition: 0.3s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  background: #eef2ff;
}

.support-card span {
  font-size: 45px;
  display: block;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.support-card p {
  color: #64748b;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */

.contact-cta {
  padding: 110px 30px;

  background: linear-gradient(to right, #111827, #1e293b);

  text-align: center;
  color: white;
}

.contact-cta h2 {
  font-size: 46px;
  margin-bottom: 25px;
}

.contact-cta p {
  max-width: 800px;

  margin: auto;
  margin-bottom: 35px;

  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.8;
}

/* ===== CTA BUTTON ===== */

.contact-cta button {
  background: #dc2626;
  color: white;

  border: none;

  padding: 15px 32px;
  border-radius: 8px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.contact-cta button:hover {
  background: #b91c1c;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-hero h1,
  .support-section h2,
  .contact-cta h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {

  .contact-hero {
    padding: 110px 20px 70px;
  }

  .contact-section,
  .support-section,
  .contact-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-hero h1,
  .support-section h2,
  .contact-cta h2 {
    font-size: 30px;
  }

  .contact-hero p,
  .contact-cta p {
    font-size: 16px;
  }
}.dashboard-shell {
  width: 100%;
}

.dashboard-main {
  width: 100%;
  min-height: 100vh;
  padding: 24px;
  background: #f5f7fb;
  box-sizing: border-box;
}

/* ================= HEADER ================= */

.dashboard-header {
  margin-bottom: 24px;
}

.dashboard-title h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #0f172a;
}

.dashboard-title p {
  color: #64748b;
}

/* ================= MINI STATS ================= */

.mini-stats {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 20px;

  margin-bottom: 24px;
}

.mini-card {

  padding: 28px;

  border-radius: 24px;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.06);

  transition: 0.3s ease;
}

.mini-card:hover {

  transform: translateY(-4px);
}

.mini-card h4 {

  font-size: 15px;

  margin-bottom: 10px;

  opacity: 0.9;
}

.mini-card p {

  font-size: 48px;

  font-weight: 700;

  margin-top: 20px;
}

.blue {

  background:
    linear-gradient(
      135deg,
      #e0e7ff,
      #c7d2fe
    );

  color: #312e81;
}

.red {

  background:
    linear-gradient(
      135deg,
      #fee2e2,
      #fecaca
    );

  color: #991b1b;
}

.green {

  background:
    linear-gradient(
      135deg,
      #dcfce7,
      #bbf7d0
    );

  color: #166534;
}

/* ================= MAIN STATS ================= */

.stats-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 20px;

  margin-bottom: 24px;
}

.stat-card {

  background: white;

  padding: 28px;

  border-radius: 22px;

  box-shadow:
    0 4px 18px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}

.stat-card:hover {

  transform: translateY(-4px);
}

.stat-card h3 {

  color: #64748b;

  margin-bottom: 14px;

  font-size: 16px;
}

.stat-card p {

  font-size: 40px;

  font-weight: bold;

  color: #0f172a;
}

/* ================= CHART ================= */

.chart-card {

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8fafc
    );

  padding: 28px;

  border-radius: 24px;

  box-shadow:
    0 6px 22px rgba(0,0,0,0.08);

  margin-top: 20px;

  min-height: 460px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

/* ================= SECTION ================= */

.dashboard-section {

  width: 100%;

  background: white;

  padding: 28px;

  border-radius: 24px;

  margin-top: 24px;

  box-shadow:
    0 4px 18px rgba(0,0,0,0.06);
}

/* ================= FORM ================= */

.form-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.field {

  display: flex;

  flex-direction: column;
}

.field label {

  margin-bottom: 8px;

  font-weight: 500;

  color: #334155;
}

.field input,
.field select,
.field textarea {

  width: 100%;

  padding: 14px;

  border:
    1px solid #cbd5e1;

  border-radius: 12px;

  outline: none;

  transition: 0.3s ease;

  background: white;
}

.field input:focus,
.field select:focus,
.field textarea:focus {

  border-color: #2563eb;

  box-shadow:
    0 0 0 4px rgba(37,99,235,0.1);
}

/* ================= BUTTONS ================= */

.form-actions {

  margin-top: 24px;

  display: flex;

  gap: 14px;
}

.primary-btn {

  background: #dc2626;

  color: white;

  border: none;

  padding: 14px 24px;

  border-radius: 12px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s ease;
}

.primary-btn:hover {

  background: #b91c1c;
}

.secondary-btn {

  background: #e2e8f0;

  border: none;

  padding: 14px 24px;

  border-radius: 12px;

  cursor: pointer;

  font-weight: 600;
}

/* ================= TABLE ================= */

.table-container {

  width: 100%;

  overflow-x: auto;

  margin-top: 30px;

  border-radius: 18px;
}

.case-table {

  width: 100%;

  border-collapse: collapse;

  background: white;
}

.case-table th {

  background: #f1f5f9;

  color: #334155;

  padding: 16px;

  text-align: left;
}

.case-table td {

  padding: 16px;

  border-bottom:
    1px solid #e2e8f0;
}

/* ================= MODAL ================= */

.modal-backdrop {

  position: fixed;

  inset: 0;

  background:
    rgba(0,0,0,0.45);

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 10000;
}

.modal-card {

  background: white;

  width: 90%;

  max-width: 1000px;

  max-height: 90vh;

  overflow-y: auto;

  border-radius: 24px;

  padding: 28px;
}

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

.chatbot-container {

  position: fixed;

  bottom: 20px;

  right: 20px;

  width: 360px;

  height: 520px;

  background: white;

  border-radius: 22px;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.16);

  overflow: hidden;

  display: flex;

  flex-direction: column;

  z-index: 10000;
}

.chatbot-toggle {

  position: fixed;

  bottom: 20px;

  right: 20px;

  background: #dc2626;

  color: white;

  border: none;

  padding: 16px 24px;

  border-radius: 999px;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  z-index: 9999;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.22);
}

.chatbot-header {

  background: #dc2626;

  color: white;

  padding: 18px 22px;

  font-size: 18px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 10px;
}

.chatbot-close {

  margin-left: auto;

  background: transparent;

  border: none;

  color: white;

  font-size: 20px;

  cursor: pointer;
}

.chatbot-body {

  flex: 1;

  padding: 18px;

  overflow-y: auto;

  background: #f8fafc;

  display: flex;

  flex-direction: column;

  gap: 14px;
}

.bot-message {

  align-self: flex-start;

  max-width: 85%;

  background: white;

  color: #0f172a;

  padding: 12px 14px;

  border-radius: 14px;

  line-height: 1.6;

  font-size: 14px;

  box-shadow:
    0 2px 8px rgba(0,0,0,0.05);
}

.user-message {

  align-self: flex-end;

  max-width: 85%;

  background: #dc2626;

  color: white;

  padding: 12px 14px;

  border-radius: 14px;

  line-height: 1.6;

  font-size: 14px;
}

.chatbot-input {

  display: flex;

  border-top:
    1px solid #e2e8f0;

  background: white;
}

.chatbot-input input {

  flex: 1;

  border: none;

  padding: 16px;

  font-size: 14px;

  outline: none;
}

.chatbot-input button {

  border: none;

  background: #dc2626;

  color: white;

  padding: 0 22px;

  cursor: pointer;

  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .form-grid {

    grid-template-columns: 1fr;
  }

  .stats-grid {

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

@media (max-width: 768px) {

  .dashboard-main {

    padding: 16px;
  }

  .stats-grid,
  .mini-stats {

    grid-template-columns: 1fr;
  }

  .chatbot-container {

    width: calc(100% - 20px);

    right: 10px;

    left: 10px;

    bottom: 10px;

    height: 75vh;
  }
}
.chart-wrapper {

  width: 100%;
  height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-card h3 {

  font-size: 22px;

  margin-bottom: 20px;

  color: #1e293b;
}/* ===== TOPBAR ===== */
.topbar {
  width: 100%;

  background: white;

  padding: 22px 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid #e2e8f0;

  position: sticky;
  top: 0;

  z-index: 500;
}


/* ===== LEFT SECTION ===== */

.topbar-left h1 {
  font-size: 30px;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 5px;
}

.topbar-left p {
  color: #64748b;
  font-size: 15px;
}

/* ===== RIGHT SECTION ===== */

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===== SEARCH BOX ===== */

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #f8fafc;

  padding: 12px 16px;

  border-radius: 12px;

  border: 1px solid #e2e8f0;

  min-width: 260px;
}

.search-box svg {
  color: #64748b;
}

.search-box input {
  border: none;
  outline: none;

  background: transparent;

  width: 100%;

  font-size: 15px;
  color: #0f172a;
}

/* ===== ICON BOX ===== */

.topbar-icon {
  width: 48px;
  height: 48px;

  border-radius: 12px;

  background: #f8fafc;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  cursor: pointer;

  transition: 0.3s ease;
}

.topbar-icon:hover {
  background: #eef2ff;
}

.topbar-icon svg {
  color: #0f172a;
}

/* ===== NOTIFICATION DOT ===== */

.notification-dot {
  width: 10px;
  height: 10px;

  background: #dc2626;

  border-radius: 50%;

  position: absolute;
  top: 12px;
  right: 12px;
}

/* ===== PROFILE BOX ===== */

.profile-box {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #f8fafc;

  padding: 10px 14px;

  border-radius: 14px;

  cursor: pointer;

  transition: 0.3s ease;
}

.profile-box:hover {
  background: #eef2ff;
}

.profile-box svg {
  color: #0f172a;
}

/* ===== PROFILE INFO ===== */

.profile-info h4 {
  font-size: 15px;
  font-weight: 600;

  color: #0f172a;
}

.profile-info p {
  font-size: 13px;
  color: #64748b;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .topbar {
    padding: 20px;
  }

  .search-box {
    min-width: 200px;
  }

  .topbar-left h1 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .search-box {
    width: 100%;
  }
}/* ======================================================
   YOURCASE AI CHATBOT
====================================================== */

.chatbot-container {
  position: fixed;

  bottom: 20px;
  right: 20px;

  width: 360px;
  height: 520px;

  background: white;

  border-radius: 18px;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.15);

  overflow: hidden;

  display: flex;
  flex-direction: column;

  z-index: 9999;
}

/* ===== HEADER ===== */

.chatbot-header {
  background: #dc2626;

  color: white;

  padding: 16px 20px;

  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== BODY ===== */

.chatbot-body {
  flex: 1;

  padding: 18px;

  overflow-y: auto;

  background: #f8fafc;

  display: flex;
  flex-direction: column;

  gap: 14px;
}

/* ===== BOT MESSAGE ===== */

.bot-message {
  align-self: flex-start;

  max-width: 85%;

  background: white;

  color: #0f172a;

  padding: 12px 14px;

  border-radius: 14px;

  line-height: 1.6;

  font-size: 14px;

  box-shadow:
    0 2px 8px rgba(0,0,0,0.05);
}

/* ===== USER MESSAGE ===== */

.user-message {
  align-self: flex-end;

  max-width: 85%;

  background: #dc2626;

  color: white;

  padding: 12px 14px;

  border-radius: 14px;

  line-height: 1.6;

  font-size: 14px;
}

/* ===== INPUT SECTION ===== */

.chatbot-input {
  display: flex;

  border-top:
    1px solid #e2e8f0;

  background: white;
}

/* ===== INPUT ===== */

.chatbot-input input {
  flex: 1;

  border: none;

  padding: 16px;

  font-size: 14px;

  outline: none;
}

/* ===== BUTTON ===== */

.chatbot-input button {
  border: none;

  background: #dc2626;

  color: white;

  padding: 0 22px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s ease;
}

.chatbot-input button:hover {
  background: #b91c1c;
}

/* ===== SCROLLBAR ===== */

.chatbot-body::-webkit-scrollbar {
  width: 6px;
}

.chatbot-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 20px;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .chatbot-container {
    width: calc(100% - 20px);

    right: 10px;
    left: 10px;

    bottom: 10px;

    height: 75vh;
  }
}.admin-page {
  width: 100%;
  min-height: 100vh;
  padding: 24px;
  background: #f5f7fb;
  box-sizing: border-box;
}

/* ===== HEADER ===== */

.admin-header {
  margin-bottom: 30px;
}

.admin-header h1 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 10px;
}

.admin-header p {
  color: #64748b;
  font-size: 15px;
}

/* ===== TABLE WRAPPER ===== */

.admin-table-wrapper {
  width: 100%;
  overflow-x: auto;

  background: white;
  border-radius: 18px;

  padding: 20px;

  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* ===== TABLE ===== */

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

/* ===== TABLE HEAD ===== */

.admin-table thead {
  background: #f8fafc;
}

.admin-table th {
  padding: 16px;
  text-align: left;

  border-bottom: 1px solid #e2e8f0;

  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

/* ===== TABLE BODY ===== */

.admin-table td {
  padding: 16px;

  border-bottom: 1px solid #f1f5f9;

  color: #475569;
  font-size: 14px;
}

.admin-table tbody tr:hover {
  background: #f8fafc;
}

/* ===== ROLE BADGE ===== */

.role-badge {
  display: inline-block;

  background: #dbeafe;
  color: #1d4ed8;

  padding: 6px 12px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 600;
}

/* ===== ACTIONS ===== */

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */

.access-btn {
  background: #dc2626;
  color: white;

  border: none;

  padding: 10px 16px;

  border-radius: 8px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s ease;
}

.access-btn:hover {
  background: #b91c1c;
}

.delete-btn {
  background: #0f172a;
  color: white;

  border: none;

  padding: 10px 16px;

  border-radius: 8px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s ease;
}

.delete-btn:hover {
  background: #1e293b;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .admin-page {
    padding: 16px;
  }

  .admin-header h1 {
    font-size: 28px;
  }

}.sidebar {
  width: 240px;
  height: 100vh;

  position: fixed;
  left: 0;
  top: 0;

  background: #020b2d;

  display: flex;
  flex-direction: column;

  overflow-y: auto;

  z-index: 1000;
}

/* LOGO */

.sidebar-logo {
  padding: 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo h2 {
  font-size: 30px;
  color: white;
  margin-bottom: 8px;
}

.sidebar-logo p {
  color: #cbd5e1;
  font-size: 15px;
}

/* MENU TITLE */

.menu-title {
  color: #64748b;
  font-size: 13px;

  padding: 24px 16px 12px;
}

/* NAV */

.sidebar-nav {
  display: flex;
  flex-direction: column;

  gap: 12px;

  padding: 0 16px;

  flex: 1;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

  color: #cbd5e1;

  padding: 14px 16px;

  border-radius: 12px;

  transition: 0.3s ease;
}

.sidebar-nav a:hover {
  background: #dc2626;
  color: white;
}

.sidebar-nav a.active {
  background: #dc2626;
  color: white;
}

/* LOGOUT */

.sidebar-bottom {
  padding: 16px;
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  width: 100%;

  background: #dc2626;
  color: white;

  padding: 14px;

  border-radius: 12px;

  text-decoration: none;

  font-weight: 600;
}

.logout-btn:hover {
  background: #b91c1c;
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f7fb;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.app-layout {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  margin-left: 260px;
  width: calc(100% - 260px);
  min-height: 100vh;
  background: #f5f7fb;
}

/* MOBILE */

@media (max-width: 768px) {

  .main-content {
    margin-left: 0;
    width: 100%;
  }

}/*
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.fixed {
  position: fixed;
}
.top-0 {
  top: 0px;
}
.z-50 {
  z-index: 50;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.hidden {
  display: none;
}
.h-10 {
  height: 2.5rem;
}
.h-4 {
  height: 1rem;
}
.h-8 {
  height: 2rem;
}
.h-\[52px\] {
  height: 52px;
}
.min-h-\[86px\] {
  min-height: 86px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-10 {
  width: 2.5rem;
}
.w-4 {
  width: 1rem;
}
.w-8 {
  width: 2rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-\[1200px\] {
  max-width: 1200px;
}
.max-w-\[170px\] {
  max-width: 170px;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-md {
  border-radius: 0.375rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-\[\#002FA7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 47 167 / var(--tw-bg-opacity));
}
.bg-\[\#F5F5F0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 240 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-8 {
  padding: 2rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-center {
  text-align: center;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}
.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

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

/* ===== BODY ===== */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8fafc;  /* light clean background */
  color: #1e293b;             /* dark text */
  line-height: 1.5;
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== LINKS ===== */
a {
  text-decoration: none;
}

/* ===== BUTTON RESET ===== */
button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== OPTIONAL: SCROLL SMOOTH ===== */
html {
  scroll-behavior: smooth;
}
.hover\:bg-red-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
@media (min-width: 640px) {

  .sm\:p-12 {
    padding: 3rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) {

  .md\:flex {
    display: flex;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[58px\] {
    height: 58px;
  }

  .md\:max-w-\[210px\] {
    max-width: 210px;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 1024px) {

  .lg\:h-\[66px\] {
    height: 66px;
  }

  .lg\:max-w-\[250px\] {
    max-width: 250px;
  }

  .lg\:gap-6 {
    gap: 1.5rem;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}