/* ============================================
   S2 AIRDUCT เนโฌโ€ Home Page Styles
   ============================================ */

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   HERO SECTION
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--grad-hero);
}

/* Decorative elements */
.hero-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(151,160,167,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(85,103,117,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
  min-height: calc(100vh - var(--header-h));
  padding: var(--sp-16) 0;
  position: relative;
  z-index: 1;
}

/* เนโ€โฌเนโ€โฌเนโ€โฌ Hero Text เนโ€โฌเนโ€โฌเนโ€โฌ */
.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(85,103,117,0.08);
  border: 1px solid rgba(85,103,117,0.18);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse-slow 2s ease-in-out infinite;
}

.hero-title {
  font-size: var(--fs-7xl);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-dark);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title-highlight {
  color: var(--clr-accent);
  position: relative;
  display: inline-block;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary));
  border-radius: var(--r-full);
}

.hero-desc {
  font-size: var(--fs-lg);
  font-weight: 300;
  line-height: 1.85;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-10);
  max-width: 480px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-border);
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.stat-item {
  text-align: left;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.stat-num {
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-accent);
}

.stat-label {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--clr-text-muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border-strong);
  flex-shrink: 0;
}

/* เนโ€โฌเนโ€โฌเนโ€โฌ Hero Visual เนโ€โฌเนโ€โฌเนโ€โฌ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeRight 0.9s var(--ease-out) 0.3s both;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.float-card-1 {
  top: -20px;
  right: 20px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: -40px;
  left: 20px;
  right: auto;
  animation-delay: 1.5s;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  flex-shrink: 0;
}

.float-card-icon svg { width: 16px; height: 16px; }

.float-card-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.2;
}

.float-card-sub {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   SCROLL INDICATOR
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 2;
  opacity: 0.5;
  animation: fadeUp 1s var(--ease-out) 1s both;
}

.scroll-indicator span {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--clr-primary);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: var(--r-full);
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   PARTNERS STRIP
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.partners-section {
  background: var(--clr-dark, #1e2a32);
  border: none;
  overflow: hidden;
}

.partners-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}

.partners-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.partners-track {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  width: 100%;
}

.partners-slide {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
  animation: scroll-partners 15s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.partner-logo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: var(--t);
  flex-shrink: 0;
  opacity: 0.9;
}

.partner-logo:hover { transform: scale(1.1); opacity: 1; }

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   SERVICES SECTION (Home preview)
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.home-services { background: var(--clr-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: var(--t);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: rgba(85,103,117,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: var(--clr-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: var(--t);
  color: var(--clr-accent);
}

.service-card:hover .service-icon {
  background: var(--grad-accent);
  color: var(--clr-white);
  transform: rotate(-5deg) scale(1.1);
}

.service-icon svg { width: 28px; height: 28px; }

.service-title {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.service-desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-accent);
  transition: var(--t);
}

.service-link svg { width: 14px; height: 14px; transition: var(--t); }

.service-link:hover { color: var(--clr-dark); }
.service-link:hover svg { transform: translateX(4px); }

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   WHY CHOOSE US
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.why-us-section {
  background: var(--clr-white);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-us-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.feature-item {
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-light);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  transition: var(--t);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.feature-item::before {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: var(--sp-4);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(151,160,167,0.08);
  line-height: 1;
  pointer-events: none;
}

.feature-item:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(85,103,117,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  transition: var(--t);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-item:hover .feature-icon {
  background: var(--grad-accent);
  color: var(--clr-white);
}

.feature-title {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* Why us image side */
.why-us-visual {
  position: relative;
}

.why-us-img-wrap {
  border-radius: var(--r-2xl);
  border: 12px solid #fff;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.why-us-metric {
  position: absolute;
  bottom: -84px;
  right: -24px;
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}

.why-us-metric-num {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.why-us-metric-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-1);
  font-weight: 300;
}

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   PROCESS SECTION
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.process-section { background: var(--clr-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
  margin-top: var(--sp-16);
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 2px solid var(--clr-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: var(--t);
  box-shadow: var(--shadow-xs);
}

.process-step:hover .step-number,
.process-step.active .step-number {
  background: var(--clr-dark);
  border-color: var(--clr-dark);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
  transform: scale(1.1);
}

.step-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
}

.step-desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   REVIEWS PREVIEW
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.reviews-home { background: var(--clr-white); }

.reviews-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-4);
}

.review-card {
  background: var(--clr-light);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border);
  transition: var(--t);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  font-size: 6rem;
  line-height: 1;
  color: rgba(151,160,167,0.15);
  font-family: Georgia, serif;
}

