
:root {
  --coral: #FF7E84;
  --coral-lt: #f9a99f;
  --teal: #4ecbba;
  --teal-dk: #38b2a3;
  --navy: #0f1c2e;
  --text: #2d3748;
  --muted: #718096;
  --bg-grad: linear-gradient(160deg, #e8f8f6 0%, #fff5f3 50%, #f7f0ff 100%);
}
* {
  box-sizing: border-box;
}



.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.navbar-brand {
  font-family: "Albert Sans", sans-serif !important;
  font-weight: 800;
  font-size: 1.35rem;
}
.brand-career {
  color: var(--coral);
}
.brand-sol {
  color: var(--teal);
}
.nav-link {
  font-weight: 600;
  color: var(--text) !important;
  font-size: 0.92rem;
}
.nav-link:hover {
  color: var(--coral) !important;
}
.btn-getapp {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  padding: 8px 20px;
  font-size: 0.88rem;
}
.btn-getapp:hover {
  background: #1a2d44;
  color: #fff;
}
.btn-login {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
  border-radius: 25px;
  font-weight: 700;
  padding: 6px 20px;
  font-size: 0.88rem;
}
.btn-login:hover {
  background: var(--coral);
  color: #fff;
}

.hero {
  background: var(--bg-grad);
  padding: 110px 0 80px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
.hero h1 span {
  color: var(--coral);
}
.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  /* max-width: 580px; */
  margin: 0 auto 30px;
}
.hero p a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.hero p strong {
  color: var(--text);
}
.btn-coral {
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1rem;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-coral:hover {
  background: #e05448;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-coral {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
  border-radius: 30px;
  font-weight: 700;
  padding: 12px 32px;
  font-size: 1rem;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-outline-coral:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}

.label-teal {
  color: var(--teal)!important;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem!important;
   text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
}
.section-title span {
  color: var(--coral);
}


.mistakes-section { 
  padding: 80px 0;
}
.mistake-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.2s;
}
.mistake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.mistake-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.icon-purple {
  background: #ede9ff;
  color: #7c5fbf;
}
.icon-orange {
  background: #fff1e0;
  color: #d97706;
}
.icon-green {
  background: #e6f9f5;
  color: #10b981;
}
.icon-pink {
  background: #fee8e6;
  color: #ef4444;
}
.mistake-card p {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
.info-bar {
  background: #0c13270f;
  border-radius: 14px;
  padding: 20px 32px;
  text-align: center;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.97rem;
}

.partner-section {
  padding: 80px 0;
}
.mockup-wrap {
  background: linear-gradient(135deg, #fff0ee, #f0fbf9);
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
}
.mockup-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.features-section {
  background: var(--bg-grad);
  padding: 80px 0;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  height: 100%;
}
.feature-card h5 {
  color: var(--teal);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}
.feature-table {
  font-size: 0.82rem;
  border-radius: 12px;
  overflow: hidden;
}
.feature-table th {
  background: #f8f9fa;
}

.stats-section {
  padding: 60px 0;
}
.stat-block {
  text-align: center;
}
.stat-block h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  margin: 0;
}
.stat-block p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 4px 0 0;
}
.stat-divider {
  border-left: 2px solid #eee;
}

.testimonials-section {
      background: var(--bg-grad);
  padding: 80px 0;
}
.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.testi-card .stars {
  color: #fbbf24;
  font-size: 1.1rem;
}
.testi-card .name {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.97rem;
}
.testi-card .role {
  color: var(--coral);
  font-size: 0.82rem;
}
.testi-rating {
  text-align: center;
}
.testi-rating h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
}
.quote-card {
  
  border-radius: 20px;
  padding: 28px;
  font-style: italic;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
}

.pricing-section { 
  padding: 80px 0;
}
.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border: 2px solid var(--coral);
}
.price-tag {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-plan {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2px 0;
}
.price-scope {
  background: linear-gradient(90deg, var(--coral), var(--coral-lt));
  color: #fff;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin: 10px 0;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
}
.price-amount sup {
  font-size: 1.1rem;
  vertical-align: super;
}
.price-valid {
  color: var(--muted);
  font-size: 0.8rem;
}
.price-details-link {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.price-feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.price-feature-list li {
  font-size: 0.83rem;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.price-feature-list li i {
  color: var(--coral);
  margin-top: 2px;
  flex-shrink: 0;
}
.price-feature-list li i.text-muted {
  color: #ccc;
}
.btn-explore {
  width: 100%;
  border-radius: 25px;
  font-weight: 700;
  padding: 12px;
  margin-top: 20px;
  font-size: 0.92rem;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-explore-coral {
  background: var(--coral);
  color: #fff;
  border: none;
}
.btn-explore-coral:hover {
  background: #e05448;
  color: #fff;
}
.btn-explore-purple {
  background: #6b5ce7;
  color: #fff;
  border: none;
}
.btn-explore-purple:hover {
  background: #5a4dd6;
  color: #fff;
}
.btn-explore-navy {
  background: var(--navy);
  color: #fff;
  border: none;
}
.btn-explore-navy:hover {
  background: #1a2d44;
  color: #fff;
}
.limited-bar {
  background: #ffe4e4;
  border-radius: 12px;
  padding: 14px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
.limited-bar span {
  color: var(--coral);
}

.cta-section {
  background: url('../images/ctas.webp') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  height:100vh
}
.h80vh {
  height: 80vh;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--navy);
}
.cta-section h2 span {
  color: var(--coral); 
  text-decoration-color: var(--coral-lt);
}
.trusted-text {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
.trusted-text strong {
  color: var(--navy);
}

footer {
  background: var(--navy);
  color: #cbd5e0;
  padding: 60px 0 30px;
}
.footer-brand {
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}
.footer-brand .career {
  color: var(--coral);
}
.footer-brand .sol {
  color: var(--teal);
}
footer p {
  font-size: 0.85rem;
  color: #718096;
}
footer h6 {
  color: #e2e8f0;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
footer a {
  color: #718096;
  text-decoration: none;
  font-size: 0.87rem;
  display: block;
  margin-bottom: 6px;
}
footer a:hover {
  color: var(--coral);
}
.store-badge {
  background: #1a2a3d;
  border-radius: 10px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 8px;
  margin-top: 10px;
}
.store-badge i {
  font-size: 1.4rem;
}
.footer-bottom {
  border-top: 1px solid #1e2d40;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: #4a5568;
}

.section-pad {
  padding: 80px 0;
}

.text-coral {
  color: var(--coral) !important;
}
