/* ============================================
   MBTech Digital — Main & Homepage Stylesheet
   File: css/style.css
   ============================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --blue-dark:    #0a1445;
  --blue-navy:    #102263;
  --blue-mid:     #1a3388;
  --orange:       #f7941d;
  --orange-dark:  #e07d0b;
  --white:        #ffffff;
  --text-dark:    #1a1a2e;
  --text-gray:    #555566;
  --text-light:   #8e92a4;
  --bg-light:     #f8faff;
  --bg-white:     #ffffff;
  --border:       #e2e8f4;
  --shadow-sm:    0 4px 16px rgba(16, 34, 99, 0.06);
  --shadow-md:    0 10px 30px rgba(16, 34, 99, 0.1);
  --shadow-lg:    0 20px 50px rgba(16, 34, 99, 0.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:         'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

/* ---------- Utility ---------- */
.text--orange       { color: var(--orange) !important; }
.text--orange-light { color: rgba(247,148,29,0.9) !important; }
.text--white        { color: var(--white) !important; }

/* ---------- Container ---------- */
.container {
  width: min(92%, 1240px);
  margin-inline: auto;
}

/* ---------- Section Shared ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--lg { padding: 0.95rem 2.2rem; font-size: 0.95rem; }
.btn--sm { padding: 0.55rem 1.4rem; font-size: 0.84rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary,
.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover,
.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247,148,29,0.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--blue-navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue-navy);
  border-color: var(--blue-navy);
}
.btn--outline-blue:hover {
  background: var(--blue-navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 34, 99, 0.2);
}

.btn--white {
  background: var(--white);
  color: var(--blue-navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  min-width: 230px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item.active-item {
  background: #fff6eb;
  color: var(--orange);
  padding-left: 1.25rem;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.navbar__phone i {
  color: var(--orange);
}

.navbar__phone:hover { color: var(--orange); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}

.navbar__hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-navy) 50%, var(--blue-mid) 100%);
  padding: 9rem 0 5.5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.12) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-sym {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Hero Visual (Dashboard mockup) */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__dashboard {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 380px;
}

.dashboard-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  z-index: 2;
  animation: floatCard 3s ease-in-out infinite alternate;
}

.dashboard-card--top {
  top: 5px;
  right: 0;
  min-width: 155px;
  animation-delay: 0s;
}

.dashboard-card--bottom {
  bottom: 25px;
  right: 15px;
  min-width: 155px;
  animation-delay: 1s;
}

@keyframes floatCard {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.dashboard-card__label {
  font-size: 0.72rem;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dashboard-card__value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge--green {
  font-size: 0.68rem;
  font-weight: 700;
  background: #dcfce7;
  color: #16a34a;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 280px;
    background: url(../image/hero-image.png);
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    z-index: 1;
}

.mockup-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--blue-navy), var(--orange));
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 85px;
}

.mockup-chart .bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue-navy), #3b5bdb);
}

.bar.b1 { height: 40%; }
.bar.b2 { height: 65%; }
.bar.b3 { height: 45%; }
.bar.b4 { height: 85%; background: linear-gradient(180deg, var(--orange), var(--orange-dark)); }
.bar.b5 { height: 55%; }
.bar.b6 { height: 70%; }

/* Social Floats */
.social-float {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: floatSocial 4s ease-in-out infinite alternate;
  z-index: 3;
}

.social-float--fb { background: #1877f2; top: 12%; left: 52%; animation-delay: 0s; }
.social-float--g  { background: var(--white); color: #ea4335; top: 45%; left: 62%; animation-delay: 0.8s; box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.social-float--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); top: 2%; right: -5%; animation-delay: 1.2s; }
.social-float--yt { background: #ff0000; bottom: 8%; left: 55%; animation-delay: 1.8s; }

@keyframes floatSocial {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-14px) rotate(6deg); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 6.5rem 0;
  background: var(--bg-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}

.about__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about__image-wrap:hover .about__img {
  transform: scale(1.02);
}

.about__badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border);
}

.about__badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.about__badge-txt {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-gray);
  line-height: 1.3;
  text-align: center;
}