.review-card:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #F5A623;
  color: #F5A623;
}

.review-text {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text);
  line-height: 1.85;
  margin-bottom: var(--sp-6);
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-white);
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img { width: 100%; height: 100%; object-fit: cover; }

.review-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.2;
}

.review-position {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   CTA BANNER
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.cta-banner {
  background: var(--grad-dark);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(151,160,167,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: var(--fs-5xl);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  line-height: 1.15;
}

.cta-banner-desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: var(--sp-10);
  line-height: 1.8;
}

.cta-banner-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ
   HOME FAQ SECTION
เนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌเนโ€โฌ */
.home-faq-section {
  background: var(--clr-light);
}

/* เนโ€โฌเนโ€โฌ Centered header เนโ€โฌเนโ€โฌ */
.home-faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-12);
}

.home-faq-header .section-eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.home-faq-header .section-title {
  margin-bottom: var(--sp-4);
}

.home-faq-header .section-desc {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-6);
}

/* เนโ€โฌเนโ€โฌ Accordion container เนโ€โฌเนโ€โฌ */
.home-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

/* เนโ€โฌเนโ€โฌ Each card เนโ€โฌเนโ€โฌ */
.home-faq-section .faq-item {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: box-shadow 0.25s var(--ease);
}

.home-faq-section .faq-item:last-child {
  margin-bottom: 0;
}

.home-faq-section .faq-item:hover,
.home-faq-section .faq-item.open {
  box-shadow: var(--shadow-md);
}

/* เนโ€โฌเนโ€โฌ Question button เนโ€โฌเนโ€โฌ */
.home-faq-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font);
}

/* เนโ€โฌเนโ€โฌ Toggle icon เนโ€โฌเนโ€โฌ */
.home-faq-section .faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-accent);
  transition: var(--t);
}

.home-faq-section .faq-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.home-faq-section .faq-item.open .faq-toggle {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}

.home-faq-section .faq-item.open .faq-toggle svg {
  transform: rotate(45deg);
}

/* เนโ€โฌเนโ€โฌ Answer เนโฌโ€ HIDDEN by default เนโ€โฌเนโ€โฌ */
.home-faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.home-faq-section .faq-item.open .faq-answer {
  max-height: 400px;
}


.home-faq-section .faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.9;
}

/* q-text color on hover */
.home-faq-section .faq-question:hover .faq-q-text {
  color: var(--clr-accent);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .hero-visual {
    order: -1;
  }
  .hero-desc {
    color: #21313f;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
  }
  .why-us-grid > div:first-child {
    display: contents;
  }
  .why-us-grid .section-header {
    order: 1;
    margin-bottom: 0;
  }
  .why-us-visual {
    order: 2;
    margin-bottom: 1rem;
  }
  .why-us-grid .why-us-features {
    order: 3;
    grid-template-columns: 1fr;
  }
  .why-us-metric {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .process-steps::before {
    display: none;
  }
  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: var(--sp-5);
    row-gap: var(--sp-2);
    text-align: left;
    align-items: start;
  }
  .process-step .step-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }
  .process-step .step-title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    margin-top: 4px;
  }
  .process-step .step-desc {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }
  .reviews-preview-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

@media (max-width: 768px) {
  .home-faq-header { margin-bottom: var(--sp-8); }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-label, .partners-divider {
    display: none;
  }
  
  .partners-wrap {
    display: block;
  }
}
/* removed menu-toggle margin-right */

/* โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
   WHY US SECTION
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */

.why-us-content {
  flex: 1 1 500px;
}
.why-us-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.why-us-title {
  font-size: 2.2rem;
  color: var(--clr-accent);
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}
.why-us-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 5px;
  background-color: var(--clr-accent);
  border-radius: 4px;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.progress-item {
  width: 100%;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}
.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e8f5ed;
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #5c7487, #42d875);
  border-radius: 10px;
  position: relative;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1);
}

/* Premium Logo Card */
.premium-logo-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  text-align: center;
  width: 100%;
  max-width: 350px;
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}
.premium-logo-card:hover {
  transform: translateY(-5px);
}
.premium-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 24px auto;
  display: block;
}
.premium-logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 4px;
}
.premium-logo-sub {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

/* โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
   CUSTOM AD BANNER (Why Us)
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */
.ad-banner {
  position: relative;
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
}
.ad-bg-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.ad-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}
.ad-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0) 70%);
}

.ad-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
}

/* Header */
.ad-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.ad-logo-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ad-logo {
  height: 45px;
  margin-bottom: 12px;
}
.ad-title h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a2b3c;
  margin: 0;
  line-height: 1.2;
}
.ad-title p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a5a6a;
  margin: 0;
}

