:root {
  --orange: #f86f03;
  --blue: #525fe1;
  --dark: #0f0f1a;
  --dark2: #1a1a2e;
  --gray: #6b7280;
  --light: #f8f9ff;
  --white: #ffffff;
  --card-bg: #f0f2ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "times new roman", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0d1033 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 95, 225, 0.15);
  border: 1px solid rgba(82, 95, 225, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #9fa8ff;
  margin-bottom: 24px;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "times new roman";
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title .accent {
  color: var(--orange);
}
.hero-title .accent2 {
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 6px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 80px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero-primary {
  padding: 17px 38px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  border: none;
  font-family: "times new roman", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.btn-hero-primary:hover {
  background: #e05e00;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(248, 111, 3, 0.4);
}
.btn-hero-primary-under-about {
  padding: 17px 38px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  border: none;
  font-family: "times new roman", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.btn-hero-primary-under-about:hover {
  background: #e05e00;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(248, 111, 3, 0.4);
}
.btn-hero-secondary {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-family: "times new romans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(82, 95, 225, 0.1);
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat strong {
  display: block;
  font-family: "times new romans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero Right Visual */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 {
  width: 350px;
  height: 350px;
  background: rgba(82, 95, 225, 0.25);
  top: -80px;
  right: -80px;
}
.orb2 {
  width: 200px;
  height: 200px;
  background: rgba(248, 111, 3, 0.2);
  bottom: -60px;
  left: -40px;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 100px 60px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: "times new romans", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: black;
}
.section-title span {
  color: var(--blue);
}
.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 580px;
}

/* ── SERVICES ── */
#services {
  background: var(--white);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #e8eaff;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(82, 95, 225, 0.12);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: "times new romans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}

/* ── WHO ARE WE ── */
#who-are-we {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.who-are-we-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.who-are-we-video {
  width: 100%;
  max-width: 860px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(82, 95, 225, 0.15);
  display: block;
  outline: none;
  background: var(--dark);
}

/* ── HOW IT WORKS ── */
#how {
  background: linear-gradient(180deg, var(--light) 0%, #e8ebff 100%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(82, 95, 225, 0.07);
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(82, 95, 225, 0.15);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "times new romans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin: 0 auto 20px;
}
.step-card h4 {
  font-family: "times new romans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

/* ── STATS SECTION ── */
#stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 60px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: "times new romans", sans-serif;
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── FEATURES ── */
#features {
  background: var(--white);
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-visual {
  position: relative;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-visual::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(248, 111, 3, 0.2);
  filter: blur(60px);
}
.feature-dashboard {
  position: relative;
  z-index: 2;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dash-title {
  font-family: "times new romans", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #16c784;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-bottom: 24px;
}
.bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(
    180deg,
    var(--orange) 0%,
    rgba(248, 111, 3, 0.3) 100%
  );
  animation: grow 2s ease-out forwards;
  transform-origin: bottom;
}
@keyframes grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dash-metric {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.dash-metric strong {
  font-family: "times new romans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
}
.dash-metric span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}

.feature-list {
  margin-top: 36px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f2ff;
}
.feature-item:last-child {
  border-bottom: none;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.feature-item h4 {
  font-family: "times new romans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.feature-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

/* ── INDUSTRIES ── */
#industries {
  background: var(--light);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.industry-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.industry-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(82, 95, 225, 0.12);
}
.industry-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}
.industry-card h4 {
  font-family: "times new romans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .section-desc {
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--light);
  border-radius: 20px;
  padding: 28px;
  border: 1.5px solid #e8eaff;
  transition: all 0.3s;
  position: relative;
}
.testi-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(82, 95, 225, 0.1);
}

.testi-quote {
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}
.testi-stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 16px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "times new romans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.testi-name {
  font-weight: 600;
  font-size: 14px;
}
.testi-role {
  font-size: 12px;
  color: var(--gray);
}

/* ── CUSTOMER FEEDBACK VIDEOS ── */
#feedback-videos {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0d1033 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.feedback-videos-header {
  text-align: center;
  padding: 0 24px 56px;
  position: relative;
  z-index: 2;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
  margin-right: 0%;
}

/* Responsive: 4 columns on large screens */
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 300px) {
  .btn-hero-primary-under-about {
    padding: 14px 32px;
    font-size: 20px;
  }
}
/* Video container */
.video-card {
  width: 70%;
  height: 70%;
  overflow: hidden;
  display: flex;
  margin-left: 20px;
  justify-content: center;
  align-items: center;
}

