*,
*::before,
*::after {
  box-sizing: border-box;
  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;
  overflow-x: hidden;
}

.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: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.2s;
}

.hamburger:hover {
  background: var(--light-gray);
}

/* 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 */
.hero {
  background: linear-gradient(135deg, #eefaee 0%, #e3f8e3 100%);
  padding: 40px 0 0;
  min-height: calc(50vh - 68px);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent);
  bottom: -80px;
  left: -80px;
}

.hero {
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  min-height: 3.6em;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.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;
  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;
  /* animation removed so it doesn't auto-scroll natively, we handle with JS if needed */
}

.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;
}