/* 20 Years Shield Badge */
.ad-badge-20y {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #e6e9ec, #c5ccd4);
  border: 3px solid #fff;
  border-radius: 12px 12px 30px 30px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15), inset 0 2px 5px rgba(255,255,255,0.8);
  position: relative;
  margin-top: -10px;
}
.ad-badge-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.ad-badge-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1E2A32;
  display: flex;
  align-items: flex-start;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}
.ad-badge-plus {
  font-size: 1.2rem;
}
.ad-badge-yr {
  font-size: 0.9rem;
  font-weight: 700;
  color: #5c7487;
  margin-top: -5px;
}
.ad-badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  background: #1E2A32;
  color: #fff;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Features */
.ad-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  margin-bottom: 30px;
}
.ad-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 320px;
}
.ad-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5c7487;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(92,116,135,0.4);
}
.ad-feature-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.3;
}

/* Footer Strip */
.ad-footer {
  background: rgba(30, 42, 50, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  gap: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  width: max-content;
  margin: 0 auto;
}
.ad-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ad-footer-divider {
  opacity: 0.3;
}

/* Floating 98% Badge */
.ad-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #1E2A32;
  color: #fff;
  padding: 24px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  z-index: 10;
  border: 2px solid rgba(255,255,255,0.1);
}
.ad-fb-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.ad-fb-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-width: 100px;
  margin: 0 auto;
  line-height: 1.3;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .ad-floating-badge {
    bottom: -15px;
    right: 5px;
    padding: 16px 20px;
  }
  .ad-fb-num { font-size: 2rem; }
  .ad-title h3 { font-size: 1.2rem; }
  .ad-title p { font-size: 0.95rem; }
  .ad-footer { width: 100%; flex-direction: column; gap: 8px; border-radius: 16px; padding: 16px; }
  .ad-footer-divider { display: none; }
}





/* Progress Bar Row Layout (Matches Image) */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.progress-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  gap: 12px;
  border: 1px solid rgba(0,0,0,0.02);
  width: 100%;
  box-sizing: border-box;
}
.progress-name {
  font-weight: 600;
  color: var(--clr-dark);
  font-size: 0.95rem;
  flex: 0 0 130px;
  line-height: 1.3;
}
.progress-bar {
  flex: 1 1 auto;
  min-width: 60px; /* guarantees the bar never disappears */
  height: 8px !important;
  background-color: #e8f5ed !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.progress-fill {
  height: 100% !important;
  background: linear-gradient(90deg, #A4B2BC 0%, #3D5060 100%) !important;
  border-radius: 10px !important;
}
.progress-pct {
  font-weight: 700;
  color: #3D5060;
  font-size: 0.95rem;
  flex: 0 0 40px;
  text-align: right;
}

/* Make sure the title's left bar is bright green */


@media (max-width: 768px) {
  .progress-item {
    padding: 12px 12px;
    gap: 8px;
  }
  .progress-name {
    flex: 0 0 100px; /* fixed width for text so the bar has room */
    font-size: 0.85rem;
  }
  .progress-pct {
    flex: 0 0 35px;
    font-size: 0.85rem;
  }
  .progress-bar {
    min-width: 50px;
  }
  .why-us-title {
    font-size: 1.5rem;
  }
}

/* Reels Grid */
.reels-section {
  background: var(--clr-light);
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  justify-content: center;
  margin-top: var(--sp-12);
}
.reel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--clr-white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .reel-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
}
@media (hover: none) {
  .reel-item:hover {
    transform: none !important;
    box-shadow: var(--shadow-card) !important;
  }
}
.reel-item iframe {
  border-radius: 8px;
  max-width: 100%;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .reels-grid {
    grid-template-columns: 1fr;
  }
}

/* --- COMPREHENSIVE RESPONSIVE FIXES (Home) --- */
@media (max-width: 1200px) {
  .why-us-grid { gap: 40px; }
}
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }
  .portfolio-video-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .portfolio-image-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 12px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .why-us-grid { grid-template-columns: 1fr; }
  .float-card { transform: scale(0.85); }
}
@media (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .process-grid { grid-template-columns: 1fr !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .portfolio-image-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .reels-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .float-card { display: flex !important; transform: scale(0.75); }
  .float-card-1 { top: -5px; right: -5px; }
  .float-card-2 { bottom: -15px; left: -5px; }
}
@media (max-width: 480px) {
  .portfolio-video-grid { grid-template-columns: 1fr !important; }
  .portfolio-image-grid { grid-template-columns: 1fr !important; }
  .reels-item iframe { width: 100% !important; }
}
