*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #48da48;
  /* Lime Green */
  --primary-dark: #098105;
  /* Emerald */
  --accent: #52a652;
  /* Light Green */
  --dark: #002308;
  /* Dark Green */
  --gray: #3A5F40;
  /* Muted Green */
  --light-gray: #E8F5E9;
  /* Light Green Tint */
  --white: #FFFFFF;
  --border: #A5D6A7;
  /* Light Green Border */
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  padding-top: 100px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(50, 205, 50, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 28px rgba(50, 205, 50, 0.6);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 35, 8, 0.08);
  box-shadow: 0 4px 20px rgba(0, 35, 8, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  max-height: 48px;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links>li {
  margin: 0;
  position: relative;
}

.nav-links>li>a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: #098105;
  background: rgba(9, 129, 5, 0.06);
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 24px !important;
}

/* ELEGANT DESKTOP & MOBILE DROPDOWN STYLING */
.dropdown-menu {
  background: #ffffff !important;
  border: 1px solid rgba(9, 129, 5, 0.15) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
  padding: 10px !important;
  min-width: 230px !important;
  list-style: none !important;
}

.dropdown-menu li {
  list-style: none !important;
  margin-bottom: 2px !important;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 14px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #f0fdf4 !important;
  color: #098105 !important;
  transform: translateX(4px) !important;
  text-decoration: none !important;
}

.dropdown-menu li.global-site-item {
  border-bottom: 1px solid #f1f5f9 !important;
  margin-bottom: 8px !important;
  padding-bottom: 6px !important;
}

.dropdown-menu li.global-site-item a {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
  color: #098105 !important;
  font-weight: 700 !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

.dropdown-menu li.global-site-item a:hover {
  background: #098105 !important;
  color: #ffffff !important;
  border-color: #098105 !important;
}

/* MOBILE DROPDOWN & DRAWER STYLING */
.mobile-nav-links {
  display: flex !important;
  flex-direction: column !important;
  padding: 16px !important;
  gap: 8px !important;
}

.mobile-nav-links > a,
.mobile-dropdown-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  border: 1px solid #f1f5f9 !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
}

.mobile-dropdown-title .title-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-nav-links > a:hover,
.mobile-dropdown-title:hover {
  background: #f0fdf4 !important;
  color: #098105 !important;
}

.mobile-dropdown-title .toggle-icon {
  font-size: 0.85rem;
  color: #64748b;
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-title .toggle-icon {
  transform: rotate(180deg);
  color: #098105;
}

.mnav-icon {
  width: 36px;
  height: 36px;
  background: #eefaee;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #098105;
  font-size: 1rem;
  flex-shrink: 0;
}

.mobile-dropdown-sub {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 10px 16px;
}

.mobile-dropdown.open .mobile-dropdown-sub {
  display: flex;
}

.mobile-dropdown-sub a {
  padding: 10px 14px !important;
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #ffffff;
  border: 1px solid #f1f5f9;
}

.mobile-dropdown-sub a:hover {
  background: #f0fdf4 !important;
  color: #098105 !important;
  border-color: rgba(34, 197, 94, 0.3);
}

.mobile-dropdown-sub a.mobile-global-link {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
  color: #098105 !important;
  font-weight: 700 !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.2s;
}

.hamburger:hover {
  background: var(--light-gray);
}

@media (max-width: 1140px) {

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

/* MOBILE MENU DRAWER */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 98;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header p {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  flex: 1;
  gap: 4px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.15s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: #EEF2FF;
  color: var(--primary);
}

.mobile-nav-links a .mnav-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gray);
  flex-shrink: 0;
  transition: all 0.15s;
}

.mobile-nav-links a:hover .mnav-icon,
.mobile-nav-links a.active .mnav-icon {
  background: var(--primary);
  color: var(--white);
}

.mobile-nav-links a>span:not(.mnav-icon) {
  flex: 1;
}