/* Video styling */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── PRICING ── */
#pricing {
  background: linear-gradient(180deg, #f0f2ff 0%, var(--white) 100%);
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header .section-desc {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  border: 2px solid #e8eaff;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--blue);
  background: linear-gradient(180deg, #f5f6ff 0%, var(--white) 100%);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.pricing-card:hover {
  box-shadow: 0 20px 50px rgba(82, 95, 225, 0.12);
}
.btn-pricing-primary-custom {
  width: 30%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "times new romans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.pricing-tier {
  font-family: "times new romans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
}
.pricing-price {
  font-family: "times new romans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup {
  font-size: 24px;
  vertical-align: top;
  margin-top: 8px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
}
.pricing-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.pricing-divider {
  height: 1px;
  background: #e8eaff;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #444;
}
.pricing-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
}
.pricing-features li.no::before {
  content: "×";
  color: #ccc;
}
.pricing-features li.no {
  color: #bbb;
}

.btn-pricing-primary {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "times new romans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-pricing-primary:hover {
  background: #3d4fd3;
  transform: translateY(-1px);
}

.btn-pricing-outline {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--dark);
  border: 2px solid #e8eaff;
  border-radius: 10px;
  font-family: "times new romans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-pricing-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── CTA BANNER ── */
#cta {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1033 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 95, 225, 0.2) 0%,
    transparent 70%
  );
}
#cta .section-inner {
  position: relative;
  z-index: 2;
}
#cta .section-title {
  color: #fff;
}
#cta .section-desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
#contact {
  background: var(--light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: "times new romans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(82, 95, 225, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-item-info span {
  font-size: 14px;
  color: var(--gray);
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(82, 95, 225, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgb(172, 168, 168);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8eaff;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea {
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--orange), #e05e00);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "times new romans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(248, 111, 3, 0.35);
}

/* ── FOOTER ── */
footer {
  background: #0f1132;
  padding: 48px 500px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Top: logo + contact */
.footer-top {
  margin-bottom: 32px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
/* Fallback if no logo image */
.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.footer-logo-text span {
  color: #f86f03;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact a,
.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-contact a:hover {
  color: #f86f03;
}

Divider .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

/* Bottom: social left, copyright right */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Social links */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover {
  color: #fff;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-social-link:hover svg {
  opacity: 1;
}

/* Copyright */
.footer-copy {
  text-align: right;
}
.footer-copy p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}
.footer-copy a {
  font-size: 13px;
  color: #f86f03;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-copy a:hover {
  opacity: 0.75;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 600px) {
  footer {
    padding: 40px 24px 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copy {
    text-align: left;
  }
  .footer-socials {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .btn-pricing-primary-custom {
    width: 80%;
  }
}
/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray);
  background: none;
  border: none;
}
.modal h3 {
  font-family: "times new romans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  background: var(--dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success {
  border-left: 4px solid #16c784;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid,
  .testi-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    transform: none;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 70px 24px;
  }
  #trust,
  #stats {
    padding: 40px 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .hero-visual {
    display: none;
  }
  .services-grid,
  .testi-grid,
  .pricing-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  #feedback-videos {
    padding-top: 56px;
  }
  .feedback-videos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .features-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-stats {
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  #cta {
    padding: 70px 24px;
  }
  footer {
    padding: 60px 24px 30px;
  }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-family: "times new romans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}
.mobile-menu a:hover {
  color: var(--blue);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

#about-us {
  background: var(--white);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left: Text ─────────────────────────────────── */
.about-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.about-title {
  font-family: "times new roman", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}
.about-title .blue {
  color: var(--blue);
}
.about-title .orange {
  color: var(--orange);
}

.about-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 16px;
  max-width: 520px;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 36px;
  margin: 32px 0 36px;
  padding: 24px 0;
  border-top: 1px solid #e8eaff;
  border-bottom: 1px solid #e8eaff;
}
.about-stat strong {
  display: block;
  font-family: "times new roman", serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* CTA */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  font-family: "times new roman", serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.about-cta:hover {
  background: #e05e00;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(248, 111, 3, 0.35);
}

/* ── Right: Image ───────────────────────────────── */
.about-image-wrap {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(82, 95, 225, 0.15);
  z-index: 2;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  /* Fallback gradient when no image loaded */
  /* background: linear-gradient(135deg, #1a1a2e 0%, #0d1033 50%, #1a1a2e 100%); */
}

/* Placeholder shown when no real image */
.about-img-placeholder {
  width: 100%;
  height: 480px;
  /* background: linear-gradient(135deg, #0f0f1a, #1a1a2e, #0d1033); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 24px;
}
@keyframes aboutPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Decorative blobs */
.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.about-blob1 {
  width: 260px;
  height: 260px;
  background: rgba(82, 95, 225, 0.15);
  top: -40px;
  right: -40px;
}
.about-blob2 {
  width: 180px;
  height: 180px;
  background: rgba(248, 111, 3, 0.12);
  bottom: -30px;
  left: -30px;
}

/* ── Scroll reveal ──────────────────────────────── */
.about-content {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.about-image-wrap {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s ease 0.15s,
    transform 0.7s ease 0.15s;
}
#about-us.about-visible .about-content,
#about-us.about-visible .about-image-wrap {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  #about-us {
    padding: 80px 40px;
  }
  .about-inner {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  #about-us {
    padding: 70px 24px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-wrap {
    order: -1;
  }
  .about-img,
  .about-img-placeholder {
    height: 300px;
  }
  .about-stats {
    gap: 20px;
  }
  .about-stat strong {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .about-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .about-stat {
    min-width: 80px;
  }
}
#about-us.about-visible .about-content,
#about-us.about-visible .about-image-wrap,
.about-content,
.about-image-wrap {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
