/* ==================================================
   TeamTask replacement stylesheet
================================================== */

:root {
  --primary: #5b5bf7;
  --primary-2: #2563eb;
  --primary-dark: #4338ca;
  --navy: #020d3a;
  --navy-2: #03104d;
  --ink: #0f172a;
  --text: #18181b;
  --muted: #64748b;
  --muted-2: #71717a;
  --line: #e5e7eb;
  --soft: #eef2ff;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 40px 90px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a,
button {
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

a {
  text-decoration: none;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* ==================================================
   Shared section elements
================================================== */

.section-header,
.section-heading,
.workflow-header,
.dashboard-header {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.section-badge,
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #dbe4ff;
  border-radius: 999px;
  color: var(--primary);
  background: var(--soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.section-badge i,
.about-badge i {
  font-size: 14px;
}

.section-title,
.section-heading h2,
.section-header h2,
.workflow-header h2,
.dashboard-header h2,
.why-section h2,
.contact-title {
  color: var(--ink);
  /* font-size: clamp(2.4rem, 5vw, 4rem); */
  font-size: 38px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-title span,
.section-heading h2 span,
.section-header h2 span,
.workflow-header h2 span,
.dashboard-header h2 span,
.why-section h2 span,
.contact-title span {
  color: var(--primary);
}

.section-heading h2 span,
.section-title span,
.workflow-header h2 span,
.contact-title span {
  display: block;
}

.section-heading p,
.section-description,
.section-header p,
.workflow-header p,
.dashboard-header p,
.contact-desc {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.section-description,
.section-header p,
.workflow-header p,
.dashboard-header p {
  margin-top: 20px;
}

/* ==================================================
   Navbar and hero
================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 13, 58, 0.94) 0%, rgba(2, 13, 58, 0.78) 45%, rgba(2, 13, 58, 0.46) 100%),
    url("../img/hero-bg.png") center center / cover no-repeat;
}

.navbar {
  position: relative;
  z-index: 20;
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 2rem;
  font-weight: 800;
}

.nav-link {
  position: relative;
  margin: 0 10px;
  padding: 8px 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 110px;
}

.hero-subtitle {
  margin-bottom: 20px;
  color: #cfd5ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.04;
}

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

.hero-text {
  max-width: 640px;
  margin: 28px 0;
  color: #cfd5ff;
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-section .col-lg-7 > .img-fluid {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 56px 0 80px;
  border-radius: 28px;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.32));
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.btn-arrow {
  border: 1px solid transparent;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(91, 91, 247, 0.24);
}

.btn-arrow:hover {
  color: var(--white);
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-arrow:hover i {
  transform: translateX(6px);
}

.btn-fill {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.btn-fill span {
  position: relative;
  z-index: 2;
}

.btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--primary);
  transition: width 0.35s ease;
}

.btn-fill:hover {
  color: var(--white);
  border-color: var(--primary);
}

.btn-fill:hover::before {
  width: 100%;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  color: inherit;
  line-height: 1.65;
}

.feature-list li::before {
  content: "\F26A";
  position: absolute;
  top: 1px;
  left: 0;
  color: #22c55e;
  font-family: "bootstrap-icons";
  font-size: 17px;
}

/* Hidden alternate hero mockup support */

.hero-visual {
  position: relative;
  min-height: 650px;
}

.dashboard-card {
  position: absolute;
  top: 120px;
  right: 0;
  width: min(600px, 100%);
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.dashboard-card img,
.mobile-mockup img {
  display: block;
  width: 100%;
}

.mobile-mockup {
  position: absolute;
  top: 150px;
  left: 120px;
  z-index: 2;
  width: 240px;
}

.location-tag {
  position: absolute;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--white);
  background: #4d6bff;
  font-size: 13px;
}

.tag-1 {
  top: 80px;
  left: 180px;
}
.tag-2 {
  top: 180px;
  left: 70px;
}
.tag-3 {
  top: 300px;
  left: 110px;
}
.tag-4 {
  bottom: 130px;
  left: 90px;
}

.glow-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #21ffd5;
  box-shadow: 0 0 30px #21ffd5;
}

.pin-1 {
  top: 120px;
  left: 340px;
}
.pin-2 {
  bottom: 90px;
  left: 280px;
}

/* ==================================================
   Trusted and about
================================================== */

.trusted-section,
.about-section,
.solutions-section,
.workflow-section,
.dashboard-section,
.industries-section,
.why-section,
.testimonial-section,
.pricing-section,
.contact-section {
  padding: 110px 0;
  background: var(--white);
}

.trusted-section {
  background: radial-gradient(circle at top, rgba(91, 91, 247, 0.07), transparent 34%), var(--white);
}

.stat-card,
.industry-card,
.feature-card,
.workflow-card,
.pricing-card,
.testimonial-card,
.contact-form-card,
.next-box {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: all 0.1s ease-in;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 24px;
  border-radius: 18px;
}

.stat-card:hover,
.industry-card:hover,
.feature-card:hover,
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 91, 247, 0.45);
  box-shadow: var(--shadow-sm);
}

.stat-icon,
.feature-icon,
.step-icon,
.why-icon,
.contact-icon,
.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--soft);
}

.stat-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 800;
}

.stat-card p {
  margin: 0;
  color: var(--muted-2);
}

.feature-pill {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.feature-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.trusted-section .industry-card {
  min-height: 100%;
  padding: 34px 22px;
  border-radius: 22px;
  text-align: center;
}

.trusted-section .industry-card > i {
  color: var(--primary);
  font-size: 42px;
}

.trusted-section .industry-card h4 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.trusted-section .industry-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.7;
}

.mobile-wrapper img {
  max-width: 320px;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.15));
}

