@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --success: #10b981;
  --bg-color: #ffffff;
  --bg-secondary: #f8fafc;
  --text-main: #64748b;
  --text-heading: #0f172a;
  --border-color: #e2e8f0;
  --card-bg: #ffffff;
  --bg-alt: #f8fafc;
  --nav-bg: #ffffff;
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
  --primary: #3b82f6;
  --primary-hover: #60a5fa;
  --bg-color: #0f172a;
  --bg-secondary: #1e293b;
  --text-main: #94a3b8;
  --text-heading: #f1f5f9;
  --border-color: #334155;
  --card-bg: #1e293b;
  --bg-alt: #0f172a;
  --nav-bg: #1e293b;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

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

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

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background-color: var(--bg-color);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

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

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

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-heading);
  transition: color 0.3s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

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

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-color);
}

.hero h1 {
  font-size: 56px;
  max-width: 800px;
  margin: 0 auto 20px;
  letter-spacing: -1.5px;
}

.hero h1 .text-blue {
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* How It Works (Timeline) */
.how-it-works {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-secondary);
}
.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--success);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
  box-shadow: 0 0 0 5px var(--bg-secondary);
}

.timeline-step h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 13px;
  color: var(--text-main);
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--bg-color);
}

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-item i {
  color: var(--text-heading);
  font-size: 20px;
  margin-top: 5px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 15px;
}

.features-image {
  position: relative;
  height: 500px;
}
.features-image img {
  position: absolute;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 80%;
  transition: transform 0.3s;
}
.features-image img:hover {
  transform: translateY(-5px);
}
.img-back {
  top: 50px;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}
.img-front {
  top: 0;
  right: 0;
  z-index: 2;
}

/* Plag & AI Removal */
.removal-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.removal-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.removal-content p {
  font-size: 16px;
  margin-bottom: 30px;
}
.removal-list {
  list-style: none;
}
.removal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-heading);
}
.removal-list li i {
  color: var(--primary);
}

.removal-mockup {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 20px;
}

.mockup-doc {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
}
.mockup-doc-header {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}
.mockup-doc-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}
.mockup-doc-header span:nth-child(1) { background: #ef4444; }
.mockup-doc-header span:nth-child(2) { background: #f59e0b; }
.mockup-doc-header span:nth-child(3) { background: #10b981; }

.mock-text {
  background: #fee2e2;
  color: #b91c1c;
  padding: 10px;
  border-radius: 4px;
  font-size: 10px;
  font-family: monospace;
  margin-bottom: 10px;
}

.mockup-stats {
  width: 150px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-box {
  text-align: center;
}
.stat-box h5 {
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--text-main);
}
.circle-chart {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 800;
  font-size: 20px;
}
.circle-red {
  border: 8px solid #ef4444;
  color: #ef4444;
}
.circle-orange {
  border: 8px solid #f97316;
  color: #f97316;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 80px 0 30px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 50px auto;
}
.footer-col-about .footer-desc {
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 320px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.footer-logo span {
  color: #3b82f6;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  background: rgba(255,255,255,0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  font-size: 16px;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-credits {
  font-size: 14px;
}

.footer-badges {
  display: flex;
  gap: 20px;
}
.footer-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--text-heading);
}
.footer-badges span i {
  color: var(--primary);
}

/* WhatsApp Floating Widget */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.wa-main-btn {
    width: 60px;
    height: 60px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.3s;
}
.wa-main-btn:hover {
    transform: scale(1.1);
}
.wa-main-btn svg {
    fill: white;
    width: 32px;
    height: 32px;
}
.wa-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s;
}
.wa-widget:hover .wa-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.wa-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-heading);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}
.wa-item:hover {
    background: var(--bg-secondary);
}
.wa-item i {
    font-size: 18px;
    margin-right: 8px;
    color: var(--success);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

.timeline-icon {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}
.timeline-step:hover .timeline-icon {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 0 0 8px var(--bg-secondary), 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

.feature-item {
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateX(10px);
}
.feature-item i {
  transition: color 0.3s;
}
.feature-item:hover i {
  color: var(--primary);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}
.pricing-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.pricing-header p {
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-inline-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-main);
}
.pricing-inline-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-toggles {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  gap: 15px;
}

.toggle-group {
  display: inline-flex;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 5px;
}

.toggle-btn {
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-btn.active {
  background: var(--bg-color); /* We'll use a slightly different background or primary */
  color: var(--text-heading);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .toggle-btn.active {
  background: #2d3748; /* Dark mode active tab background */
  color: #fff;
}

.pricing-carousel-container {
  display: none;
  width: 100%;
  animation: fadeIn 0.4s ease;
}

.pricing-carousel-container.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
}

.classic-pricing-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 30px 10px; /* space for box-shadow */
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}
.classic-pricing-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-heading);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: absolute;
  z-index: 10;
  transition: all 0.3s;
}
.carousel-btn:hover {
  background: #233876;
  color: #fff;
  border-color: #233876;
}
.prev-btn { left: -22px; }
.next-btn { right: -22px; }

