/* === ROOT & RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1e3a8a;
  --blue-mid: #2563eb;
  --blue-light: #3b82f6;
  --red: #e53e3e;
  --dark: #0f172a;
  --dark2: #1e293b;
  --gray: #64748b;
  --light: #f8faff;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(30, 58, 138, .10);
  --shadow-lg: 0 12px 48px rgba(30, 58, 138, .18);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* === UTILITY === */
.red-text {
  color: var(--red);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-label i {
  color: var(--red);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 58, 138, .08);
  transition: all .3s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 20px rgba(30, 58, 138, .10);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width .3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-mid);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-cta {
  background: linear-gradient(135deg, var(--red), #c53030);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 62, 62, .35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 45%, #e0edff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .3;
  pointer-events: none;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(#bfdbfe, #93c5fd);
  top: -150px;
  left: 30%;
}

.blob2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(#fecdd3, #fca5a5);
  bottom: -80px;
  left: 10%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 40px 0 60px;
  gap: 40px;
}

.hero-left {
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, .1);
  color: var(--blue-mid);
  font-size: .73rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, .2);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.13;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-desc {
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, .4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid var(--blue-light);
  transition: all .3s;
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: white;
  border-radius: 16px;
  padding: 18px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-item i {
  font-size: 1.4rem;
  color: var(--blue-mid);
}

.stat-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-item span {
  font-size: .72rem;
  color: var(--gray);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-trust i {
  color: var(--blue-mid);
}

/* Right side — image in a rounded card container, badges float outside */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(30, 58, 138, .20);
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.badge-exp {
  top: -22px;
  left: -10px;
}

.badge-client {
  bottom: -20px;
  right: -16px;
  animation-delay: .5s;
}

.hero-badge-float i {
  font-size: 1.4rem;
  color: var(--blue-mid);
}

.hero-badge-float strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.hero-badge-float small {
  font-size: .68rem;
  color: var(--gray);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* === COMPANIES === */
.companies {
  padding: 60px 0;
  background: white;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.companies .section-label {
  margin-bottom: 32px;
}

.companies-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.companies-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}

.companies-track:hover {
  animation-play-state: paused;
}

.company-logo {
  flex: 0 0 180px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid #f1f5f9;
}

.company-logo img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .3s, opacity .3s;
}

.company-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.text-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 2px;
  transition: color .3s;
}

.company-logo:hover .text-logo {
  color: var(--blue);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* === WHY US === */
.why-us {
  padding: 40px 0px;
  background: var(--light);
}

.section-inner {
  margin: 0 auto;
  padding: 0 0px;
}

.cards-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2.8rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
}

.card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.65;
}

.card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .12;
  bottom: -30px;
  right: -20px;
  pointer-events: none;
}

.glow-blue {
  background: var(--blue-light);
}

.glow-green {
  background: #10b981;
}

.glow-purple {
  background: #8b5cf6;
}

.glow-orange {
  background: #f59e0b;
}

/* === SERVICES === */
.services {
  padding: 40px 20px;
  background: white;
}

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid #e2e8f0;
  transition: all .3s;
  background: white;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, .04), rgba(59, 130, 246, .02));
  opacity: 0;
  transition: opacity .3s;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all .3s;
}

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

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.65;
}

/* === STATS === */
.stats {
  padding: 40px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

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

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 32px 16px;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  display: inline;
}

.stat-label {
  margin-top: 10px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.stat-label i {
  color: var(--blue-light);
}

/* === REVIEWS === */
.reviews {
  padding: 40px 0px;
  background: var(--light);
}

.reviews .section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}

.review-card-static {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid #e2e8f0;
}

/* Shared Review Styles */
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-header strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}

.review-header small {
  font-size: .75rem;
  color: var(--gray);
}

.google-g {
  margin-left: auto;
  font-size: 1.4rem;
}

.review-stars {
  color: #FBBC04;
  margin-bottom: 12px;
  font-size: 1rem;
}

.review-card-static p, .review-card p {
  color: var(--gray);
  font-size: .85rem;
  line-height: 1.7;
  font-style: italic;
}

/* Mobile Slider Styles */
.reviews-slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}

.review-card {
  display: none;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid #e2e8f0;
  animation: fadeIn .4s ease;
}

.review-card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--blue-mid);
  font-size: .9rem;
  transition: all .2s;
}

.slider-btn:hover {
  background: var(--blue-mid);
  color: white;
  border-color: var(--blue-mid);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all .2s;
}

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

.google-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid #e2e8f0;
  min-width: 200px;
  text-align: center;
}

.google-logo-big {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stars-big {
  color: #FBBC04;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.rating-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.rating-sub {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 500;
}

/* === CTA === */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 50%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .25;
  pointer-events: none;
}

.cta-blob1 {
  width: 350px;
  height: 350px;
  background: #93c5fd;
  top: -100px;
  left: -50px;
}

.cta-blob2 {
  width: 300px;
  height: 300px;
  background: #fca5a5;
  bottom: -80px;
  right: -40px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  transition: all .3s;
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  transition: all .3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .35);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .75);
  padding: 80px 24px 0;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo-main {
  color: white;
}