.about-title {
  margin: 24px 0 26px;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
}

.about-text {
  margin-bottom: 22px;
  color: var(--muted-2);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
}

/* ==================================================
   Problem
================================================== */

.problem-section {
  padding: 120px 0;
  color: var(--white);
  background: radial-gradient(circle at 12% 15%, rgba(91, 91, 247, 0.16), transparent 30%), linear-gradient(135deg, var(--navy) 0%, #061548 100%);
}

.problem-section .section-badge,
.mobile-app-section .section-badge {
  border-color: rgba(91, 91, 247, 0.3);
  color: #a8b1ff;
  background: rgba(91, 91, 247, 0.13);
}

.problem-section .section-title,
.problem-section .problem-item h5 {
  color: var(--white);
}

.problem-section .section-title span {
  color: #8b8bff;
}

.section-desc {
  margin: 24px 0 40px;
  color: #b4bddb;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.problem-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.problem-icon {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  font-size: 18px;
}

.problem-item h5 {
  margin-bottom: 8px;
  font-weight: 800;
}

.problem-item p {
  margin: 0;
  color: #b4bddb;
  line-height: 1.7;
}

.comparison-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(12, 24, 77, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.comparison-header,
.comparison-row,
.status-group {
  display: flex;
  align-items: center;
}

.comparison-header {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.comparison-header h4 {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.comparison-labels {
  display: flex;
  gap: 28px;
  color: #9ca3af;
  font-size: 14px;
}

.comparison-row {
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.status-group {
  gap: 10px;
}

.status {
  min-width: 92px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.status.danger {
  color: #f87171;
  background: rgba(239, 68, 68, 0.14);
}

.status.success {
  color: #34d399;
  background: rgba(16, 185, 129, 0.14);
}

/* ==================================================
   Cards, workflow, app, dashboard
================================================== */

.feature-card {
  height: 100%;
  padding: 32px;
  border-radius: 24px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 16px;
}

.feature-icon i,
.step-icon i,
.industry-icon i,
.why-icon i,
.contact-icon i {
  font-size: 23px;
}

.feature-card h4 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.8;
}

.workflow-header {
  margin-bottom: 80px;
}

.workflow-row {
  margin-bottom: 80px;
}

.workflow-row:last-child {
  margin-bottom: 0;
}

.workflow-card {
  overflow: hidden;
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
}

.workflow-card img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.step-badge {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.step-content h3 {
  margin-bottom: 18px;
  color: var(--text);
  /* font-size: clamp(2rem, 4vw, 3rem); */
  font-size: 28px;
  font-weight: 700;
  line-height: 1.16;
}

.step-content p {
  margin-bottom: 24px;
  color: var(--muted-2);
  line-height: 1.8;
}

.step-content a {
  color: var(--primary);
  font-weight: 800;
}

.mobile-app-section {
  padding: 120px 0;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(91, 91, 247, 0.2), transparent 38%), linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}

.mobile-app-section .section-header {
  margin-bottom: 80px;
}

.mobile-app-section h2 {
  margin-top: 25px;
  color: var(--white);
  /* font-size: clamp(2.5rem, 5vw, 4rem); */
  font-size: 54px;
  font-weight: 600;
  line-height: 1.14;
}

.mobile-app-section h2 span {
  color: var(--primary);
}

.mobile-app-section p {
  margin-top: 20px;
  color: #a8b1d1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.phone-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.phone-item {
  position: relative;
}

.phone-item img {
  width: 250px;
  max-width: 100%;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.28));
}

.phone-label {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.store-buttons,
.cta-buttons,
.footer-social,
.certifications,
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
}

.store-buttons {
  justify-content: center;
  gap: 20px;
  margin-top: 58px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.store-btn:hover {
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(91, 91, 247, 0.22);
}

.store-btn i {
  font-size: 28px;
}

.store-btn small {
  display: block;
  color: #a8b1d1;
}

.store-btn strong {
  display: block;
  line-height: 1.2;
}

.dashboard-section {
  overflow: hidden;
}

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

.dashboard-showcase {
  position: relative;
  text-align: center;
}

.dashboard-showcase::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 91, 247, 0.18), transparent 70%);
  transform: translate(-50%, -50%);
}

.dashboard-showcase img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1150px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.dashboard-showcase:hover img {
  transform: translateY(-8px);
}

/* ==================================================
   Industries and why choose
================================================== */

.industries-section .industry-card {
  height: 100%;
  min-height: 260px;
  padding: 32px;
  border-radius: 28px;
}

.industry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.industry-badge {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.industries-section .industry-card h4 {
  margin-bottom: 14px;
  color: var(--ink);
  /* font-size: clamp(1.65rem, 3vw, 2.25rem); */
  font-size: 20px;
  font-weight: 600;
}

.industries-section .industry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.blue-card {
  border-color: #dbeafe;
}
.purple-card {
  border-color: #eadcff;
}
.green-card {
  border-color: #d1fae5;
}
.orange-card {
  border-color: #fed7aa;
}
.red-card {
  border-color: #fecaca;
}
.violet-card {
  border-color: #ddd6fe;
}

.blue-card .industry-icon,
.blue-card .industry-badge {
  color: #2563eb;
  background: #eff6ff;
}
.purple-card .industry-icon,
.purple-card .industry-badge {
  color: #8b5cf6;
  background: #f5f3ff;
}
.green-card .industry-icon,
.green-card .industry-badge {
  color: #10b981;
  background: #ecfdf5;
}
.orange-card .industry-icon,
.orange-card .industry-badge {
  color: #f97316;
  background: #fff7ed;
}
.red-card .industry-icon,
.red-card .industry-badge {
  color: #ef4444;
  background: #fef2f2;
}
.violet-card .industry-icon,
.violet-card .industry-badge {
  color: #7c3aed;
  background: #f5f3ff;
}

.why-section .section-header {
  max-width: 850px;
}

.why-visual {
  text-align: center;
}

.why-visual img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 28px 55px rgba(15, 23, 42, 0.12));
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.1s ease-in;
}