@media (max-width: 1050px) {
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
}

.classic-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 30px;
  width: 100%;
  max-width: 300px;
  flex: 0 0 300px;
  scroll-snap-align: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

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

.classic-card.popular {
  background: #233876;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(35, 56, 118, 0.3);
  transform: scale(1.05);
  z-index: 2;
}
.classic-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

@media (max-width: 768px) {
  .classic-card.popular {
    transform: none;
  }
  .classic-card.popular:hover {
    transform: translateY(-5px);
  }
}

.classic-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.classic-card.popular .classic-title {
  color: #ffffff;
}

.classic-divider {
  width: 100%;
  height: 2px;
  background: var(--border-color);
  margin-bottom: 30px;
  border: none;
}

.classic-card.popular .classic-divider {
  background: rgba(255,255,255,0.1);
}

.classic-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  text-align: left;
  flex-grow: 1;
  width: fit-content;
}

.classic-features li {
  font-size: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--text-main);
}

.classic-card.popular .classic-features li {
  color: #e2e8f0;
}

.classic-features li i {
  color: #4ade80;
  font-size: 14px;
  margin-right: 12px;
}

.classic-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.classic-card.popular .classic-price {
  color: #ffffff;
}

.classic-price span {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 8px;
}

.classic-card.popular .classic-price span {
  color: rgba(255,255,255,0.6);
}

.classic-btn {
  background: #4ade80;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  width: 100%;
  display: inline-block;
}

.classic-btn:hover {
  background: #22c55e;
  color: #ffffff;
}

.pricing-benefits {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-benefits h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 22px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.benefit-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--text-heading);
}
.benefit-item i {
  color: var(--success);
  margin-right: 10px;
  font-size: 18px;
}

/* -------------------------------------
   RESPONSIVE DESIGN (MOBILE & TABLET)
--------------------------------------- */

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

.nav-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 999;
  border-top: 1px solid var(--border-color);
}
.nav-container.active {
  display: flex;
}
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 15px;
}
.header-actions {
  display: flex;
  margin-top: 15px;
  flex-direction: column;
  width: 100%;
}
.header-actions .btn {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-heading);
  cursor: pointer;
  z-index: 1000;
}

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

/* Adjust Carousel Arrows on Mobile */
@media (max-width: 768px) {
  .pricing-carousel-wrapper {
    padding: 0 20px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .prev-btn { left: -5px; }
  .next-btn { right: -5px; }
  
  .classic-card {
    max-width: 280px;
    flex: 0 0 280px;
    padding: 30px 20px;
  }
}

/* -------------------------------------
   NEW SECTIONS: Professor View, Full Report, Trust Grid
--------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-main);
  max-width: 700px;
  margin: 0 auto;
}

.info-cards-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.info-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}
.icon-blue { background: #e0e7ff; color: #4f46e5; }
.icon-purple { background: #f3e8ff; color: #9333ea; }
.icon-green { background: #dcfce7; color: #16a34a; }

.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-heading);
}
.info-card p {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}

/* Full Report Cards */
.report-cards-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.report-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}
.report-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.report-card-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
}
.report-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.report-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.report-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-heading);
  line-height: 1.5;
}
.report-list li i {
  color: #16a34a; /* Green check */
  font-size: 18px;
  margin-top: 3px;
}

/* Trust Grid */
.trust-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  gap: 20px;
}
.trust-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.trust-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.trust-content p {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}


/* Layout Responsive Fixes */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  
  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .timeline::before {
    display: none; /* Hide the horizontal line on mobile */
  }
  .timeline-step {
    width: 100%;
    max-width: 300px;
  }
  
  .features-grid, .removal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-list {
    text-align: left; /* Keep feature text left-aligned */
  }
  
  .report-cards-2-col, .trust-grid-2x2, .info-cards-3-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* Custom Header Classes */
.header-right-always {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dark-mode-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-heading);
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
}
.get-started-btn {
  background: var(--text-heading);
  color: var(--bg-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.mobile-menu-btn {
  display: block;
  position: static;
  background: transparent;
  border: none;
  color: var(--text-heading);
  margin-left: 5px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .header-right-always {
    gap: 6px;
  }
  .get-started-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .dark-mode-toggle-btn {
    font-size: 16px;
    padding: 2px;
  }
  .mobile-menu-btn {
    margin-left: 2px;
    font-size: 18px;
  }
}