.about__content .section-label {
  display: block;
  margin-bottom: 0.6rem;
}

.about__content .section-title {
  margin-bottom: 1.2rem;
  text-align: left;
}

.about__desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.about__feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about__feature-item i {
  color: var(--orange);
  font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 6.5rem 0;
  background: var(--bg-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--blue-navy), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-navy);
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--blue-navy), var(--blue-mid));
  color: var(--white);
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue-navy);
  transition: var(--transition);
  margin-top: auto;
}

.service-card__link:hover {
  color: var(--orange);
  gap: 0.8rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-navy) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.why-us .section-header { position: relative; z-index: 1; }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 2.2rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(247,148,29,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin: 0 auto 1.3rem;
  transition: var(--transition);
  border: 2px solid rgba(247,148,29,0.25);
}

.why-card:hover .why-card__icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.why-card__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
  padding: 6.5rem 0;
  background: var(--bg-white);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.4rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.industry-item:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(247,148,29,0.15);
  color: var(--orange);
}

.industry-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-navy);
  transition: var(--transition);
}

.industry-item:hover .industry-item__icon {
  background: var(--orange);
  color: var(--white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 6.5rem 0;
  background: var(--bg-light);
  overflow: hidden;
}

.testimonials__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.testi-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--blue-navy);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  z-index: 5;
}

.testi-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(247,148,29,0.35);
}

.testimonials__slider {
  overflow: hidden;
  border-radius: var(--radius-md);
  touch-action: pan-y pinch-zoom;
}

.testi-track {
  display: flex;
  gap: 1.8rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 auto;
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 148, 29, 0.25);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.testi-quote {
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--border);
  opacity: 0.7;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.3rem;
}

.testi-author__img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-gray);
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--blue-navy);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: 6.5rem 0;
  background: var(--bg-white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem;
  border: 2px solid var(--border);
  background: var(--white);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-card--popular {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-navy) 100%);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 15px 40px rgba(16, 34, 99, 0.25);
}

.pricing-card--popular:hover { transform: scale(1.04) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.28rem 1.3rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.pricing-card--popular .pricing-card__name { color: var(--white); }

.pricing-card__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  line-height: 1;
}

.pricing-card--popular .pricing-card__price { color: var(--white); }

.pricing-card__currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
}

.pricing-card__period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-gray);
}

.pricing-card--popular .pricing-card__period { color: rgba(255,255,255,0.7); }

.pricing-card__features {
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card--popular .pricing-card__features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.12);
}

.pricing-card__features li i {
  color: #16a34a;
  font-size: 0.9rem;
}

.pricing-card--popular .pricing-card__features li i {
  color: #86efac;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 6.5rem 0;
  background: var(--bg-light);
}

.faq__grid {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 1.2rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--blue-navy); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.92rem;
  color: var(--blue-navy);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  padding: 0 1.6rem 1.3rem;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.75;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 70%);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner__text h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-banner__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

.cta-banner__btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ============================================
   SHARED FOOTER
   ============================================ */
.footer {
  background: var(--blue-dark);
  padding: 5.5rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer__about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

.footer__heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__list li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
}

.footer__list li a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer__contact-list li i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer__contact-list li a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer__contact-list li a:hover {
  color: var(--orange);
}

.footer__bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.4rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--orange);
}

.footer__bottom-links span {
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .why-us__grid { grid-template-columns: repeat(3, 1fr); }
  .industries__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
}

@media (max-width: 992px) {
  .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    gap: 0.5rem;
  }
  .navbar__nav.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-light);
    margin-top: 0.4rem;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .navbar__hamburger { display: flex; }
  .navbar__phone { display: none; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__cta { justify-content: center; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__visual { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__badge { right: 1rem; }
  .about__content { padding-left: 0; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .why-us__grid { grid-template-columns: 1fr 1fr; }
  .industries__grid { grid-template-columns: repeat(4, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-6px); }
  .faq__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about__features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}