.why-item:hover {
  padding-left: 12px;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--soft);
  transition: all 0.3s ease-in;
}

.why-item:hover .why-icon {
  color: var(--white);
  background: var(--primary);
}

.why-number {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.why-item h4 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* ==================================================
   Testimonials and pricing
================================================== */

.testimonial-card {
  padding: 48px 38px;
  border-radius: 24px;
  text-align: center;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  color: #1e40af;
  background: #e2e8f0;
  font-size: 26px;
  font-weight: 850;
}

.testimonial-card h4 {
  margin: 20px 0 10px;
  font-size: 32px;
  font-weight: 800;
}

.designation {
  margin-bottom: 10px;
  color: var(--muted);
}

.company {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--primary-2);
  background: var(--soft);
  font-weight: 800;
}

.review {
  min-height: 120px;
  color: var(--muted);
  line-height: 1.8;
}

.rating {
  color: #f59e0b;
  font-size: 26px;
  letter-spacing: 4px;
}

.owl-item.center .testimonial-card {
  transform: scale(1.04);
  box-shadow: var(--shadow-sm);
}

.owl-item:not(.center) .testimonial-card {
  opacity: 0.72;
  transform: scale(0.92);
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary-2);
}

.pricing-card {
  height: 100%;
  padding: 35px;
  border-radius: 30px;
}