.footer-brand p {
  font-size: .83rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: all .2s;
}

.social-links a:hover {
  background: var(--blue-light);
  color: white;
}

.footer-col h4 {
  font-size: .92rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: white;
}

.contact-list li {
  display: flex;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 14px;
  line-height: 1.6;
}

.contact-list i {
  color: var(--blue-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-list a {
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.contact-list a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .4);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, .5);
}

/* === RESPONSIVE === */
@media(max-width:1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .google-center {
    padding: 24px;
  }

  .hero-content {
    padding: 0 30px 0 40px;
    gap: 28px;
  }

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

@media(max-width:900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 120px 24px 60px;
    gap: 36px;
    max-width: 100%;
  }

  .hero-left {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .hero-desc,
  .hero-trust {
    max-width: 100%;
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    display: inline-flex;
  }

  .hero-right {
    padding-top: 0;
    justify-content: center;
  }

  .hero-img {
    height: 380px;
  }

  .badge-exp {
    top: 16px;
    left: 16px;
  }

  .badge-client {
    bottom: 16px;
    right: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
  }

  .nav-actions .btn-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .phone-link {
    display: none;
  }

  #navbar {
    padding: 0 20px;
  }

  .section-inner {
    padding: 0 20px;
  }
}

@media(max-width:640px) {
  .hero-content {
    padding: 100px 16px 48px;
  }

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

  .section-title {
    font-size: 1.6rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .stat-box {
    padding: 16px 8px;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .stat-plus {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: .75rem;
  }

  .hero-img {
    height: 280px;
  }

  .reviews-layout {
    display: none;
  }
}

/* === PAGE HEADER === */
.page-header {
  padding: 160px 24px 80px;
  background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(15, 23, 42, 0.85)), url('assests/recruitment_concept.png') center/cover;
  text-align: center;
  color: white;
  position: relative;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-header .breadcrumb {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-header .breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.page-header .breadcrumb a:hover {
  color: var(--red);
}

.page-header .breadcrumb span {
  font-size: 0.85rem;
  opacity: 0.7;
}

@media(max-width:768px) {
  .page-header {
    padding: 120px 20px 60px;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
}

/* === ABOUT US === */
.about-section {
  padding: 40px 20px;
  background: white;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-left .section-label { justify-content: flex-start; }
.about-intro {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-intro strong { color: var(--blue-mid); }
.about-text {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-highlights { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  border-radius: 14px;
  padding: 16px 20px;
  border-left: 3px solid var(--blue-mid);
}
.highlight-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.highlight-item strong { display: block; font-size: .93rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.highlight-item p { font-size: .82rem; color: var(--gray); margin: 0; line-height: 1.6; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 4px; }
.value-tag {
  display: flex; align-items: center; gap: 8px;
  background: #eff6ff; color: var(--blue-mid);
  font-size: .8rem; font-weight: 600;
  padding: 7px 14px; border-radius: 20px;
  border: 1px solid #bfdbfe;
}
.value-tag i { color: var(--blue-mid); }

/* About Right */
.about-right { display: flex; flex-direction: column; gap: 24px; }
.about-img-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(30,58,138,.15);
}
.about-img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center top;
  border-radius: 24px; display: block;
}
.about-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(30,58,138,.15);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}
.about-badge i { font-size: 1.3rem; color: var(--blue-mid); }
.about-badge strong { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1; }
.about-badge small { font-size: .65rem; color: var(--gray); }
.ab1 { top: -18px; left: -14px; }
.ab2 { bottom: -18px; right: -14px; animation-delay: .6s; }
.about-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-stat {
  background: var(--light);
  border-radius: 16px; padding: 18px 12px;
  text-align: center;
  border: 1.5px solid #e2e8f0;
  transition: transform .2s, box-shadow .2s;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.astat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--blue); line-height: 1; }
.astat-label { display: block; font-size: .72rem; color: var(--gray); margin-top: 4px; font-weight: 500; }

/* === LOGO VIDEO === */
.logo-video-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e293b 100%);
  position: relative; overflow: hidden;
}
.logo-video-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.logo-video-section .section-label { color: rgba(255,255,255,.7); }
.logo-video-section .section-label i { color: var(--red); }
.logo-video-section .section-title { color: white; }
.logo-video-section .section-desc { color: rgba(255,255,255,.65); }
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  margin-top: 40px;
  background: #000;
  aspect-ratio: 16/9;
}
.logo-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 20px;
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 16px; pointer-events: none;
}
.video-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: white; font-size: 1rem;
  cursor: pointer; pointer-events: all;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn:hover { background: rgba(255,255,255,.3); }

/* About responsive */
@media(max-width:900px) {
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-left .section-label { justify-content: center; }
  .about-left .section-title { text-align: center !important; }
  .about-intro, .about-text { text-align: center; }
  .about-highlights { align-items: stretch; }
  .about-values { justify-content: center; }
  .about-left a { display: flex !important; justify-content: center; }
}
@media(max-width:640px) {
  .about-stats-row { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .astat-num { font-size: 1.4rem; }
  .about-img { height: 300px; }
}