.mobile-nav-links a>i.fa-chevron-right {
  font-size: 0.75rem;
  color: #CBD5E1;
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-footer .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}

.mobile-menu-footer .btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.mobile-menu-footer .btn-wa:hover {
  background: #1ebe5d;
}

/* SECTION COMMON */
section {
  padding: 88px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: #e3f8e3;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* TRUSTED BY */
.trusted {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted-logos span {
  font-size: 1rem;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* HERO VIEWPORT WRAPPER (PINS IMPACT BANNER EXACTLY TO 100VH BOTTOM) */
.hero-viewport-wrapper {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #eefaee 0%, #e3f8e3 100%);
}

.hero {
  background: transparent;
  padding: 110px 0 40px 0;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.page-hero {
  background: linear-gradient(135deg, #eefaee 0%, #e3f8e3 100%);
  padding: 110px 0 40px 0;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-highlights-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* STROBING LIGHT GREEN GLOWING BORDER FOR HERO BADGES */
.hero-highlights-badges .hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 2px solid #48da48 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #098105;
  box-shadow: 0 0 0 4px rgba(72, 218, 72, 0.4), 0 0 16px rgba(72, 218, 72, 0.6) !important;
  animation: strobeBadgeGlow 1.2s infinite ease-in-out !important;
  position: relative;
  z-index: 2;
}

@keyframes strobeBadgeGlow {
  0%, 100% {
    border-color: #48da48 !important;
    box-shadow: 0 0 0 2px rgba(72, 218, 72, 0.3), 0 0 10px rgba(72, 218, 72, 0.5) !important;
  }
  50% {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 6px rgba(72, 218, 72, 0.75), 0 0 26px rgba(72, 218, 72, 0.95) !important;
  }
}

.hero-text h1 {
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  min-height: 0;
}

.hero-text h1 span {
  color: var(--primary);
}

/* GRADIENT TEXT & SINGLE TYPEWRITER CARET */
.gradient-text {
  background: linear-gradient(135deg, #098105 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #098105;
  display: inline-block;
}

.typewriter-text {
  border-right: 3px solid #098105;
  padding-right: 4px;
  animation: singleTypewriterCaret 0.75s step-end infinite;
}

@keyframes singleTypewriterCaret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #098105;
  }
}

/* HERO CORE PROMISE ULTRA-LIGHT CRYSTAL GLASS HIGHLIGHT BOX */
.hero-core-promise-block {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-left: 4px solid #22c55e;
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.08), 0 2px 10px rgba(255, 255, 255, 0.8);
  max-width: 520px;
  transition: all 0.3s ease;
  position: relative;
}

.hero-core-promise-block:hover {
  background: #ffffff;
  border-color: #ffffff;
  border-left-color: #22c55e;
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.14);
  transform: translateY(-2px);
}

.hero-core-promise-block .promise-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-core-promise-block .promise-subtext {
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

.hero-text p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 14px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.stat span {
  font-size: 0.8rem;
  color: var(--gray);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HERO IMAGE */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating {
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.floating-tag {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.floating-tag i {
  color: var(--primary);
}

.tag-1 {
  top: 20px;
  left: -10px;
  animation: floatY 3.5s ease-in-out infinite;
}

.tag-2 {
  bottom: 40px;
  right: -10px;
  animation: floatY 4s ease-in-out infinite 0.5s;
}

/* PULSE BADGE */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(79, 70, 229, 0);
  }
}

.pulse-badge {
  animation: pulse 2s ease-in-out infinite;
}

/* RESUME CARD MOCKUP */
.resume-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}

.rc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0;
}

.rc-name {
  height: 14px;
  background: var(--dark);
  border-radius: 4px;
  width: 120px;
  margin-bottom: 8px;
}

.rc-title {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  width: 80px;
}

.rc-section-label {
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
  width: 60px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.rc-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}

.rc-line.short {
  width: 75%;
}

.rc-line.shorter {
  width: 55%;
  margin-bottom: 16px;
}

.rc-skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.rc-skills span {
  height: 24px;
  width: 56px;
  background: #EEF2FF;
  border-radius: 20px;
}

.rc-badge {
  position: absolute;
  bottom: -14px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SERVICES PREVIEW */
.services-preview {
  background: var(--white);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 10px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* SERVICES */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #EEF2FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* SAMPLE RESUMES */
.sample-resumes {
  background: var(--light-gray);
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 12px;
}

.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--gray);
  font-size: 0.88rem;
}

.step-arrow {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 40px;
  opacity: 0.4;
}

.step-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
  margin-top: 60px;
}

/* PRICING */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(79, 70, 229, 0.15);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-desc {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price .dynamic-price {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.price span:not(.dynamic-price) {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.pricing-card li i.fa-check {
  color: #10B981;
}

.pricing-card li.disabled {
  color: var(--gray);
  opacity: 0.5;
}

.pricing-card li.disabled i {
  color: var(--gray);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* TESTIMONIALS SLIDER */
.testimonials {
  background: var(--light-gray);
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonials-slider .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.slider-dots .dot.active {
  background: var(--primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stars {
  color: #F59E0B;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.95rem;
}

.reviewer span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
}

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), 0 0 16px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all 0.2s;
}

.floating-cta:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* CONTACT */
.contact {
  background: var(--dark);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-text p {
  color: #94A3B8;
  margin-bottom: 28px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #CBD5E1;
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748B;
}

.contact-form select option {
  background: #1E293B;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  border: none;
  font-size: 1rem;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #94A3B8;
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-links a {
  text-decoration: none;
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  color: #94A3B8;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    min-height: 3.6em;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    margin: 0;
    flex: none;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .testimonials-slider .testimonial-card {
    flex: 0 0 100%;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    padding: 14px;
    border-radius: 50%;
    font-size: 1.2rem;
  }

  section {
    padding: 40px 0;
  }

  .service-card,
  .pricing-card,
  .step,
  .team-card,
  .why-card,
  .blog-card {
    padding: 24px;
  }

  .services-grid,
  .pricing-grid,
  .team-grid,
  .why-grid,
  .blog-grid,
  .steps,
  .about-values,
  .contact-cards {
    gap: 16px;
  }

  .section-header {
    margin-bottom: 32px;
  }
}

/* =============================================
   PAGE HERO (shared across all inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #e3f8e3 0%, #F0FDFF 100%);
  padding: 80px 0 72px;
  text-align: center;
}

.page-hero .section-tag {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-mission {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-card {
  background: linear-gradient(135deg, #e3f8e3, #F0FDFF);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
}

.about-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-big-icon {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.8;
}

.about-img-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.about-stat span {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0 16px;
}

.about-content>p {
  color: var(--gray);
  margin-bottom: 14px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.value-item i {
  color: #10B981;
  font-size: 1rem;
  flex-shrink: 0;
}

/* TEAM */
.team {
  background: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.team-social a {
  color: var(--gray);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.team-social a:hover {
  color: var(--primary);
}

/* WHY US */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.why-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #EEF2FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 auto 16px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.88rem;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-detail {
  background: var(--white);
}

/* Tabs */
.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  font-family: inherit;
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Tab content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tab-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0 16px;
}

.tab-text>p {
  color: var(--gray);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.feature-list li i {
  color: #10B981;
  flex-shrink: 0;
}

/* Service visual card */
.tab-visual {
  display: flex;
  justify-content: center;
}

.service-visual-card {
  background: linear-gradient(135deg, #EEF2FF, #F0FDFF);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.svc-icon-big {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.15);
}

.service-visual-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-visual-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.service-visual-card strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.svc-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.88rem;
}

.svc-delivery i {
  color: var(--accent);
}

/* FAQ */
.faq {
  background: var(--light-gray);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page {
  background: var(--white);
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

/* Info cards column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.contact-info-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--border);
  min-width: 0;
  word-wrap: break-word;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: #EEF2FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 2px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-info-card span {
  font-size: 0.82rem;
  color: var(--gray);
}

.contact-social {
  padding: 16px 0 0;
}

.contact-social p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Form column */
.contact-form-col {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  min-width: 0;
}

.contact-form-full {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
}

.form-group textarea {
  resize: vertical;
}

.field-error {
  font-size: 0.8rem;
  color: #EF4444;
  min-height: 16px;
}

/* Checkbox */
.checkbox-group {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.checkbox-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  cursor: pointer;
  width: 100%;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--primary);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  font-size: 3rem;
  color: #10B981;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
  margin-bottom: 24px;
}

/* =============================================
   PRICING PAGE
   ============================================= */

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray);
}

.toggle-label.active {
  color: var(--dark);
}

.save-badge {
  display: inline-block;
  background: #D1FAE5;
  color: #065F46;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 4px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle-switch input:checked+.toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

/* Add-ons */
.addons {
  margin-top: 56px;
}

.addons h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.addon-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.addon-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow);
}

.addon-card>i {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.addon-card strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.addon-card span {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
}

/* Guarantee */
.guarantee {
  background: #F0FDF4;
  border-top: 1px solid #BBF7D0;
  border-bottom: 1px solid #BBF7D0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.guarantee-icon {
  font-size: 2.8rem;
  color: #10B981;
  flex-shrink: 0;
}

.guarantee-inner>div {
  flex: 1;
  min-width: 200px;
}

.guarantee-inner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.guarantee-inner p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* Compare table */
.compare {
  background: var(--white);
}

.compare-table {
  overflow-x: auto;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--light-gray);
}

.compare-table td:first-child,
.compare-table th:first-child {
  text-align: left;
}

.compare-table .highlight-col {
  background: #EEF2FF;
}

.compare-table th.highlight-col {
  color: var(--primary);
}

.compare-table i.green {
  color: #10B981;
}

.compare-table i.red {
  color: #94A3B8;
}

.compare-table tbody tr:hover td {
  background: #F8FAFC;
}

.compare-table tbody tr:hover td.highlight-col {
  background: #E0E7FF;
}

/* =============================================
   RESPONSIVE — inner pages
   ============================================= */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tab-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page-inner {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-info-card {
    padding: 16px;
  }

  .ci-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .contact-info-card h4 {
    font-size: 0.85rem;
  }

  .contact-info-card p,
  .contact-info-card span {
    font-size: 0.8rem;
  }

  .ci-international,
  .contact-social {
    grid-column: 1 / -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-col {
    padding: 24px 20px;
  }

  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guarantee-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-tabs {
    gap: 4px;
  }

  .tab-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   RESUME SAMPLES SECTION
   ============================================= */
.samples {
  background: var(--light-gray);
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sample-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
}

.sample-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(79, 70, 229, 0.13);
}

/* Real image wrapper */
.sample-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--light-gray);
}

.sample-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.sample-card:hover .sample-img-wrap img {
  transform: scale(1.03);
}

.sample-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 70, 229, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.25s;
}

.sample-card:hover .sample-overlay {
  opacity: 1;
}

.overlay-btn {
  background: var(--white);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 180px;
  transition: all 0.2s;
}

.overlay-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sample info */
.sample-info {
  padding: 12px 14px;
}

.sample-tag {
  display: inline-block;
  background: #EEF2FF;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 5px;
}

.sample-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sample-info p {
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .samples-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .samples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* Pricing — one-time only, no bundle */
.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}



/* International clients card */
.ci-international {
  background: linear-gradient(135deg, #EEF2FF, #F0FDFF);
  border-color: var(--primary);
}

.ci-international .ci-icon {
  background: var(--primary);
  color: var(--white);
}

.ci-international .intl-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.ci-international .intl-flags span {
  font-size: 1.3rem;
  line-height: 1;
}

.ci-whatsapp .ci-icon {
  background: #E7F9EF;
  color: #25D366;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: #25D366;
  color: var(--white);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* =============================================
   IMPACT STATS BANNER
   ============================================= */
.impact-stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 0 0 30px;
  margin-top: auto;
  position: relative;
}

.impact-wave {
  line-height: 0;
  margin-bottom: -2px;

}

.impact-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.impact-item {
  color: var(--white);
}

.impact-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  backdrop-filter: blur(4px);
}

.impact-item strong {
  font-size: 2.4rem;
  font-weight: 800;
  display: inline;
  line-height: 1;
}

.impact-item span {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.8;
}

.impact-item p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   INDUSTRIES WE SERVE
   ============================================= */
.industries {
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.industry-card:hover {
  background: #EEF2FF;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.industry-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 auto 10px;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
}

.industry-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  display: block;
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   GLOBAL REACH
   ============================================= */
.global-reach {
  background: var(--light-gray);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.country-item {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.country-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.country-item .flag {
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.country-item .flag img {
  width: 48px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.country-item span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 1024px) {
  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* Bulletproof Font Awesome styles to prevent theme/plugin clashes */
.industry-icon i:not(.fab),
.contact-info-card i:not(.fab),
.mnav-icon i:not(.fab),
.floating-cta i:not(.fab),
.impact-icon i:not(.fab) {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
}

.industry-icon i.fab,
.contact-info-card i.fab,
.mnav-icon i.fab,
.floating-cta i.fab,
.impact-icon i.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Marquee Animation Update */
.marquee-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.marquee-container {
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding: 1rem 0;
  position: relative;
  scrollbar-width: none;
  /* Firefox */
}

.marquee-container::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.marquee-content {
  display: inline-flex;
  gap: 2rem;
  width: max-content;
  animation: sampleMarqueeScroll 35s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes sampleMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.marquee-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.prev-btn {
  left: -22px;
}

.next-btn {
  right: -22px;
}

@media (max-width: 768px) {
  .prev-btn {
    left: 0px;
  }

  .next-btn {
    right: 0px;
  }
}

.marquee-content .sample-card {
  width: 320px;
  flex: 0 0 auto;
  white-space: normal;
  text-align: center;
}


/* ==========================================================================
   BLOG PAGES (Archive & Single)
   ========================================================================== */

/* Blog Grid Archive */
.blog-archive {
  padding: 60px 0;
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
  display: block;
  height: 220px;
  background: #e2e8f0;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-placeholder-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #94a3b8;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 12px;
}

.blog-category {
  background: #eff6ff;
  color: #2563eb;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-title a:hover {
  color: #2563eb;
}

.blog-excerpt {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card .card-link {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  margin-top: auto;
}

.blog-card .card-link i {
  transition: transform 0.2s;
}

.blog-card:hover .card-link i {
  transform: translateX(4px);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.pagination .page-numbers:hover {
  background: #f8fafc;
  color: #2563eb;
}

.pagination .page-numbers.current {
  background: #2563eb;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 16px;
}

/* Single Post */
.single-post-wrapper {
  background: #fff;
  padding-bottom: 60px;
}

.single-post-header {
  background: #f8fafc;
  padding: 80px 0 60px;
  text-align: center;
}

.single-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.single-category {
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-date {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

.single-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 30px;
}

.single-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-avatar img {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
}

.single-post-featured-image {
  max-width: 1000px;
  margin: -40px auto 40px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.featured-img-fluid {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.single-post-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
}

.single-post-content p {
  margin-bottom: 24px;
}

.single-post-content h2,
.single-post-content h3 {
  color: #0f172a;
  margin: 40px 0 20px;
  font-weight: 700;
  line-height: 1.3;
}

.single-post-content h2 {
  font-size: 2rem;
}

.single-post-content h3 {
  font-size: 1.5rem;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.single-post-content li {
  margin-bottom: 10px;
}

.single-post-content blockquote {
  border-left: 4px solid #2563eb;
  background: #f0f7ff;
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
  color: #1e3a8a;
  font-size: 1.2rem;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
}

.single-post-tags {
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.single-post-tags .tag-label {
  font-weight: 600;
  color: #0f172a;
  margin-right: 8px;
}

.single-post-tags a {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  margin-right: 8px;
  transition: all 0.2s;
}

.single-post-tags a:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* =============================================
   INTERACTIVITY ADDITIONS (LIGHT THEME)
   ============================================= */

/* CANVAS BACKGROUND */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  /* To capture mouse movements */
}

.hero>* {
  z-index: 1;
  /* Keep content above canvas */
}

/* CUSTOM CURSOR */
body {
  /* cursor: none; */
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(79, 70, 229, 0.5);
  /* Primary color */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s ease-out;
}

/* Cursor Hover States */
.cursor-hover .custom-cursor {
  width: 48px;
  height: 48px;
  background: rgba(6, 182, 212, 0.2);
  /* Accent color */
  mix-blend-mode: multiply;
}

.cursor-hover .custom-cursor-follower {
  width: 64px;
  height: 64px;
  border-color: rgba(6, 182, 212, 0.8);
}

/* TYPEWRITER EFFECT */
.typewriter {
  border-right: 3px solid var(--primary);
  padding-right: 5px;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--primary);
  }
}

@media (max-width: 768px) {

  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }
}


/* BEAUTIFICATION STYLES */
body {
  cursor: none;
}

a,
button,
.btn,
.marquee-btn,
.tab-btn {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}

.custom-cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(79, 70, 229, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s, opacity 0.2s;
}

.cursor-hover {
  width: 54px;
  height: 54px;
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.8);
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s ease-out;
}

.typewriter-text {
  border-right: 3px solid var(--primary);
  padding-right: 4px;
  animation: blink-cursor 0.75s step-end infinite;
  white-space: nowrap;
}

@keyframes blink-cursor {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--primary)
  }
}

/* ADD-ON HOVER EFFECTS */
.addon-card.has-hover {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  min-height: 90px;
}

.addon-card.has-hover:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

.addon-front {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.addon-front i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.addon-front strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.addon-front span {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.addon-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.addon-back p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  color: var(--white);
}

.addon-card.has-hover:hover .addon-front,
.addon-card.has-hover:active .addon-front {
  opacity: 0;
  transform: translateY(-20px);
}

.addon-card.has-hover:hover .addon-back,
.addon-card.has-hover:active .addon-back {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo-img {
  height: 65px;
  max-width: 100%;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-title span {
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* Footer Logo Overrides for Dark Background */
.footer .logo-img {
  filter: brightness(0) invert(1);
}


.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}

.custom-cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(79, 70, 229, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s, opacity 0.2s;
}

.cursor-hover {
  width: 54px;
  height: 54px;
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.8);
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s ease-out;
}

.typewriter-text {
  border-right: 3px solid var(--primary);
  padding-right: 4px;
  animation: blink-cursor 0.75s step-end infinite;
  white-space: nowrap;
}

@keyframes blink-cursor {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--primary)
  }
}

/* ADD-ON HOVER EFFECTS */
.addon-card.has-hover {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  min-height: 90px;
}

.addon-card.has-hover:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

.addon-front {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.addon-front i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.addon-front strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.addon-front span {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.addon-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.addon-back p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  color: var(--white);
}

.addon-card.has-hover:hover .addon-front,
.addon-card.has-hover:active .addon-front {
  opacity: 0;
  transform: translateY(-20px);
}

.addon-card.has-hover:hover .addon-back,
.addon-card.has-hover:active .addon-back {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo-img {
  height: 65px;
  max-width: 100%;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-title span {
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* Footer Logo Overrides for Dark Background */
.footer .logo-img {
  filter: brightness(0) invert(1);
}

.footer .logo-title {
  color: #ffffff;
}

.footer .logo-subtitle {
  color: #cbd5e1;
}

/* Very Small Mobile Overrides */
@media (max-width: 480px) {
  .contact-info-col {
    grid-template-columns: 1fr;
  }
}

.contact-info-card p,
.contact-info-card span,
.contact-info-card h4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ==========================================
   NORMAL CURSOR RESET (ARROW / POINTER)
   ========================================== */
.custom-cursor,
.custom-cursor-follower {
  display: none !important;
}

body,
html {
  cursor: auto !important;
}

a,
button,
.btn,
.marquee-btn,
.tab-btn,
input[type="submit"],
input[type="button"],
.faq-question {
  cursor: pointer !important;
}

/* ==========================================
   TOP ANNOUNCEMENT BAR & OUR CORE PROMISE
   ========================================== */
.top-announcement-bar {
  background: linear-gradient(135deg, #002308 0%, #064e1c 50%, #098105 100%);
  color: #ffffff;
  padding: 9px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(165, 214, 167, 0.3);
  position: relative;
  z-index: 101;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #48da48, #2ea32e);
  color: #002308;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 0 14px rgba(72, 218, 72, 0.45);
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}

.top-bar-badge i {
  color: #002308;
  font-size: 1rem;
}

.top-bar-promise {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 280px;
}

.top-bar-promise .promise-label {
  font-weight: 700;
  color: #48da48;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.top-bar-promise .promise-text {
  color: #e8f5e9;
  font-weight: 400;
  line-height: 1.4;
  font-size: 0.88rem;
}

/* HERO BADGES SIDE-BY-SIDE (CLEAN LIGHT PILLS) */
.hero-highlights-badges {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-bottom: 16px !important;
}

.hero-highlights-badges .badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 0 !important;
  padding: 6px 14px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  background: var(--white) !important;
  color: #098105 !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  white-space: nowrap !important;
}

.hero-highlights-badges .badge i {
  color: #098105 !important;
  font-size: 0.88rem !important;
}

/* HERO CORE PROMISE BLOCK */
.hero-core-promise-block {
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-core-promise-block .promise-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-core-promise-block .promise-tag i {
  font-size: 0.85rem;
}

.hero-core-promise-block .promise-subtext {
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* ==========================================
   NAVBAR DROPDOWNS & MEGA MENU (UNCONGESTED)
   ========================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
}

/* Hover bridge to prevent menu closing when moving cursor */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 35, 8, 0.12);
  padding: 12px 0;
  list-style: none;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.country-dropdown-menu {
  padding: 10px 0;
}

.country-dropdown-menu li {
  margin: 0;
}

.country-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.country-dropdown-menu a:hover {
  background: #f0fdf4;
  color: #098105;
}

/* MEGA DROPDOWN WRAPPER (21 INDUSTRIES) */
.mega-dropdown {
  position: static;
}

.nav-inner {
  position: relative;
}

.mega-menu-wrapper {
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(880px, 94vw);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 35, 8, 0.14);
}

.nav-dropdown:hover .mega-menu-wrapper {
  transform: translateX(-50%) translateY(0);
}

.mega-menu-header {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.mega-menu-header strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
}

.mega-menu-header span {
  font-size: 0.85rem;
  color: var(--gray);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 420px;
  overflow-y: auto;
}

.mega-menu-grid li {
  margin: 0;
}

.mega-menu-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.mega-menu-grid a:hover {
  background: #f0fdf4;
  color: #098105;
}

.mega-menu-grid a i {
  color: #098105;
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}

/* MOBILE DROPDOWN ACCORDIONS */
.mobile-dropdown {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-dropdown-title {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
}

.mobile-dropdown-title .mnav-icon {
  margin-right: 12px;
}

.mobile-dropdown-title span:nth-child(2) {
  flex: 1;
}

.mobile-dropdown-title .toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-title .toggle-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-sub {
  display: none;
  padding-left: 36px;
  padding-bottom: 16px;

}

.mobile-dropdown.open .mobile-dropdown-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-dropdown-sub a {
  font-size: 0.92rem;
  color: var(--gray);
  text-decoration: none;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-dropdown-sub a:hover {
  color: #098105;
}

/* ==========================================
   CLIENT LOGOS SECTION (INFINITE MARQUEE STRIP)
   ========================================== */
.client-logos-section {
  padding: 44px 0 36px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}

.client-logos-section .section-header {
  text-align: center !important;
  margin-bottom: 20px;
}

.client-logos-section .section-tag {
  display: inline-block !important;
  margin: 0 auto !important;
  text-align: center;
}

.logo-marquee-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: logoMarqueeScroll 32s linear infinite;
  will-change: transform;
}

.logo-marquee-strip:hover .logo-marquee-track {
  animation-play-state: paused;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: transform 0.25s ease;
  cursor: pointer;
}

.client-logo-item:hover {
  transform: scale(1.08);
}

@keyframes logoMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logos-disclaimer {
  font-size: 0.82rem;
  color: #94a3b8;
  max-width: 720px;
  margin: 20px auto 0 auto;
  line-height: 1.5;
  text-align: center;
}

/* ==========================================
   WHY CHOOSE US SECTION & CARDS (HOVER REVEAL)
   ========================================== */
.why-choose-us-section {
  padding: 56px 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.why-choose-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.why-choose-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
  color: #098105;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-choose-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  transition: color 0.3s ease;
}

/* Text hidden by default, revealed smoothly on hover */
.why-choose-card p {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease, transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  border-color: #098105;
  box-shadow: 0 12px 28px rgba(9, 129, 5, 0.12);
  background: #ffffff;
}

.why-choose-card:hover .card-icon {
  transform: scale(1.08);
  background: #098105;
  color: #ffffff;
}

.why-choose-card:hover h3 {
  color: #098105;
}

.why-choose-card:hover p {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
  transform: translateY(0);
}

.why-card-featured {
  border-left: 5px solid #098105;
}

/* ==========================================
   FOOTER LAYOUT (SPACIOUS & UNCONGESTED)
   ========================================== */
.footer {
  background: #001e07;
  color: #a3b899;
  padding: 80px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 16px 0 20px;
  color: #8fa684;
}

.footer-links h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: #a3b899;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
  color: #48da48;
  transform: translateX(3px);
}

.footer-links p {
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #8fa684;
}

.footer-links p i {
  color: #48da48;
  width: 18px;
  margin-right: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: #79916e;
}

.footer-bottom a {
  color: #a3b899;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #48da48;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* DYNAMIC 21 INDUSTRIES GRID (6 COLUMNS PER ROW, COMPACT 2-ROW VIEW) */
.industries {
  padding: 88px 0;
  background: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

a.industry-card,
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  background: #f0fdf4;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 14px;
  text-decoration: none !important;
  color: #1e293b !important;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.industry-card.industry-card-hidden {
  display: none !important;
}

.industry-card.industry-card-revealed {
  display: flex !important;
  animation: fadeInIndustryCard 0.4s ease forwards;
}

@keyframes fadeInIndustryCard {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a.industry-card:hover,
.industry-card:hover {
  background: #ffffff !important;
  border-color: #098105 !important;
  box-shadow: 0 12px 32px rgba(9, 129, 5, 0.15) !important;
  transform: translateY(-5px) scale(1.02);
  text-decoration: none !important;
}

.industry-card .industry-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(9, 129, 5, 0.08);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: #098105;
}

.industry-card .industry-icon i {
  font-size: 1.25rem;
  color: #098105;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon i {
  color: #ffffff;
}

.industry-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.industry-card:hover span {
  color: #098105;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waPulse 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: #ffffff !important;
}

.whatsapp-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 24px;
}

.whatsapp-online-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background-color: #4cd964;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.whatsapp-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 16px;
    padding: 10px;
    border-radius: 50%;
  }

  .floating-whatsapp .whatsapp-text {
    display: none;
  }

  .whatsapp-icon-wrapper {
    width: 42px;
    height: 42px;
    background: transparent;
    font-size: 30px;
  }
}