.pricing-card.featured {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, #08132f 0%, #13284f 100%);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.25);
}

.plan-name {
  display: block;
  margin-bottom: 20px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 15px;
}

.price-wrap h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
}

.price-wrap span {
  margin-bottom: 10px;
  color: #94a3b8;
}

.plan-desc {
  margin-bottom: 30px;
  color: var(--muted);
}

.featured .plan-desc,
.featured .feature-list li {
  color: #dbe4ff;
}

.btn-plan-outline,
.btn-plan-primary,
.btn-plan-purple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 800;
}

.btn-plan-outline {
  border: 2px solid var(--primary-2);
  color: var(--primary-2);
}

.btn-plan-outline:hover {
  color: var(--white);
  background: var(--primary-2);
}

.btn-plan-primary {
  color: var(--white);
  background: var(--primary-2);
}

.btn-plan-primary:hover,
.btn-plan-purple:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-plan-purple {
  color: var(--white);
  background: linear-gradient(90deg, #8b5cf6, #6d28d9);
}

.pricing-footer {
  margin-top: 50px;
  color: #94a3b8;
}

.pricing-footer a {
  color: var(--primary-2);
  font-weight: 800;
}

/* ==================================================
   Contact and footer
================================================== */

.contact-title {
  margin: 24px 0;
}

.contact-info {
  margin-bottom: 38px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--soft);
}

.contact-item span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.contact-item h6 {
  margin: 0;
  color: var(--ink);
  /* font-size: clamp(1.05rem, 2vw, 1.5rem); */
  font-size: 18px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.next-box {
  padding: 30px;
  border-color: #dbe4ff;
  border-radius: 24px;
  background: #f8faff;
}

.next-box h5 {
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 800;
}

.next-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-box li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: var(--muted);
}

.next-box li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary-2);
  font-weight: 900;
}

.contact-form-card {
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.contact-form-card h3 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 850;
}

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

.contact-form-card label {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 58px;
  border: 1px solid #dbe1ea;
  border-radius: 14px;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(91, 91, 247, 0.14);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.btn-demo-submit {
  width: 100%;
  padding: 18px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: #5250f3;
  font-size: 18px;
  font-weight: 800;
}

.btn-demo-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-demo-submit i {
  margin-right: 10px;
}

.footer-section {
  padding-top: 120px;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(91, 91, 247, 0.14), transparent 40%), linear-gradient(90deg, var(--navy), #010c30);
}

.footer-cta {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 16px;
}

.footer-cta h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.14;
}

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

.footer-cta p {
  max-width: 850px;
  margin: 25px auto;
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.cta-buttons {
  justify-content: center;
  gap: 20px;
  margin-top: 38px;
}

.btn-footer-primary,
.btn-footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 16px;
  color: var(--white);
  font-weight: 800;
}

