:root {
  --lp-primary: #1a3a6c;
  --lp-secondary: #f13a11;
  --lp-bg-dark: #0f172a;
  --lp-bg-light: #f8fafc;
  --lp-glass: rgba(255, 255, 255, 0.1);
  --lp-glass-border: rgba(255, 255, 255, 0.2);
  --lp-accent: #38bdf8;
}

html,
body {
  font-family: "Inter", sans-serif;
  color: #334155;
  background-color: var(--lp-bg-light);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.lp-hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--lp-primary) 0%, #0c1e3a 100%);
  color: white;
  overflow: hidden;
}

.lp-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--lp-bg-light);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.lp-headline {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: white;
}

.lp-subheadline {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.lp-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lp-btn-primary {
  background: var(--lp-secondary);
  color: white;
  border: none;
  box-shadow: 0 10px 25px rgba(241, 58, 17, 0.3);
}

.lp-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(241, 58, 17, 0.5);
  color: white;
}

.lp-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.lp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.lp-glass-card {
  background: var(--lp-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lp-glass-border);
  border-radius: 20px;
  padding: 2rem;
}

.lp-section-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lp-primary);
  margin-bottom: 1.25rem;
  text-align: left;
  line-height: 1.3;
}

.lp-section-subtitle {
  text-align: left;
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 2.5rem;
}

.lp-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lp-list-icon {
  background: rgba(241, 58, 17, 0.1);
  color: var(--lp-secondary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.8rem;
}

.lp-table {
  border-radius: 20px;
  overflow-x: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  -webkit-overflow-scrolling: touch;
}

.lp-table table {
  min-width: 700px; /* Ensure table doesn't squash on mobile */
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .lp-table table {
    min-width: 600px;
  }
}

.lp-table thead th {
  background: var(--lp-primary);
  color: white;
  padding: 20px;
  border: none;
  font-weight: 600;
}

.lp-table tbody td {
  padding: 20px;
  vertical-align: middle;
}

.lp-comparison-highlight {
  background: rgba(56, 189, 248, 0.05);
  font-weight: 600;
  color: var(--lp-primary);
}

.blue-border-box {
  background: #f8fafc;
  border-left: 4px solid var(--lp-primary);
  padding: 15px 20px 12px;
  margin: 10px 0;
  border-radius: 0 12px 12px 0;
  transition: all 0.3s ease;
}

.blue-border-box:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.blue-border-box h5,
.blue-border-box h6 {
  color: var(--lp-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.blue-border-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.blue-border-box li {
  padding-left: 0;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #000000;
}

.lp-form-container {
  background: white;
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.lp-form-control {
  border: 2px solid #e2e8f0;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.lp-form-control:focus {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
  outline: none;
}

.lp-footer {
  background: var(--lp-bg-dark);
  color: white;
  padding: 80px 0 40px;
}

.lp-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--lp-secondary);
  display: block;
}

.lp-stat-label {
  font-size: 1.1rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .lp-hero {
    padding: 100px 0 120px;
    text-align: left;
  }

  .lp-headline {
    font-size: 2.75rem;
  }

  .lp-subheadline {
    font-size: 1.25rem;
  }

  .lp-hero .d-flex {
    justify-content: flex-start;
  }

  .lp-stat-number {
    font-size: 2.5rem;
  }

  .lp-section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .lp-hero {
    padding: 120px 0 80px; /* Increased top padding to clear fixed navbar */
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lp-headline {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
  }

  .lp-subheadline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .lp-section-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }

  .lp-section-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
    color: #475569 !important;
    text-align: left !important;
  }

  .blue-border-box {
    padding: 15px !important;
    margin: 5px 0 15px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid #e2e8f0 !important;
    border-left: 5px solid var(--lp-primary) !important;
  }

  .blue-border-box ul li {
    font-size: 0.92rem !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    line-height: 1.4 !important;
    color: #1e293b;
  }

  .blue-border-box ul li i {
    font-size: 0.85rem !important;
    margin-top: 4px !important;
    color: #1a3a6c !important;
    width: 16px;
    text-align: center;
  }

  .lp-glass-card {
    padding: 15px !important;
    margin-top: 10px !important;
  }

  .lp-table thead th,
  .lp-table tbody td {
    padding: 10px 8px !important;
    font-size: 0.82rem !important;
  }

  .lp-btn {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    width: 100% !important;
    margin-bottom: 10px !important;
  }

  .lp-form-container {
    padding: 1.5rem;
  }

  .lp-hero img {
    max-height: 350px !important;
    margin-top: 30px;
  }

  .lp-stat-number {
    font-size: 1.8rem !important;
  }

  .lp-stat-label {
    font-size: 0.75rem !important;
    color: #94a3b8;
  }
}

@media (max-width: 480px) {
  .lp-headline {
    font-size: 1.4rem;
  }

  .lp-subheadline {
    font-size: 0.85rem;
  }
}