.btn-footer-primary {
  background: #5250f3;
}

.btn-footer-primary:hover {
  color: var(--white);
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-footer-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.btn-footer-secondary:hover {
  color: var(--white);
  border-color: var(--primary);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 36px;
  font-weight: 850;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-2);
}

.footer-about {
  margin: 25px 0;
  color: #94a3b8;
  line-height: 1.9;
}

.certifications {
  gap: 12px;
}

.certifications span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.newsletter-box {
  margin-top: 38px;
}

.newsletter-box h6,
.footer-section h5 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.newsletter-form {
  display: flex;
  max-width: 360px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 55px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px 0 0 12px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-form button {
  width: 60px;
  border: 0;
  border-radius: 0 12px 12px 0;
  color: var(--white);
  background: var(--primary-2);
}

.footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 15px;
}

.footer-section ul a,
.footer-bottom p,
.footer-bottom-links a {
  color: #94a3b8;
}

.footer-section ul a:hover,
.footer-bottom-links a:hover {
  color: var(--white);
}

.footer-social {
  gap: 10px;
  margin-top: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  gap: 25px;
}

/* ==================================================
   Context color utilities
================================================== */

.feature-icon.blue,
.step-icon.blue {
  color: #2563eb;
  background: #eff6ff;
}
.feature-icon.purple,
.step-icon.purple {
  color: #8b5cf6;
  background: #f3e8ff;
}
.feature-icon.violet,
.step-icon.violet {
  color: #7c3aed;
  background: #f5f3ff;
}
.feature-icon.green,
.step-icon.green {
  color: #10b981;
  background: #ecfdf5;
}
.feature-icon.orange,
.step-icon.orange {
  color: #f97316;
  background: #fff7ed;
}
.feature-icon.red,
.step-icon.red {
  color: #ef4444;
  background: #fef2f2;
}

.problem-icon.red {
  color: #ff6b6d;
  background: rgba(255, 77, 79, 0.1);
}
.problem-icon.yellow {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
}
.problem-icon.purple {
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.12);
}
.problem-icon.green {
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
}
.problem-icon.cyan {
  color: #22d3ee;
  background: rgba(6, 182, 212, 0.12);
}

.phone-label.blue {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.14);
}
.phone-label.purple {
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.15);
}
.phone-label.green {
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
}
.phone-label.red {
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
}

/* ==================================================
   Responsive
================================================== */

@media (max-width: 1199px) {
  .trusted-section,
  .about-section,
  .solutions-section,
  .workflow-section,
  .dashboard-section,
  .industries-section,
  .why-section,
  .testimonial-section,
  .pricing-section,
  .contact-section,
  .problem-section,
  .mobile-app-section {
    padding: 90px 0;
  }

  .hero-section .col-lg-7 > .img-fluid {
    margin-top: 80px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(2, 13, 58, 0.96);
  }

  .nav-link {
    display: inline-block;
    margin: 5px 0;
  }

  .hero-content {
    padding: 56px 0 26px;
  }

  .hero-section .col-lg-7 > .img-fluid {
    margin: 10px 0 70px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 60px;
  }

  .dashboard-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .mobile-mockup {
    top: 50px;
    left: 20px;
    width: 180px;
  }

  .mobile-wrapper {
    margin-bottom: 20px;
  }

  .comparison-header,
  .comparison-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-header {
    margin-bottom: 55px;
  }

  .workflow-row {
    margin-bottom: 62px;
  }

  .workflow-row.flex-lg-row-reverse {
    flex-direction: column !important;
  }

  .phone-item img {
    width: 210px;
  }

  .why-item {
    gap: 15px;
  }

  .owl-item.center .testimonial-card,
  .owl-item:not(.center) .testimonial-card {
    opacity: 1;
    transform: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .trusted-section,
  .about-section,
  .solutions-section,
  .workflow-section,
  .dashboard-section,
  .industries-section,
  .why-section,
  .testimonial-section,
  .pricing-section,
  .contact-section,
  .problem-section,
  .mobile-app-section {
    padding: 72px 0;
  }

  .navbar-brand {
    font-size: 1.65rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .demo-btn,
  .btn-footer-primary,
  .btn-footer-secondary {
    width: 100%;
  }

  .feature-pill {
    justify-content: flex-start;
  }

  .section-heading,
  .section-header,
  .workflow-header,
  .dashboard-header {
    text-align: left !important;
  }

  .section-heading h2,
  .section-title,
  .section-header h2,
  .workflow-header h2,
  .dashboard-header h2,
  .why-section h2,
  .contact-title,
  .footer-cta h2 {
    font-size: 2.35rem;
  }

  .comparison-card,
  .contact-form-card,
  .pricing-card,
  .testimonial-card {
    padding: 26px;
    border-radius: 22px;
  }

  .status-group {
    flex-wrap: wrap;
  }

  .industry-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-badge {
    text-align: left;
  }

  .contact-item {
    align-items: flex-start;
  }

  .newsletter-form,
  .cta-buttons,
  .store-buttons {
    width: 100%;
  }

  .store-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-title {
    font-size: 2.65rem;
  }

  .hero-text,
  .about-text,
  .section-heading p,
  .section-description,
  .section-header p,
  .workflow-header p,
  .dashboard-header p,
  .contact-desc {
    font-size: 1rem;
  }

  .stat-card,
  .problem-item,
  .why-item,
  .contact-item {
    gap: 14px;
  }

  .feature-card,
  .industries-section .industry-card {
    padding: 26px;
    border-radius: 22px;
  }

  .phone-item img {
    width: 185px;
  }

  .footer-logo {
    font-size: 30px;
  }

  .footer-bottom-links {
    gap: 14px;
  }
}

/* ==================================================
   Fixed scroll navbar
================================================== */

html {
  scroll-padding-top: 96px;
}

section[id] {
  scroll-margin-top: 96px;
}

.hero-section .navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: transparent;
}

.hero-section .navbar.navbar-scrolled {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  background: rgba(2, 13, 58, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-section .navbar .nav-link.active {
  color: #ffffff !important;
}

.hero-section .navbar .nav-link.active::after {
  width: 100%;
}

/* Testimonial carousel controls */
.testimonial-section {
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  padding: 8px 76px 58px;
}

.testimonial-slider .owl-stage-outer {
  padding: 18px 0 28px;
}

.testimonial-card {
  min-height: 430px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 91, 247, 0.35);
  box-shadow: var(--shadow-sm);
}

.rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  letter-spacing: 0;
}

.testimonial-slider .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
  width: 52px;
  height: 52px;
  border: 1px solid #dbe4ff !important;
  border-radius: 50% !important;
  color: var(--primary) !important;
  background: #ffffff !important;
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
}

.testimonial-slider .owl-nav button.owl-prev:hover,
.testimonial-slider .owl-nav button.owl-next:hover {
  color: #ffffff !important;
  background: var(--primary) !important;
  transform: translateY(-2px);
}

.testimonial-slider .owl-nav button i {
  font-size: 22px;
  line-height: 1;
}

.testimonial-slider .owl-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-slider.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0;
  background: #dbe4ff;
  transition: all 0.25s ease;
}

.testimonial-slider.owl-theme .owl-dots .owl-dot.active span,
.testimonial-slider.owl-theme .owl-dots .owl-dot:hover span {
  width: 28px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 767px) {
  .testimonial-slider {
    padding: 0 0 62px;
  }

  .testimonial-slider .owl-nav {
    top: auto;
    bottom: 0;
    justify-content: center;
    gap: 70px;
    transform: none;
  }

  .testimonial-slider .owl-dots {
    bottom: 17px;
  }

  .testimonial-slider .owl-nav button.owl-prev,
  .testimonial-slider .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
  }
}
