/* ==============================================
   COMPONENTS — Reusable UI Pieces
   components.css
   ============================================== */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .6em 1.4em;
  font-size: var(--fs-sm);
  font-weight: 600;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--tr-normal);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(74, 120, 74, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow)
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff
}

.btn-ghost {
  background: var(--overlay-tint);
  color: var(--txt-main);
  border: 1px solid var(--clr-border)
}

.btn-ghost:hover {
  background: var(--overlay-tint-strong);
  border-color: var(--clr-primary)
}

.btn-lg {
  padding: .85em 2em;
  font-size: var(--fs-base)
}

.btn--block {
  width: 100%;
  justify-content: center
}

/* ── Utility: spinner icon (loading states) ── */
@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.spin {
  animation: spin 1s linear infinite
}

/* ── Utility: visually hidden (tracking pixels / noscript iframes) ── */
.visually-hidden {
  display: none
}

/* ── Badges / Pills ── */
.badge {
  display: inline-block;
  padding: .2em .75em;
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--r-full);
  background: rgba(110, 158, 110, .12);
  color: var(--clr-primary);
  border: 1px solid rgba(110, 158, 110, .28);
}

.badge-purple {
  background: rgba(130, 184, 130, .14);
  color: var(--clr-primary);
  border-color: rgba(130, 184, 130, .35)
}

.badge-success {
  background: rgba(110, 158, 110, .12);
  color: var(--clr-success);
  border-color: rgba(110, 158, 110, .25)
}

/* ── Cards ── */
.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: var(--tr-normal);
}

.card:hover {
  border-color: rgba(110, 158, 110, .35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 120, 74, .15);
}

.blog-prose {
  font-size: 1.05rem;
  color: var(--txt-main)
}

.blog-prose h2 {
  font-size: 1.55rem;
  margin: 2.25rem 0 .8rem;
  padding-left: 1rem;
  border-left: 4px solid var(--clr-primary)
}

.blog-prose h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 .65rem
}

.blog-prose p,
.blog-prose ul,
.blog-prose ol,
.blog-prose blockquote {
  margin: 0 0 1.25rem
}

.blog-prose ul,
.blog-prose ol {
  padding-left: 1.4rem
}

.blog-prose li {
  margin: .45rem 0
}

.blog-prose blockquote {
  padding: 1rem 1.25rem;
  background: var(--overlay-tint);
  border-left: 4px solid var(--clr-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--txt-muted)
}

.blog-prose a {
  color: var(--clr-primary);
  text-decoration: underline
}

.blog-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  margin: 1.25rem 0
}

.blog-detail-breadcrumb {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--nav-h, 74px) + 1.5rem);
}

.blog-detail-breadcrumb nav {
  display: flex;
  gap: .5rem;
  align-items: center;
  overflow: hidden;
  white-space: nowrap
}

.blog-detail-breadcrumb nav span:last-child {
  overflow: hidden;
  text-overflow: ellipsis
}

.blog-detail-hero {
  margin-top: var(--sp-4);
  padding-top: var(--sp-12) !important;
  padding-bottom: var(--sp-12) !important
}

.blog-detail-hero h1 {
  max-width: 880px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.18
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  color: #E5F2E5;
  margin-top: var(--sp-4)
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: .4rem
}

.blog-detail-cover {
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-md)
}

.blog-detail-cover img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block
}

.blog-detail-layout {
  display: grid;
  gap: var(--sp-10);
  align-items: start
}

.blog-detail-layout .blog-prose {
  box-shadow: var(--shadow-sm)
}

@media(max-width:900px) {
  .blog-detail-layout {
    grid-template-columns: 1fr !important
  }

  .site-sidebar-wrapper {
    position: static !important
  }

  .blog-detail-hero {
    padding-top: var(--sp-10) !important;
    padding-bottom: var(--sp-10) !important
  }
}

@media(max-width:600px) {
  .blog-detail-meta {
    gap: var(--sp-3);
    font-size: var(--fs-xs)
  }

  .blog-prose {
    padding: var(--sp-6) !important;
    font-size: 1rem
  }

  .blog-prose h2 {
    font-size: 1.35rem
  }

  .blog-detail-cover img {
    max-height: 280px
  }
}

/* ── Section Header ── */
.section-header {
  margin-bottom: var(--sp-12);
  text-align: center
}

.section-header .label {
  display: inline-block;
  margin-bottom: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2 {
  margin-bottom: var(--sp-3)
}

.section-header p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--txt-muted)
}

/* ── Grid Helpers ── */
.grid {
  display: grid;
  gap: var(--sp-6)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  margin: var(--sp-4) auto;
  background: var(--grad-primary);
  border-radius: var(--r-full);
}

/* ── Form Controls ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2)
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--txt-muted)
}

.input {
  width: 100%;
  padding: .7em 1em;
  background: #F2F7F2;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  color: var(--txt-main);
  font-size: var(--fs-sm);
  transition: var(--tr-fast);
}

.input:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 120, 74, .18)
}

textarea.input {
  resize: vertical;
  min-height: 120px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4)
}

/* ── Toast / Notification ── */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-6);
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-primary);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--tr-normal);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1
}

/* ── Glassmorphism Card ── */
.glass {
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(110, 158, 110, .18);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}

/* ═══ 3. TRUST STATS COUNTER SHOWCASE — DESIGN MATCH ═══ */
/* ═══════════════════════════════════════════════════════════════════════════
   3. MODERN BENTO GLASSMORPHISM STAT SHOWCASE
   ═══════════════════════════════════════════════════════════════════════════ */
.section--stats {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 4.25rem 0 4.75rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.stats-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.stats-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-bento-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.75);
  border-radius: 20px;
  padding: 1.85rem 1.5rem 1.65rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.stat-bento-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.15), 0 4px 16px rgba(15, 23, 42, 0.04);
}

/* Glowing Top Beam on Hover */
.stat-bento-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #34D399 0%, #10B981 50%, #059669 100%);
  opacity: 0;
  transform: scaleX(0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-bento-card:hover .stat-bento-beam {
  opacity: 1;
  transform: scaleX(1);
}

/* Card Top Bar: Icon + Micro-Proof Badge */
.stat-bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.stat-bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #10B981;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-bento-card:hover .stat-bento-icon {
  transform: scale(1.08) rotate(4deg);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}

.stat-bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  letter-spacing: -0.1px;
}
.stat-bento-badge i {
  font-size: 0.8rem;
  color: #10B981;
}

/* Card Main Area: Number + Label */
.stat-bento-main {
  display: flex;
  flex-direction: column;
}

.stat-bento-number {
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', 'Kanit', sans-serif);
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.45rem;
  transition: transform 0.3s ease;
}
.stat-bento-card:hover .stat-bento-number {
  transform: scale(1.03);
}

.stat-bento-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.2px;
  line-height: 1.35;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
  .stats-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 576px) {
  .stats-bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-bento-card {
    padding: 1.4rem 1.25rem;
  }
}

/* ═══ 5. CORE SERVICES — REFERENCE DESIGN MATCH ═══ */
.section--services-custom {
  position: relative;
  padding: 5rem 0 6rem;
  background: #fbfdfb;
  overflow: hidden;
}

.section-header--services {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(14, 177, 66, 0.2);
}

.services-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.8px;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading, 'Plus Jakarta Sans', 'Kanit', sans-serif);
}

.services-sub-title {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.services-header-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0.5rem;
}

/* ─── Modern Minimal Studio Grid for Section 5 (Services 3x2) ─── */
.services-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.75rem;
}

.svc-minimal-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 20px;
  padding: 1.25rem 1.25rem 1.45rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.svc-minimal-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.14), 0 4px 16px rgba(15, 23, 42, 0.03);
}

/* 16:9 Image Container with Floating Badge */
.svc-minimal-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

.svc-minimal-img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.svc-minimal-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.svc-minimal-card:hover .svc-minimal-img-box img {
  transform: scale(1.05);
}

.svc-minimal-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
  z-index: 2;
}

/* Card Body */
.svc-minimal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0.25rem 0.75rem;
}

.svc-minimal-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  letter-spacing: -0.3px;
  min-height: 2.7em;
  transition: color 0.25s ease;
}

.svc-minimal-card:hover .svc-minimal-title {
  color: #059669;
}

.svc-minimal-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.15rem;
  min-height: 4.8em;
}

/* Checklist items */
.svc-minimal-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-minimal-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 600;
}

.svc-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Card Footer */
.svc-minimal-footer {
  border-top: 1px solid rgba(241, 245, 249, 1);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.svc-minimal-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.svc-minimal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.25s ease;
}

.svc-minimal-btn:hover {
  background: #10B981;
  border-color: #10B981;
  color: #ffffff;
}

.svc-minimal-btn i {
  transition: transform 0.25s ease;
}

.svc-minimal-btn:hover i {
  transform: translateX(3px);
}

/* ─── Bottom 4 Services Trust Strip ─── */
.services-trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
}

.svc-trust-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.5rem 0.75rem;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-trust-pill:not(:last-child) {
  border-right: 1px solid rgba(226, 232, 240, 0.85);
}

.svc-trust-pill:hover {
  background: rgba(16, 185, 129, 0.04);
}

.svc-trust-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(5, 150, 105, 0.06) 100%);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-trust-pill:hover .svc-trust-pill-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
  border-color: transparent;
}

.svc-trust-pill-text {
  display: flex;
  flex-direction: column;
}

.svc-trust-pill-text strong {
  font-size: 0.94rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.svc-trust-pill-text span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .services-custom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .services-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-trust-pill:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .services-custom-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .services-trust-strip {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .svc-trust-pill {
    border-right: none !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    padding-bottom: 0.75rem;
  }
  .svc-trust-pill:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ── Legacy Service Card Fallback ── */
.service-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: var(--tr-normal);
}

.service-card:hover {
  border-color: rgba(74, 120, 74, .38);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 120, 74, .15);
}

/* ═══ 7. WORK PROCESS (4 STEPS — DESIGN MATCH) ═══ */
.section--process-custom {
  position: relative;
  padding: 5.5rem 0 6rem;
  background: #fbfdfb;
  overflow: hidden;
}

.section-header--process {
  text-align: center;
  margin-bottom: 4rem;
}

.process-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(14, 177, 66, 0.2);
}

.process-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.8px;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading, 'Plus Jakarta Sans', 'Kanit', sans-serif);
}

.process-sub-title {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.process-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-bottom: 3.5rem;
}

/* Connecting Dotted Line on Desktop */
@media (min-width: 993px) {
  .process-grid-v2::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(to right, #0EB142 40%, transparent 40%);
    background-size: 12px 2px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
  }
}

/* Step Card V2 */
.process-card-v2 {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(130, 184, 130, 0.2);
  padding: 2.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 38px -8px rgba(0, 30, 15, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -10px rgba(74, 120, 74, 0.15), 0 0 0 1px rgba(130, 184, 130, 0.35);
  border-color: rgba(130, 184, 130, 0.45);
}

.process-card-v2__num-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0EB142;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(14, 177, 66, 0.3);
  z-index: 3;
}

.process-card-v2__visual {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 1.25rem;
}

.step-art-svg {
  width: 100%;
  max-width: 155px;
  height: auto;
  transition: transform 0.35s ease;
}

.process-card-v2:hover .step-art-svg {
  transform: scale(1.06);
}

.process-card-v2__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.process-card-v2__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1.25rem;
  flex: 1;
}

.process-card-v2__icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f2f9f2;
  border: 1px solid rgba(130, 184, 130, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0EB142;
  box-shadow: 0 4px 12px rgba(14, 177, 66, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.process-card-v2:hover .process-card-v2__icon-btn {
  transform: scale(1.12) rotate(6deg);
  background: #0EB142;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(14, 177, 66, 0.25);
}

/* ─── Process Trust Bar ─── */
.process-trust-bar {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(130, 184, 130, 0.22);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 12px 32px -8px rgba(0, 30, 15, 0.05);
}

.process-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.25rem 0.5rem;
}

.process-trust-item:not(:last-child) {
  border-right: 1px solid rgba(130, 184, 130, 0.18);
}

.process-trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-trust-text {
  display: flex;
  flex-direction: column;
}

.process-trust-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px;
}

.process-trust-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 992px) {
  .process-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .process-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .process-trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .process-grid-v2 {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .process-trust-bar {
    grid-template-columns: 1fr;
  }
  .process-trust-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(130, 184, 130, 0.15);
    padding-bottom: 0.75rem;
  }
  .process-trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .process-main-title {
    font-size: 2.1rem;
  }
}

/* ── Legacy Process Steps Fallback ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-6)
}

.step-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}

.step-item h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2)
}

.step-item p {
  font-size: var(--fs-sm);
  color: var(--txt-muted);
  margin: 0
}

/* ── Portfolio Cards ── */
.portfolio-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--tr-normal);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: rgba(74, 120, 74, .38);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 120, 74, .15);
}

.portfolio-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8f4fd;
}

.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr-normal)
}

.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.04)
}

.portfolio-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2)
}

.portfolio-card__cat {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-primary);
  text-transform: uppercase
}

.portfolio-card h3 {
  font-size: var(--fs-lg);
  margin: 0
}

.portfolio-card p {
  font-size: var(--fs-sm);
  color: var(--txt-muted);
  margin: 0
}

/* ═══ 8. PRICING & PACKAGES (DESIGN MATCH) ═══ */
.section--pricing-custom {
  position: relative;
  padding: 5.5rem 0 6rem;
  background: #ffffff;
  overflow: hidden;
}

.section-header--pricing {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(14, 177, 66, 0.2);
}

.pricing-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.8px;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading, 'Plus Jakarta Sans', 'Kanit', sans-serif);
}

.pricing-sub-title {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
  align-items: stretch;
}

/* Pricing Card V2 */
.pricing-card-v2 {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(130, 184, 130, 0.25);
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 14px 38px -8px rgba(0, 30, 15, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -10px rgba(74, 120, 74, 0.16), 0 0 0 1px rgba(130, 184, 130, 0.35);
  border-color: rgba(130, 184, 130, 0.5);
}

/* Popular Card Highlight */
.pricing-card-v2--popular {
  border: 2px solid #0EB142;
  box-shadow: 0 20px 50px -10px rgba(14, 177, 66, 0.18), 0 4px 12px rgba(14, 177, 66, 0.06);
  transform: scale(1.02);
}

.pricing-card-v2--popular:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 28px 60px -10px rgba(14, 177, 66, 0.25);
}

.pricing-card-v2__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0EB142;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(14, 177, 66, 0.35);
  z-index: 3;
}

.pricing-card-v2__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #0EB142;
  transition: transform 0.3s ease;
}

.pricing-card-v2:hover .pricing-card-v2__icon {
  transform: scale(1.1) rotate(4deg);
}

.pricing-card-v2__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 0.35rem;
  letter-spacing: -0.3px;
}

.pricing-card-v2__desc {
  font-size: 0.88rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 1.25rem;
  min-height: 2.4em;
  line-height: 1.45;
}

.pricing-card-v2__price-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(130, 184, 130, 0.3);
}

.pricing-card-v2__price {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0EB142;
  letter-spacing: -0.5px;
}

.pricing-card-v2__unit {
  font-size: 0.95rem;
  color: #4b5563;
  font-weight: 600;
  margin-left: 4px;
}

.pricing-card-v2__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.pricing-card-v2__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.45;
}

.pricing-card-v2__feature-icon {
  color: #0EB142;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card-v2__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-card-v2__btn--outline {
  border: 1.5px solid #0EB142;
  color: #0EB142;
  background: #ffffff;
}

.pricing-card-v2__btn--outline:hover {
  background: #0EB142;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.25);
}

.pricing-card-v2__btn--solid {
  background: #0EB142;
  color: #ffffff;
  border: 1.5px solid #0EB142;
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.3);
}

.pricing-card-v2__btn--solid:hover {
  background: #0ba03a;
  border-color: #0ba03a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14, 177, 66, 0.4);
}

/* ─── Pricing Trust Bar ─── */
.pricing-trust-bar {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(130, 184, 130, 0.22);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 12px 32px -8px rgba(0, 30, 15, 0.05);
  margin-bottom: 4rem;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.25rem 0.5rem;
}

.pricing-trust-item:not(:last-child) {
  border-right: 1px solid rgba(130, 184, 130, 0.18);
}

.pricing-trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-trust-text {
  display: flex;
  flex-direction: column;
}

.pricing-trust-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px;
}

.pricing-trust-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 992px) {
  .pricing-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
  }
  .pricing-card-v2--popular {
    transform: none;
  }
  .pricing-card-v2--popular:hover {
    transform: translateY(-8px);
  }
  .pricing-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .pricing-trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .pricing-trust-bar {
    grid-template-columns: 1fr;
  }
  .pricing-trust-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(130, 184, 130, 0.15);
    padding-bottom: 0.75rem;
  }
  .pricing-trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .pricing-main-title {
    font-size: 2.1rem;
  }
}

/* ── Legacy Pricing Matrix & Cards Fallback ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  transition: var(--tr-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 158, 110, .45);
  box-shadow: var(--shadow-glow)
}

.pricing-card--popular {
  border: 2px solid var(--clr-primary);
  box-shadow: 0 8px 32px rgba(74, 120, 74, .18);
  transform: scale(1.03);
}

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

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  padding: .3em 1em;
  font-size: var(--fs-xs);
  font-weight: 700;
  border-radius: var(--r-full);
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(74, 120, 74, .35);
}

.pricing-header {
  margin-bottom: var(--sp-6);
  text-align: center
}

.pricing-header h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-2)
}

.pricing-price {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-primary);
  margin: var(--sp-4) 0
}

.pricing-price span {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--txt-muted)
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-8) 0;
  flex: 1
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: .5em 0;
  font-size: var(--fs-sm);
  color: var(--txt-muted);
  border-bottom: 1px dashed rgba(74, 120, 74, .12);
}

.pricing-features li i {
  color: var(--clr-success);
  font-size: 1.1em;
  flex-shrink: 0
}

.pricing-features li.disabled {
  color: var(--txt-dim);
  text-decoration: line-through
}

.pricing-features li.disabled i {
  color: var(--txt-dim)
}

/* ═══ PRICE CALCULATOR WIZARD (DESIGN MATCH) ═══ */
.calc-wizard-v2 {
  max-width: 1140px;
  margin: 0 auto;
}

.calc-wizard-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(130, 184, 130, 0.25);
  padding: 3.5rem 3rem 2.5rem;
  box-shadow: 0 18px 45px -10px rgba(0, 30, 15, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.calc-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.8px;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading, 'Plus Jakarta Sans', 'Kanit', sans-serif);
}

.calc-sub-title {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto;
}

.calc-step-group {
  margin-bottom: 2rem;
}

.calc-step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.calc-step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0EB142;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

/* Step 1 Type Grid */
.calc-type-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.calc-type-card-v2 {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calc-type-card-v2:hover {
  border-color: rgba(14, 177, 66, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14, 177, 66, 0.08);
}

.calc-type-card-v2.selected {
  border: 2px solid #0EB142;
  box-shadow: 0 12px 30px rgba(14, 177, 66, 0.14);
}

.calc-type-card-v2__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0EB142;
  display: none;
  align-items: center;
  justify-content: center;
}

.calc-type-card-v2.selected .calc-type-card-v2__badge {
  display: flex;
}

.calc-type-card-v2__graphic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-type-card-v2__info {
  flex: 1;
}

.calc-type-card-v2__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
}

.calc-type-card-v2__desc {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0 0 8px;
  line-height: 1.35;
}

.calc-type-card-v2__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0EB142;
}

/* Step 2 Addon Grid */
.calc-addon-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.calc-addon-card-v2 {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calc-addon-card-v2:hover {
  border-color: rgba(14, 177, 66, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14, 177, 66, 0.08);
}

.calc-addon-card-v2.selected {
  border: 2px solid #0EB142;
  box-shadow: 0 12px 28px rgba(14, 177, 66, 0.12);
}

.calc-addon-card-v2__box {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.calc-addon-card-v2__box svg {
  display: none;
}

.calc-addon-card-v2.selected .calc-addon-card-v2__box {
  background: #0EB142;
  border-color: #0EB142;
}

.calc-addon-card-v2.selected .calc-addon-card-v2__box svg {
  display: block;
}

.calc-addon-card-v2__icon {
  margin-bottom: 0.85rem;
}

.calc-addon-card-v2__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.calc-addon-card-v2__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
}

.calc-addon-card-v2__desc {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0 0 10px;
  line-height: 1.35;
  flex: 1;
}

.calc-addon-card-v2__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0EB142;
}

/* Summary Bar V2 */
.calc-summary-bar-v2 {
  background: #fbfdfb;
  border-radius: 20px;
  border: 1px solid rgba(130, 184, 130, 0.3);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 30, 15, 0.04);
}

.calc-summary-bar-v2__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc-summary-bar-v2__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0EB142;
  flex-shrink: 0;
}

.calc-summary-bar-v2__price-block {
  display: flex;
  flex-direction: column;
}

.calc-summary-bar-v2__label {
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 600;
  margin-bottom: 2px;
}

.calc-summary-bar-v2__value {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

#calcTotalNumber {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0EB142;
  letter-spacing: -0.5px;
  line-height: 1;
}

.calc-summary-bar-v2__unit {
  font-size: 1.1rem;
  color: #4b5563;
  font-weight: 700;
}

.calc-summary-bar-v2__mid {
  flex: 1;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(130, 184, 130, 0.2);
  border-right: 1px solid rgba(130, 184, 130, 0.2);
}

.calc-summary-bar-v2__mid-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}

.calc-summary-bar-v2__selected-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-summary-bar-v2__selected-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #374151;
  font-weight: 500;
}

.calc-summary-bar-v2__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.calc-summary-bar-v2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0EB142;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.calc-summary-bar-v2__btn:hover {
  background: #0ba03a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14, 177, 66, 0.4);
  color: #ffffff;
}

.calc-summary-bar-v2__trust-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #4b5563;
}

.calc-wizard-card__footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 992px) {
  .calc-type-grid-v2 {
    grid-template-columns: 1fr;
  }
  .calc-addon-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-summary-bar-v2 {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .calc-summary-bar-v2__mid {
    padding: 1rem 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(130, 184, 130, 0.2);
    border-bottom: 1px solid rgba(130, 184, 130, 0.2);
  }
}

@media (max-width: 640px) {
  .calc-wizard-card {
    padding: 2rem 1.25rem 1.5rem;
  }
  .calc-addon-grid-v2 {
    grid-template-columns: 1fr;
  }
  .calc-main-title {
    font-size: 2rem;
  }
}

/* ── Legacy Price Calculator Wizard Fallback ── */
.calc-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
}

.calc-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
}

.calc-total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: rgba(74, 120, 74, .08);
  border: 1px solid rgba(74, 120, 74, .25);
}

/* ── Trusted-by Logo Strip (auto-scrolling marquee) ── */
.logo-strip {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-strip__track {
  display: flex;
  gap: var(--sp-8);
  width: max-content;
  animation: logoScroll 28s linear infinite
}

.logo-strip:hover .logo-strip__track {
  animation-play-state: paused
}

.logo-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--txt-muted);
  font-size: var(--fs-sm);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  background: #F2F7F2;
}

.logo-strip__item i {
  color: var(--clr-primary);
  font-size: 1.2em
}

@keyframes logoScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══ PRICING CATEGORY TABS & PANES ═══ */
.pricing-category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  max-width: 800px;
}

.pricing-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1.5px solid rgba(130, 184, 130, 0.35);
  color: #374151;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 30, 15, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.pricing-tab-btn i {
  font-size: 1.25rem;
  color: #0EB142;
  transition: transform 0.25s ease, color 0.25s ease;
}

.pricing-tab-btn:hover {
  border-color: #0EB142;
  color: #0EB142;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 177, 66, 0.12);
}

.pricing-tab-btn:hover i {
  transform: scale(1.15);
}

.pricing-tab-btn.active {
  background: #0EB142;
  border-color: #0EB142;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(14, 177, 66, 0.32);
}

.pricing-tab-btn.active i {
  color: #ffffff;
}

.pricing-pane {
  display: none;
  animation: fadeInPricingPane 0.4s ease forwards;
}

.pricing-pane.active {
  display: block;
}

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

/* ═══ 9. REAL CLIENT TESTIMONIALS (DESIGN MATCH) ═══ */
.section--testimonials-custom {
  position: relative;
  padding: 5.5rem 0 6rem;
  background: #fbfdfb;
  overflow: hidden;
}

.section-header--testimonials {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Testimonial Carousel Track & Slides */
.testimonial-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.testimonial-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  will-change: transform;
}

.testimonial-slide-page {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
}

.testimonial-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.testimonial-card-v2 {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(130, 184, 130, 0.22);
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 38px -8px rgba(0, 30, 15, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -10px rgba(74, 120, 74, 0.15), 0 0 0 1px rgba(130, 184, 130, 0.35);
  border-color: rgba(130, 184, 130, 0.45);
}

.testimonial-card-v2__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.testimonial-card-v2__stars {
  display: flex;
  gap: 4px;
  color: #0EB142;
  font-size: 1.15rem;
}

.testimonial-card-v2__quote-icon {
  color: #b8e2b8;
  opacity: 0.8;
  display: flex;
}

.testimonial-card-v2__quote-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #111827;
  font-weight: 500;
  margin: 0 0 1.75rem;
  flex: 1;
  font-style: normal;
}

.testimonial-card-v2__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(130, 184, 130, 0.25);
}

.testimonial-card-v2__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4A784A;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(74, 120, 74, 0.25);
}

.testimonial-card-v2__info {
  display: flex;
  flex-direction: column;
}

.testimonial-card-v2__name {
  font-size: 1.02rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px;
}

.testimonial-card-v2__role {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0 0 2px;
}

.testimonial-card-v2__site {
  font-size: 0.82rem;
  color: #0EB142;
  font-weight: 600;
  text-decoration: none;
}

.testimonial-card-v2__site:hover {
  text-decoration: underline;
}

/* Pagination Nav */
.testimonial-nav-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.5rem 0 3.5rem;
}

.testimonial-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.testimonial-nav-btn:hover {
  background: #0EB142;
  border-color: #0EB142;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(14, 177, 66, 0.3);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot:hover {
  background: #94a3b8;
}

.testimonial-dot--active {
  width: 24px;
  height: 10px;
  border-radius: 5px;
  background: #0EB142;
  box-shadow: 0 2px 8px rgba(14, 177, 66, 0.4);
}

/* Testimonials Trust Bar */
.testimonials-trust-bar {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(130, 184, 130, 0.25);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 12px 32px -8px rgba(0, 30, 15, 0.05);
}

.testimonials-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.25rem 0.5rem;
}

.testimonials-trust-item:not(:last-child) {
  border-right: 1px solid rgba(130, 184, 130, 0.18);
}

.testimonials-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f5e8;
  color: #0EB142;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials-trust-text {
  display: flex;
  flex-direction: column;
}

.testimonials-trust-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0EB142;
  margin: 0;
  line-height: 1.2;
}

.testimonials-trust-main--text {
  font-size: 1.25rem;
}

.testimonials-trust-sub {
  font-size: 0.82rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 992px) {
  .testimonial-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonials-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .testimonials-trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .testimonials-trust-bar {
    grid-template-columns: 1fr;
  }
  .testimonials-trust-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(130, 184, 130, 0.15);
    padding-bottom: 0.75rem;
  }
  .testimonials-trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ═══ PACKAGE QUOTE & ORDER MODAL ═══ */
.pkg-quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 14, 8, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pkg-quote-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.pkg-quote-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  border-radius: 28px;
  border: 1.5px solid rgba(130, 184, 130, 0.4);
  box-shadow: 0 28px 65px -12px rgba(0, 45, 20, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  padding: 2.25rem 2.25rem 2rem;
  transform: scale(0.9) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}

.pkg-quote-modal-overlay.is-active .pkg-quote-modal-card {
  transform: scale(1) translateY(0);
}

.pkg-modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.pkg-modal-close-btn:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #ef4444;
  transform: rotate(90deg);
}

.pkg-modal-header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.pkg-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(14, 177, 66, 0.12);
  border: 1px solid rgba(14, 177, 66, 0.3);
  color: #0EB142;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pkg-modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.5rem;
  line-height: 1.25;
  font-family: var(--font-heading, 'Plus Jakarta Sans', 'Kanit', sans-serif);
}

.pkg-modal-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(130, 184, 130, 0.4);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}

.pkg-modal-price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #166534;
}

.pkg-modal-price-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0EB142;
}

.pkg-modal-price-unit {
  font-size: 0.9rem;
  font-weight: 700;
  color: #166534;
}

.pkg-modal-form-group {
  margin-bottom: 1rem;
}

.pkg-modal-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.35rem;
}

.pkg-modal-input,
.pkg-modal-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #111827;
  background: #ffffff;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.pkg-modal-input:focus,
.pkg-modal-textarea:focus {
  outline: none;
  border-color: #0EB142;
  box-shadow: 0 0 0 3.5px rgba(14, 177, 66, 0.18);
  background: #ffffff;
}

.pkg-modal-textarea {
  resize: vertical;
  min-height: 70px;
}

.pkg-modal-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: #0EB142;
  border: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(14, 177, 66, 0.35);
  transition: all 0.25s ease;
  margin-top: 0.5rem;
  font-family: inherit;
}

.pkg-modal-submit-btn:hover {
  background: #0ba03a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 177, 66, 0.45);
}

.pkg-modal-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #94a3b8;
  font-size: 0.8rem;
  margin: 1.25rem 0;
}

.pkg-modal-divider::before,
.pkg-modal-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.pkg-modal-divider:not(:empty)::before {
  margin-right: 0.75em;
}

.pkg-modal-divider:not(:empty)::after {
  margin-left: 0.75em;
}

.pkg-modal-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pkg-modal-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pkg-modal-quick-btn--line {
  background: #06C755;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
}

.pkg-modal-quick-btn--line:hover {
  background: #05b34c;
  color: #ffffff;
  transform: translateY(-2px);
}

.pkg-modal-quick-btn--call {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #334155;
}

.pkg-modal-quick-btn--call:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
  transform: translateY(-2px);
}

/* ── Legacy Testimonials Fallback ── */
.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: var(--tr-normal);
}

.testimonial-card:hover {
  border-color: rgba(110, 158, 110, .35);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(74, 120, 74, .1)
}

.rating-stars {
  color: #6E9E6E;
  display: flex;
  gap: 2px
}

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--txt-muted);
  line-height: 1.6;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--grad-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.testimonial-info h4 {
  font-size: var(--fs-sm);
  margin: 0
}

.testimonial-info p {
  font-size: var(--fs-xs);
  color: var(--txt-dim);
  margin: 0
}

/* ═══ 10. FAQ ACCORDION (DESIGN MATCH) ═══ */
.section--faq-custom {
  position: relative;
  padding: 5.5rem 0 6rem;
  background: #ffffff;
  overflow: hidden;
}

.section-header--faq {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* FAQ Search Bar */
.faq-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto 3.5rem;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border-radius: 30px;
  border: 1px solid rgba(130, 184, 130, 0.3);
  background: #ffffff;
  font-size: 0.95rem;
  color: #111827;
  box-shadow: 0 4px 18px rgba(0, 30, 15, 0.04);
  outline: none;
  transition: all 0.3s ease;
}

.faq-search-input:focus {
  border-color: #0EB142;
  box-shadow: 0 6px 22px rgba(14, 177, 66, 0.12);
}

/* FAQ Main Grid (Left Accordion, Right Visual & Support) */
.faq-layout-grid-v2 {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

/* Accordion Column */
.faq-accordion-v2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card-v2 {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card-v2.active {
  border: 2px solid #0EB142;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(14, 177, 66, 0.08);
}

.faq-card-v2__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-card-v2__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-card-v2.active .faq-card-v2__badge {
  background: #0EB142;
  color: #ffffff;
}

.faq-card-v2__question {
  font-size: 1.02rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.faq-card-v2__chevron {
  color: #0EB142;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card-v2.active .faq-card-v2__chevron {
  transform: rotate(180deg);
}

.faq-card-v2__body {
  padding: 0 1.5rem 1.5rem 4.25rem;
  display: none;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
}

.faq-card-v2.active .faq-card-v2__body {
  display: block;
}

.faq-card-v2__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-top: 10px;
}

/* Sidebar Column */
.faq-sidebar-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-art-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.faq-support-card-v2 {
  background: #f8fcf8;
  border-radius: 24px;
  border: 1px solid rgba(130, 184, 130, 0.25);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 30, 15, 0.04);
}

.faq-support-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f5e8;
  color: #0EB142;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.faq-support-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}

.faq-support-desc {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.faq-support-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0EB142;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.25);
  transition: all 0.3s ease;
}

.faq-support-btn:hover {
  background: #0ba03a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14, 177, 66, 0.35);
}

/* FAQ Trust Bar */
.faq-trust-bar {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(130, 184, 130, 0.25);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 12px 32px -8px rgba(0, 30, 15, 0.05);
}

.faq-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.25rem 0.5rem;
}

.faq-trust-item:not(:last-child) {
  border-right: 1px solid rgba(130, 184, 130, 0.18);
}

.faq-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f5e8;
  color: #0EB142;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-trust-text {
  display: flex;
  flex-direction: column;
}

.faq-trust-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px;
}

.faq-trust-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 992px) {
  .faq-layout-grid-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .faq-trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .faq-card-v2__body {
    padding-left: 1.5rem;
  }
  .faq-trust-bar {
    grid-template-columns: 1fr;
  }
  .faq-trust-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(130, 184, 130, 0.15);
    padding-bottom: 0.75rem;
  }
  .faq-trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ── Legacy FAQ Fallback ── */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4)
}

.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--tr-fast);
}

.faq-item.active {
  border-color: rgba(74, 120, 74, .35);
  box-shadow: 0 4px 20px rgba(74, 120, 74, .12)
}

.faq-question {
  width: 100%;
  padding: var(--sp-6);
  background: none;
  border: none;
  color: var(--txt-main);
  font-size: var(--fs-base);
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: var(--sp-4);
}

.faq-question i {
  font-size: 1.2em;
  color: var(--clr-primary);
  transition: transform .3s ease
}

.faq-item.active .faq-question i {
  transform: rotate(180deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 var(--sp-6);
  color: var(--txt-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 var(--sp-6) var(--sp-6) var(--sp-6);
  max-height: 300px
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE 3D FLOATING CONTACT HUB & MULTI-CHANNEL MODAL
═══════════════════════════════════════════════════════════════ */
.contact-hub-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.contact-hub-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-hub-modal {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 330px;
  max-width: calc(100vw - 28px);
  max-height: min(68vh, 485px);
  background: #f8fafc;
  border-radius: 22px;
  box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.9) inset, 0 8px 24px -4px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: bottom right;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.contact-hub-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal Header */
.contact-hub-header {
  padding: 13px 15px 11px 16px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}

.contact-hub-header__brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.contact-hub-header__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, #e8f5e9 0%, #dcfce7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(46, 107, 52, 0.16);
}

.hub-chat-svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 3px rgba(46, 107, 52, 0.22));
}

.contact-hub-title {
  font-family: var(--font-heading, 'Kanit', sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.contact-hub-subtitle {
  font-size: 0.75rem;
  color: #64748b;
  margin: 2px 0 0 0;
  line-height: 1.2;
  font-weight: 400;
}

.contact-hub-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.contact-hub-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg) scale(1.05);
}

/* Modal Body */
.contact-hub-body {
  padding: 10px 11px 13px 11px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.contact-hub-body::-webkit-scrollbar {
  width: 5px;
}

.contact-hub-body::-webkit-scrollbar-track {
  background: transparent;
}

.contact-hub-body::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 8px;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Contact Item Card */
.contact-item-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 11px;
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.025);
  position: relative;
  overflow: hidden;
}

.contact-item-card:hover {
  transform: translateY(-2px) scale(1.01);
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px -3px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
}

.contact-item-card:active {
  transform: scale(0.98);
}

/* Card Icons with Squircle design */
.contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s ease;
}

.contact-item-card:hover .contact-item-icon {
  transform: scale(1.05);
}

.contact-item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Card Info */
.contact-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-family: var(--font-heading, 'Kanit', sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.contact-item-val {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-item-arrow {
  color: #94a3b8;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-item-card:hover .contact-item-arrow {
  transform: translateX(2px);
  color: #2e6b34;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING HUB TRIGGER BUTTON (Bottom Right)
═══════════════════════════════════════════════════════════════ */
.floating-hub-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.floating-hub-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-hub-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-hub-top-btn:hover {
  background: #2e6b34;
  color: #ffffff;
  border-color: #2e6b34;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(46, 107, 52, 0.25);
}

.floating-hub-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e6b34 0%, #4a8a50 50%, #6ea86e 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(46, 107, 52, 0.42), 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}

.floating-hub-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(46, 107, 52, 0.55), 0 4px 10px rgba(0, 0, 0, 0.12);
}

.floating-hub-trigger:active {
  transform: scale(0.94);
}

.hub-icon-wrap {
  width: 28px;
  height: 28px;
  position: relative;
}

.hub-icon-chat,
.hub-icon-close {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.hub-icon-chat {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.hub-icon-close {
  transform: rotate(-90deg) scale(0.4);
  opacity: 0;
}

/* State when Hub is opened */
.floating-hub-trigger.is-open {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.45);
}

.floating-hub-trigger.is-open .hub-icon-chat {
  transform: rotate(90deg) scale(0.4);
  opacity: 0;
}

.floating-hub-trigger.is-open .hub-icon-close {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* Breathing Pulsing Ring */
.hub-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(74, 138, 80, 0.55);
  animation: hubPulseGlow 2.4s infinite ease-out;
  pointer-events: none;
}

.floating-hub-trigger.is-open .hub-pulse-ring {
  display: none;
}

@keyframes hubPulseGlow {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  60% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Responsive adjustment for Mobile & Tablet screens */
@media (max-width: 640px) {
  .contact-hub-modal {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    max-height: min(65vh, 440px);
    border-radius: 20px;
  }
  .floating-hub-wrapper {
    right: 14px;
    bottom: 14px;
  }
  .floating-hub-trigger {
    width: 52px;
    height: 52px;
  }
}

@media (max-height: 600px) {
  .contact-hub-modal {
    max-height: 60vh;
  }
}

/* ── Cookie Consent Popup (small, bottom-left) ── */
.cookie-banner {
  position: fixed;
  left: var(--sp-6);
  bottom: var(--sp-6);
  z-index: 999;
  width: 340px;
  max-width: calc(100vw - var(--sp-8));
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  color: var(--txt-main);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--tr-normal);
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.cookie-banner p {
  color: var(--txt-muted);
  font-size: var(--fs-xs);
  line-height: 1.5;
  margin: 0
}

.cookie-trigger-btn {
  position: fixed;
  left: var(--sp-6);
  bottom: var(--sp-6);
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(16, 23, 32, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #88bdf2;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: var(--tr-normal);
}

.cookie-trigger-btn:hover {
  transform: scale(1.1);
  color: #fff;
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-glow)
}

@media(max-width:640px) {
  .cookie-banner {
    left: var(--sp-4);
    right: var(--sp-4);
    bottom: var(--sp-4);
    width: auto
  }

  .cookie-trigger-btn {
    position: fixed;
    left: var(--sp-6);
    bottom: var(--sp-6);
    z-index: 998;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(16, 23, 32, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #88bdf2;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: var(--tr-normal);
  }
}

/* ── Responsive tweaks ── */
@media(max-width:640px) {
  .form-grid {
    grid-template-columns: 1fr
  }

  .btn-lg {
    width: 100%;
    justify-content: center
  }

  .pricing-card--popular {
    transform: none
  }

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

  .floating-widget {
    bottom: var(--sp-4);
    right: var(--sp-4)
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.25rem
  }
}

/* ── Index Redesign Custom Components ── */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #d1e2f3;
  background: rgba(255, 255, 255, 0.06);
  padding: .4rem .8rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-trust-item i {
  color: #88bdf2;
  font-size: 1.1em;
}

/* ══════════════════════════════════════
   WHY CHOOSE US — Minimalist 3D Glassmorphism Grid
════════════════════════════════════════ */
.section--why {
  position: relative;
  background: #f8fbff;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(130, 184, 130, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(74, 120, 74, 0.06) 0%, transparent 40%);
}

.section-header__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-block: var(--sp-3) var(--sp-2);
}

.section-header__dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #82B882;
  opacity: 0.5;
}

.section-header__dots span:nth-child(2) {
  width: 8px;
  height: 8px;
  background: #4A784A;
  opacity: 1;
}

/* ═══ 4. WHY CHOOSE US — REFERENCE DESIGN MATCH ═══ */
.section--why {
  position: relative;
  padding: 5rem 0 6rem;
  background: #fbfdfb;
  overflow: hidden;
}

.section-header--why-custom {
  margin-bottom: 3.5rem;
  text-align: center;
}

.why-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(14, 177, 66, 0.2);
}

.why-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.8px;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading, 'Plus Jakarta Sans', 'Kanit', sans-serif);
}

.text-green-highlight {
  color: #0EB142;
  display: inline-block;
}

.why-sub-title {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto;
}

.why-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.65rem;
  margin-bottom: 2.75rem;
}

/* ─── Modern Minimal Clean Cards (Left-Aligned Studio Style) ─── */
.why-minimal-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 20px;
  padding: 2.15rem 1.75rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.why-minimal-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.14), 0 4px 16px rgba(15, 23, 42, 0.03);
}

.why-minimal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.35rem;
}

.why-minimal-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 1px solid rgba(52, 211, 153, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #10B981;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-minimal-card:hover .why-minimal-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}

.why-minimal-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: rgba(148, 163, 184, 0.45);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.why-minimal-card:hover .why-minimal-num {
  color: #10B981;
}

.why-minimal-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.65rem;
  letter-spacing: -0.3px;
  line-height: 1.35;
}

.why-minimal-desc {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* ─── Bottom 4 Trust Highlights Strip (Modern Studio Style) ─── */
.why-trust-pill-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
  position: relative;
}

.why-trust-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.5rem 0.75rem;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.why-trust-pill:not(:last-child) {
  border-right: 1px solid rgba(226, 232, 240, 0.85);
}

.why-trust-pill:hover {
  background: rgba(16, 185, 129, 0.04);
}

.why-trust-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(5, 150, 105, 0.06) 100%);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-trust-pill:hover .why-trust-pill-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
  border-color: transparent;
}

.why-trust-pill-text {
  display: flex;
  flex-direction: column;
}

.why-trust-pill-text strong {
  font-size: 0.94rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.why-trust-pill-text span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .why-custom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .why-trust-pill-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-trust-pill:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .why-custom-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .why-trust-pill-strip {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .why-trust-pill {
    border-right: none !important;
    border-bottom: 1px solid rgba(203, 213, 225, 0.6);
    padding-bottom: 0.75rem;
  }
  .why-trust-pill:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.tech-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  transition: var(--tr-fast);
}

.tech-card:hover {
  border-color: var(--clr-primary);
  background: var(--clr-card-hover);
}

.tech-card i {
  font-size: 2rem;
  color: var(--clr-primary);
}

.quote-card {
  background: linear-gradient(135deg, rgba(16, 23, 32, 0.95), rgba(22, 32, 43, 0.95));
  border: 1px solid rgba(136, 189, 242, 0.25);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.quote-card .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.quote-card .form-control:focus {
  border-color: #88bdf2;
  box-shadow: 0 0 0 3px rgba(136, 189, 242, 0.2);
}

.quote-card label {
  color: #cbd5e1;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODERN CLIENT TRUST & UNIVERSITY SECTION (Sleek Frosted Glass Style)
   ═══════════════════════════════════════════════════════════════════════════ */
.section--clients {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #f1f5f9 100%);
  padding: 4.5rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.client-category-block {
  margin-bottom: 2.25rem;
}
.client-category-block:last-child {
  margin-bottom: 0;
}

.client-category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.client-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  letter-spacing: -0.2px;
}
.client-category-badge i {
  color: #10B981;
  font-size: 1.05rem;
}

.client-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-5);
  align-items: stretch;
}

@media (min-width: 992px) {
  .client-card-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.client-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.95rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 128px;
  height: 128px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: default;
}

.client-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: #ffffff;
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.client-card__logo-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.45rem;
}

.client-card__logo {
  max-height: 56px;
  max-width: 82%;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.06));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-card:hover .client-card__logo {
  transform: scale(1.06);
}

.client-card__icon-fallback {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.client-card__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  letter-spacing: -0.1px;
  transition: color 0.2s ease;
}

.client-card:hover .client-card__name {
  color: #0f172a;
}

/* ── Infinite Marquee Auto-Scroll (Hardware Accelerated Smooth Flow) ── */
.client-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0 16px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.client-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.client-marquee--left .client-marquee-track {
  animation: marqueeScrollLeft 32s linear infinite;
}

.client-marquee--right .client-marquee-track {
  animation: marqueeScrollRight 32s linear infinite;
}

.client-marquee-wrapper:hover .client-marquee-track {
  animation-play-state: paused;
}

.client-marquee-track .client-card {
  width: 240px;
  flex-shrink: 0;
  transform: translateZ(0);
}

@keyframes marqueeScrollLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueeScrollRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

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

/* ═══════════════════════════════════════════════════════════════════════════
   3D MULTI-DEVICE SHOWCASE MOCKUP CARD (Matching CJ SOFT Reference Style)
   ═══════════════════════════════════════════════════════════════════════════ */
.pf-showcase-card {
  background: var(--clr-card, #ffffff);
  border: 1px solid var(--clr-border, rgba(74, 120, 74, 0.22));
  border-radius: var(--r-xl, 20px);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(74, 120, 74, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pf-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(74, 120, 74, 0.22);
  border-color: var(--clr-primary);
}

.pf-showcase-frame {
  position: relative;
  width: 100%;
  padding-top: 68%;
  /* 16:11 Aspect Ratio Stage */
  background: radial-gradient(circle at 50% 40%, rgba(224, 242, 254, 0.75) 0%, rgba(248, 250, 252, 0.95) 75%);
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.pf-mockup-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 1. Desktop / Laptop Mockup (Background Center) */
.mockup-laptop {
  position: absolute;
  width: 78%;
  top: 8%;
  left: 11%;
  z-index: 1;
  transition: transform 0.4s ease;
}

.mockup-laptop__screen {
  background: #0f172a;
  border-radius: 8px 8px 0 0;
  padding: 5px 5px 0 5px;
  border: 2px solid #334155;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.22);
}

.mockup-laptop__screen img {
  display: block;
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px 4px 0 0;
}

.mockup-laptop__base {
  height: 9px;
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
  border-radius: 0 0 12px 12px;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.mockup-laptop__notch {
  width: 44px;
  height: 4px;
  background: #64748b;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

/* 2. Smartphone Mockup Overlay (Front Right) */
.mockup-mobile {
  position: absolute;
  width: 22%;
  bottom: 8%;
  right: 12%;
  z-index: 3;
  background: #0f172a;
  border: 2px solid #475569;
  border-radius: 14px;
  padding: 3px;
  box-shadow: -6px 12px 28px rgba(0, 0, 0, 0.32);
  transition: transform 0.4s ease;
}

.mockup-mobile__screen {
  border-radius: 10px;
  overflow: hidden;
  height: 125px;
  background: #1e293b;
}

.mockup-mobile__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* 3. Tablet Mockup Overlay (Middle Left) */
.mockup-tablet {
  position: absolute;
  width: 36%;
  bottom: 10%;
  left: 9%;
  z-index: 2;
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 10px;
  padding: 3px;
  box-shadow: 6px 14px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.4s ease;
}

.mockup-tablet__screen {
  border-radius: 7px;
  overflow: hidden;
  height: 115px;
  background: #1e293b;
}

.mockup-tablet__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Hover Interactive Transforms */
.pf-showcase-card:hover .mockup-laptop {
  transform: translateY(-3px) scale(1.02);
}

.pf-showcase-card:hover .mockup-mobile {
  transform: translateY(-6px) scale(1.06);
}

.pf-showcase-card:hover .mockup-tablet {
  transform: translateY(-4px) scale(1.03);
}

.pf-showcase-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pf-showcase-cat {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-2);
}

.pf-showcase-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--txt-main);
  line-height: 1.4;
  margin-bottom: var(--sp-2);
}

.pf-showcase-desc {
  font-size: var(--fs-xs);
  color: var(--txt-dim);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.pf-showcase-footer {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ═══════════════════════════════════════════════════════════════════════════
   1:1 CJ SOFT STYLE PORTFOLIO GRID & HEADER (ตัวอย่างผลงานรับทำเว็บไซต์)
   ═══════════════════════════════════════════════════════════════════════════ */
.cjsoft-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 0;
}

.cjsoft-title span.text-blue,
.cjsoft-title span.text-gradient {
  color: #4A784A;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cjsoft-accent-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4A784A, #6E9E6E);
  margin: 12px auto 2.5rem auto;
  border-radius: 2px;
}

.portfolio-filter-tabs,
.pf-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 2.5rem auto;
  max-width: 960px;
}

.pf-tab-btn,
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pf-tab-btn:hover,
.filter-btn:hover {
  border-color: #4A784A;
  color: #4A784A;
  background: #e8f7ee;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 120, 74, 0.12);
}

.pf-tab-btn.active,
.pf-tab-btn.is-active,
.filter-btn.is-active {
  background: linear-gradient(135deg, #4A784A 0%, #6E9E6E 100%);
  border-color: #4A784A;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(74, 120, 74, 0.3);
  transform: translateY(-2px);
}

.pf-tab-btn .pf-badge-count,
.filter-btn .pf-filter__count {
  background: rgba(0, 0, 0, 0.08);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
}

.pf-tab-btn.active .pf-badge-count,
.filter-btn.is-active .pf-filter__count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.section--portfolio {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
}

.section--portfolio .container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 0;
}

.cjsoft-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .cjsoft-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cjsoft-portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
    max-width: 100%;
    width: 100%;
  }
}

/* ==========================================================================
   PORTFOLIO PAGINATION — .pf-pagination (Circular Modern Design)
   ========================================================================== */
.pf-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 3.5rem auto 1.5rem auto;
}

.pf-page-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pf-page-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
}

.pf-page-btn:hover:not(.is-active):not(:disabled) {
  background: #ffffff;
  border-color: #82B882;
  color: #4A784A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 120, 74, 0.18);
}

.pf-page-btn.is-active,
.pf-page-btn.active {
  background: #4A784A;
  border-color: #4A784A;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(74, 120, 74, 0.42);
  cursor: default;
  pointer-events: none;
}

.pf-page-btn:disabled,
.pf-page-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
  box-shadow: none;
}

.pf-page-nav {
  font-size: 1.15rem;
}

.pf-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 48px;
  color: #94a3b8;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

@media (max-width: 640px) {
  .pf-page-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .pf-page-ellipsis {
    width: 24px;
    height: 40px;
    font-size: 1rem;
  }

  .pf-page-numbers {
    gap: 0.35rem;
  }

  .pf-pagination {
    gap: 0.4rem;
  }
}

.cjsoft-portfolio-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 0.95rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  box-sizing: border-box;
}

.cjsoft-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(74, 120, 74, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(110, 158, 110, 0.35);
}

.cjsoft-portfolio-item {
  position: relative;
  display: block;
  text-decoration: none;
  border: none !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  min-width: 0;
}

.cjsoft-mockup-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #f8fafc;
  aspect-ratio: 16 / 10;
  width: 100%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.cjsoft-portfolio-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.cjsoft-portfolio-card:hover .cjsoft-portfolio-item img {
  transform: scale(1.04);
}

.cjsoft-hover-badge {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}

.cjsoft-hover-badge span {
  background: #ffffff;
  color: #4A784A;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(12px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cjsoft-portfolio-card:hover .cjsoft-hover-badge {
  opacity: 1;
}

.cjsoft-portfolio-card:hover .cjsoft-hover-badge span {
  transform: translateY(0);
}

/* ─── DOMAIN NAME UNDER IMAGE (ใต้รูป ชัดเจน โดดเด่น) ─── */
.cjsoft-card-info {
  padding: 0.85rem 0.3rem 0.1rem 0.3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.cjsoft-portfolio-card--minimal {
  padding: 0.85rem;
  gap: 0;
}

.cjsoft-card-info--minimal {
  padding: 0.75rem 0.2rem 0.1rem 0.2rem;
  text-align: left;
  flex: 0 0 auto;
}

.cjsoft-card-info--minimal .cjsoft-domain-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.cjsoft-card-info--minimal .cjsoft-domain-title a {
  color: #1e293b;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.cjsoft-portfolio-card:hover .cjsoft-card-info--minimal .cjsoft-domain-title a {
  color: #4A784A;
}

.cjsoft-domain-title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 0.3rem 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cjsoft-domain-title a {
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cjsoft-domain-title a .domain-icon {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.cjsoft-portfolio-card:hover .cjsoft-domain-title a {
  color: #4A784A;
}

.cjsoft-portfolio-card:hover .cjsoft-domain-title a .domain-icon {
  color: #4A784A;
  transform: translate(2px, -2px);
}

.cjsoft-client-desc {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0 0 0.75rem 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  min-height: 1.22rem;
}

.cjsoft-card-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding-top: 0.65rem;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.75rem;
  margin-top: auto;
  min-width: 0;
}

.cjsoft-badge-cat {
  font-weight: 600;
  color: #4A784A;
  background: #E5F2E5;
  padding: 0.2rem 0.6rem;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1.3;
}

.cjsoft-badge-tech {
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  font-size: 0.74rem;
}

/* ══════════════════════════════════════
   GOOGLE ADS & SEO — HERO SERP SHOWCASE
════════════════════════════════════════ */
.ga-hero-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  position: relative;
  padding: var(--sp-4) 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .ga-hero-section {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* ─── Left Column ────────────────────── */
.ga-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  width: 100%;
}

.ga-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.16);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  box-shadow: 0 4px 14px rgba(74, 120, 74, 0.06);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--sp-4);
  max-width: 100%;
  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 480px) {
  .ga-hero-badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.85rem;
  }
}

.ga-hero-title {
  font-size: clamp(1.75rem, 5.2vw, 3rem);
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.ga-title-l1 {
  color: #0f172a;
}

.ga-title-l2 {
  color: #0f172a;
}

.ga-text-highlight {
  color: #4A784A;
  background: linear-gradient(135deg, #6E9E6E 0%, #4A784A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ga-title-accent {
  width: 50px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #6E9E6E, #4A784A);
  margin-bottom: var(--sp-4);
  position: relative;
}

.ga-title-accent::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4A784A;
}

.ga-hero-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  max-width: 540px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 3 Feature Pills */
.ga-feature-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  width: 100%;
  margin-bottom: var(--sp-8);
}

@media (max-width: 768px) {
  .ga-feature-pills {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: var(--sp-6);
  }
}

.ga-pill-card {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 4px 16px rgba(0, 70, 160, 0.04);
  transition: all 0.3s ease;
  min-width: 0;
}

.ga-pill-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 120, 74, 0.35);
  box-shadow: 0 8px 20px rgba(0, 70, 160, 0.08);
}

.ga-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(74, 120, 74, 0.1);
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ga-pill-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.ga-pill-info strong {
  font-size: 0.84rem;
  color: #0f172a;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ga-pill-info span {
  font-size: 0.72rem;
  color: #64748b;
}

/* CTA & Trust Proof Row */
.ga-cta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  width: 100%;
}

.ga-btn-cta {
  background: linear-gradient(135deg, #6E9E6E 0%, #4A784A 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 24px rgba(74, 120, 74, 0.28);
  border: none;
  transition: all 0.3s ease;
}

.ga-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(74, 120, 74, 0.38);
}

.ga-trust-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ga-avatar-stack {
  display: flex;
  align-items: center;
}

.ga-avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  margin-left: -9px;
}

.ga-avatar-stack img:first-child {
  margin-left: 0;
}

.ga-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.ga-trust-label {
  font-size: 0.75rem;
  color: #64748b;
}

.ga-trust-count {
  font-size: 0.9rem;
  color: #4A784A;
  font-weight: 800;
}

@media (max-width: 560px) {
  .ga-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .ga-btn-cta {
    width: 100%;
    justify-content: center;
  }
  .ga-trust-proof {
    justify-content: center;
    width: 100%;
    margin-top: 0.25rem;
  }
}

/* ─── Right Column (Google SERP Mockup) ─── */
.ga-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ga-floating-target {
  position: absolute;
  top: -16px;
  right: -12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6E9E6E 0%, #4A784A 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px rgba(74, 120, 74, 0.35);
  z-index: 5;
  animation: gaFloatPulse 3.5s ease-in-out infinite alternate;
}

@keyframes gaFloatPulse {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-6px) scale(1.04);
  }
}

@media (max-width: 768px) {
  .ga-floating-target {
    top: -12px;
    right: 4px;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .ga-floating-target {
    top: -10px;
    right: 6px;
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }
}

.ga-mockup-window {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.14);
  border-radius: 1.6rem;
  padding: 1.6rem 1.6rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 70, 160, 0.09);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .ga-mockup-window {
    padding: 1.25rem 1.1rem 1.5rem;
    border-radius: 1.35rem;
  }
}

@media (max-width: 480px) {
  .ga-mockup-window {
    padding: 1rem 0.75rem 1.25rem;
    border-radius: 1.15rem;
  }
}

.ga-mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ga-google-logo {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

.ga-search-bar {
  flex: 1;
  background: #ffffff;
  border: 1px solid #dfe1e5;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 0;
}

.ga-search-query {
  font-size: 0.85rem;
  color: #202124;
  font-weight: 500;
}

.ga-search-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #70757a;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .ga-mockup-header {
    gap: 0.6rem;
  }
  .ga-google-logo {
    font-size: 1.35rem;
    flex-shrink: 0;
  }
  .ga-search-bar {
    padding: 0.35rem 0.65rem;
  }
  .ga-search-query {
    font-size: 0.76rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ga-search-actions {
    gap: 0.35rem;
    font-size: 0.85rem;
  }
}

.ga-search-tabs {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.78rem;
  color: #5f6368;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 1.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ga-search-tabs::-webkit-scrollbar {
  display: none;
}

.ga-search-tabs span {
  cursor: default;
  white-space: nowrap;
}

.ga-search-tabs span.active {
  color: #1a73e8;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: -0.75rem;
  border-bottom: 3px solid #1a73e8;
}

.ga-search-tabs span.tools {
  margin-left: auto;
}

/* Sponsored Ad Result Box */
.ga-ad-card {
  background: #f8fbff;
  border: 1.5px solid rgba(74, 120, 74, 0.16);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 14px rgba(74, 120, 74, 0.05);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.ga-ad-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.ga-ad-tag {
  font-weight: 800;
  color: #202124;
}

.ga-ad-dot {
  color: #70757a;
}

.ga-ad-url {
  color: #4d5156;
  word-break: break-all;
}

.ga-ad-title {
  font-size: clamp(0.98rem, 2.8vw, 1.1rem);
  color: #1a0dab;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.ga-ad-snippet {
  font-size: 0.82rem;
  color: #4d5156;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.ga-ad-sitelinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ga-sitelink-pill {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.22);
  color: #1a73e8;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(74, 120, 74, 0.04);
}

@media (max-width: 480px) {
  .ga-ad-card {
    padding: 0.9rem 0.85rem;
  }
  .ga-ad-title {
    font-size: 0.98rem;
  }
  .ga-ad-snippet {
    font-size: 0.78rem;
  }
  .ga-sitelink-pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
  }
}

/* Organic Skeleton Rows */
.ga-organic-section {
  padding: 0.5rem 0.5rem 0;
}

.ga-organic-heading {
  font-size: 0.72rem;
  color: #9aa0a6;
  margin-bottom: 0.5rem;
}

.ga-skeleton-line {
  height: 8px;
  background: #edf2f7;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.ga-skeleton-line.short {
  width: 35%;
  background: #e2e8f0;
}

.ga-skeleton-line.long {
  width: 85%;
}

.ga-skeleton-line.medium {
  width: 60%;
}

/* Floating Bottom KPI Bar */
.ga-kpi-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 120, 74, 0.14);
  border-radius: 1.1rem;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 16px 36px rgba(0, 70, 160, 0.08);
  margin-top: -18px;
  margin-inline: 1rem;
  position: relative;
  z-index: 3;
}

@media (max-width: 640px) {
  .ga-kpi-bar {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-inline: 0;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
  }
}

.ga-kpi-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ga-kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(74, 120, 74, 0.08);
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ga-kpi-content {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.ga-kpi-lbl {
  font-size: 0.68rem;
  color: #64748b;
}

.ga-kpi-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #4A784A;
}

.ga-kpi-sub {
  font-size: 0.65rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════════════
   GOOGLE ADS — SECTION 2: ESSENTIAL REQUIREMENTS (3D CARDS)
════════════════════════════════════════════════════════════════════════ */
.ga-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-8);
}

.ga-sec-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4A784A;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
  box-shadow: 0 4px 14px rgba(74, 120, 74, 0.28);
  letter-spacing: 0.2px;
}

.ga-sec-title {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: var(--sp-2);
}

.ga-sec-title .ga-brand-highlight {
  color: #4A784A;
}

.ga-sec-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 3 Requirements Grid */
.ga-req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ga-req-card {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.75rem;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 14px 34px rgba(0, 70, 160, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.ga-req-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 120, 74, 0.32);
  box-shadow: 0 24px 50px rgba(0, 70, 160, 0.11);
}

.ga-req-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ga-req-text-col {
  flex: 1;
}

.ga-req-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: #82B882;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.5px;
}

.ga-req-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.ga-req-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.ga-req-visual-col {
  width: 120px;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ga-req-visual-col svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 18px rgba(74, 120, 74, 0.12));
  transition: transform 0.4s ease;
}

.ga-req-card:hover .ga-req-visual-col svg {
  transform: scale(1.06) translateY(-2px);
}

.ga-req-action-row {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.5rem;
}

.ga-req-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F2F7F2;
  color: #4A784A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid rgba(74, 120, 74, 0.16);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.ga-req-card:hover .ga-req-btn {
  background: #4A784A;
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 6px 14px rgba(74, 120, 74, 0.32);
}

/* ══════════════════════════════════════════════════════════════════════
   GOOGLE ADS — SECTION 3: 5-STEP PROCESS FLOW & CTA BANNER
════════════════════════════════════════════════════════════════════════ */
.ga-process-box {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 2rem;
  padding: 2.75rem 2.25rem 2rem;
  box-shadow: 0 16px 45px rgba(0, 70, 160, 0.06);
}

.ga-process-box-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.ga-process-box-title {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.ga-process-box-title .ga-brand-highlight {
  color: #4A784A;
}

.ga-process-box-subtitle {
  color: #64748b;
  font-size: 0.95rem;
}

/* 5 Steps Pipeline Flow */
.ga-process-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ga-process-step {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.35rem;
  padding: 1.5rem 0.9rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 70, 160, 0.03);
}

.ga-process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 120, 74, 0.32);
  box-shadow: 0 14px 30px rgba(0, 70, 160, 0.09);
}

.ga-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4A784A;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(74, 120, 74, 0.3);
  flex-shrink: 0;
}

.ga-step-visual {
  width: 76px;
  height: 76px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-step-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 14px rgba(74, 120, 74, 0.12));
  transition: transform 0.35s ease;
}

.ga-process-step:hover .ga-step-visual svg {
  transform: scale(1.08) translateY(-2px);
}

.ga-step-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.ga-step-desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.55;
}

.ga-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.25rem;
  padding: 0 0.1rem;
  flex-shrink: 0;
}

/* Inner CTA Highlight Banner */
.ga-process-cta-banner {
  background: #F2F7F2;
  border: 1px solid rgba(74, 120, 74, 0.14);
  border-radius: 1.25rem;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.ga-process-cta-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #4A784A;
  font-size: 0.95rem;
  font-weight: 600;
}

.ga-process-cta-icon {
  font-size: 1.4rem;
  color: #4A784A;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-process-cta-btn {
  background: #4A784A;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(74, 120, 74, 0.28);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.ga-process-cta-btn:hover {
  background: #3A633A;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(74, 120, 74, 0.38);
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ga-req-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ga-process-flow {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .ga-process-step {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 180px;
  }

  .ga-process-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .ga-req-grid {
    grid-template-columns: 1fr;
  }

  .ga-req-card {
    padding: 1.5rem;
  }

  .ga-process-box {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .ga-process-step {
    flex: 1 1 100%;
  }

  .ga-process-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }

  .ga-process-cta-left {
    flex-direction: column;
    gap: 0.4rem;
  }

  .ga-process-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   GOOGLE ADS — SECTION 4: STRATEGY COMPARISON (GOOGLE ADS VS SEO)
════════════════════════════════════════════════════════════════════════ */
.ga-comp-wrapper {
  position: relative;
  width: 100%;
}

.ga-comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  position: relative;
}

.ga-vs-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #4A784A;
  box-shadow: 0 10px 28px rgba(0, 70, 160, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #4A784A;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.ga-comp-card {
  background: #ffffff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 70, 160, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.ga-comp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 70, 160, 0.11);
}

.ga-comp-card--blue {
  border: 1.5px solid rgba(74, 120, 74, 0.22);
}

.ga-comp-card--green {
  border: 1.5px solid rgba(110, 158, 110, 0.22);
}

.ga-comp-header {
  padding: 1.6rem 2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.ga-comp-header--blue {
  background: linear-gradient(135deg, #6E9E6E 0%, #4A784A 100%);
}

.ga-comp-header--green {
  background: linear-gradient(135deg, #6E9E6E 0%, #4A784A 100%);
}

.ga-comp-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.ga-comp-header-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.ga-comp-header-text p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.ga-comp-list {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
}

.ga-comp-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.ga-comp-item-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ga-comp-item-ico--blue {
  background: #4A784A;
  box-shadow: 0 4px 12px rgba(74, 120, 74, 0.28);
}

.ga-comp-item-ico--green {
  background: #6E9E6E;
  box-shadow: 0 4px 12px rgba(110, 158, 110, 0.28);
}

.ga-comp-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ga-comp-item-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.ga-comp-item-desc {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   GOOGLE ADS — SECTION 5: 5 BENEFITS & SYNERGY FORMULA BANNER
════════════════════════════════════════════════════════════════════════ */
.ga-bnf-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.ga-bnf-card {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.5rem;
  padding: 1.6rem 1.25rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 10px 28px rgba(0, 70, 160, 0.04);
  transition: all 0.35s ease;
}

.ga-bnf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 120, 74, 0.3);
  box-shadow: 0 18px 40px rgba(0, 70, 160, 0.1);
}

.ga-bnf-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}

.ga-bnf-badge--01 {
  background: #4A784A;
  box-shadow: 0 2px 8px rgba(74, 120, 74, 0.3);
}

.ga-bnf-badge--02 {
  background: #6E9E6E;
  box-shadow: 0 2px 8px rgba(110, 158, 110, 0.3);
}

.ga-bnf-badge--03 {
  background: #3A633A;
  box-shadow: 0 2px 8px rgba(58, 99, 58, 0.3);
}

.ga-bnf-badge--04 {
  background: #82B882;
  box-shadow: 0 2px 8px rgba(130, 184, 130, 0.3);
}

.ga-bnf-badge--05 {
  background: #4A784A;
  box-shadow: 0 2px 8px rgba(74, 120, 74, 0.3);
}

.ga-bnf-visual {
  width: 76px;
  height: 76px;
  margin: 1.15rem 0 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-bnf-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(74, 120, 74, 0.15));
  transition: transform 0.35s ease;
}

.ga-bnf-card:hover .ga-bnf-visual svg {
  transform: scale(1.1) translateY(-2px);
}

.ga-bnf-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.ga-bnf-desc {
  font-size: 0.77rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Synergy Formula Banner */
.ga-synergy-banner {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 1.75rem;
  padding: 1.75rem 2.25rem;
  box-shadow: 0 16px 40px rgba(0, 70, 160, 0.05);
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 2rem;
  align-items: center;
}

.ga-synergy-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ga-synergy-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6E9E6E 0%, #4A784A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(74, 120, 74, 0.32);
}

.ga-synergy-left h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.ga-synergy-left p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.ga-synergy-formula {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.ga-formula-box {
  background: #f8fbff;
  border: 1px solid rgba(74, 120, 74, 0.14);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
  box-shadow: 0 2px 8px rgba(0, 70, 160, 0.03);
}

.ga-formula-box--highlight {
  background: #F2F7F2;
  border: 1.5px solid #4A784A;
  box-shadow: 0 6px 18px rgba(74, 120, 74, 0.12);
}

.ga-formula-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-formula-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ga-formula-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  white-space: nowrap;
}

.ga-formula-box--highlight .ga-formula-title {
  color: #4A784A;
}

.ga-formula-sub {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ga-formula-op {
  font-size: 1.3rem;
  font-weight: 800;
  color: #6E9E6E;
  flex-shrink: 0;
  padding: 0 0.1rem;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (SECTIONS 4 & 5)
════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ga-bnf-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ga-synergy-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ga-comp-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ga-vs-circle {
    display: none;
  }

  .ga-comp-header {
    padding: 1.25rem 1.5rem;
  }

  .ga-comp-list {
    padding: 1.5rem;
  }

  .ga-bnf-grid {
    grid-template-columns: 1fr;
  }

  .ga-synergy-formula {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .ga-formula-box {
    width: 100%;
  }

  .ga-formula-op {
    display: none;
  }

  .ga-synergy-banner {
    padding: 1.5rem 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   OTHER SERVICES — 4-COLUMN CARDS & TRUST FEATURE BAR
════════════════════════════════════════════════════════════════════════ */
.ga-other-services-section {
  padding: var(--sp-12) 0;
  background: var(--clr-surface, #f8fafc);
}

.ga-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.ga-svc-card {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 36px rgba(0, 70, 160, 0.05);
  transition: all 0.35s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.ga-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 70, 160, 0.12);
}

.ga-svc-accent {
  height: 5px;
  width: 100%;
}

.ga-svc-accent--yellow {
  background: #f59e0b;
}

.ga-svc-accent--blue {
  background: #2563eb;
}

.ga-svc-accent--green {
  background: #0EB142;
}

.ga-svc-accent--purple {
  background: #8b5cf6;
}

.ga-svc-accent--red,
.ga-svc-accent--orange {
  background: #ef4444;
}

.ga-svc-card-body {
  padding: 2rem 1.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.ga-svc-visual-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f8fbff;
  border: 1px solid rgba(74, 120, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 70, 160, 0.04);
}

.ga-svc-visual-wrap svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 6px 12px rgba(0, 70, 160, 0.12));
  transition: transform 0.35s ease;
}

.ga-svc-card:hover .ga-svc-visual-wrap svg {
  transform: scale(1.1) translateY(-2px);
}

.ga-svc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-svc-subdesc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  min-height: 3.6em;
}

.ga-svc-checklist {
  width: 100%;
  text-align: left;
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px dashed rgba(74, 120, 74, 0.14);
}

.ga-svc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #334155;
  line-height: 1.45;
}

.ga-svc-check-ico {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ga-svc-check-ico--yellow {
  color: #d97706;
}

.ga-svc-check-ico--blue {
  color: #2563eb;
}

.ga-svc-check-ico--green {
  color: #0EB142;
}

.ga-svc-check-ico--purple {
  color: #8b5cf6;
}

.ga-svc-check-ico--red,
.ga-svc-check-ico--orange {
  color: #ef4444;
}

.ga-svc-footer {
  margin-top: auto;
  width: 100%;
  text-align: left;
  padding-top: 0.5rem;
}

.ga-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap 0.25s ease;
  text-decoration: none;
}

.ga-svc-link--yellow {
  color: #d97706;
}

.ga-svc-link--blue {
  color: #2563eb;
}

.ga-svc-link--green {
  color: #0EB142;
}

.ga-svc-link--purple {
  color: #8b5cf6;
}

.ga-svc-link--red,
.ga-svc-link--orange {
  color: #ef4444;
}

.ga-svc-card:hover .ga-svc-link {
  gap: 0.65rem;
}

/* Trust / Feature Highlights Bar */
.ga-trust-feature-bar {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 1.5rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 12px 35px rgba(0, 70, 160, 0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ga-trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.ga-trust-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F2F7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #4A784A;
  flex-shrink: 0;
  border: 1px solid rgba(74, 120, 74, 0.16);
}

.ga-trust-text {
  display: flex;
  flex-direction: column;
}

.ga-trust-text h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.15rem;
  line-height: 1.3;
}

.ga-trust-text p {
  font-size: 0.72rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (OTHER SERVICES)
════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ga-svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .ga-trust-feature-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 680px) {
  .ga-svc-grid {
    grid-template-columns: 1fr;
  }

  .ga-trust-feature-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   WORDPRESS HOSTING SPECIALIST STYLES (KENGWEB-INSPIRED PREMIUM UI)
════════════════════════════════════════════════════════════════════════ */

/* Dark Page Hero Header for Hosting */
.wp-hero-dark {
  background: radial-gradient(circle at 75% 25%, rgba(74, 120, 74, 0.25) 0%, rgba(3, 13, 34, 0.98) 60%),
    linear-gradient(135deg, #030d22 0%, #071a3d 50%, #0a2558 100%) !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(0, 170, 255, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.wp-hero-dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 170, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.wp-hero-dark h1 {
  color: #ffffff !important;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.wp-hero-dark p {
  color: #94a3b8 !important;
}

/* 2-Column Showcase Section (Left: Mockup, Right: Content + 4 Micro Features) */
.wp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding-top: 1rem;
}

.wp-showcase-mockup {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(224, 30, 90, 0.08) 0%, rgba(74, 120, 74, 0.05) 50%, transparent 80%),
    #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 16px 45px rgba(0, 70, 160, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-showcase-mockup svg {
  width: 100%;
  height: auto;
  max-width: 480px;
  filter: drop-shadow(0 12px 28px rgba(0, 70, 160, 0.12));
}

.wp-showcase-content {
  display: flex;
  flex-direction: column;
}

.wp-host-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(110, 158, 110, 0.1);
  border: 1px solid rgba(110, 158, 110, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  color: #4A784A;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.wp-host-badge-gold i {
  color: #6E9E6E;
  font-size: 0.95rem;
}

.wp-showcase-title {
  font-size: 1.95rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.wp-showcase-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* 4 Micro Features 2x2 Grid */
.wp-micro-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.wp-micro-card {
  background: #f8fbff;
  border: 1px solid rgba(74, 120, 74, 0.14);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s ease;
}

.wp-micro-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 70, 160, 0.08);
  border-color: #4A784A;
}

.wp-micro-ico-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E5F2E5;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.wp-micro-card:nth-child(2) .wp-micro-ico-wrap {
  background: #F2F7F2;
  color: #6E9E6E;
}

.wp-micro-card:nth-child(3) .wp-micro-ico-wrap {
  background: #F2F7F2;
  color: #6E9E6E;
}

.wp-micro-card:nth-child(4) .wp-micro-ico-wrap {
  background: #f5f3ff;
  color: #8b5cf6;
}

.wp-micro-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.wp-micro-text span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.25;
  margin-top: 0.15rem;
}

/* CTA Button Row */
.wp-showcase-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-wp-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #4A784A 0%, #6E9E6E 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(74, 120, 74, 0.35);
  transition: all 0.25s ease;
}

.btn-wp-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74, 120, 74, 0.5);
  color: #ffffff;
}

.btn-wp-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.3);
  color: #4A784A;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-wp-outline:hover {
  background: #F2F7F2;
  border-color: #4A784A;
  color: #4A784A;
}

/* ══════════════════════════════════════════════════════════════════════
   6-FEATURE CARDS GRID (3x2 KENGWEB UPGRADED)
════════════════════════════════════════════════════════════════════════ */
.wp-features-section {
  margin-bottom: 4.5rem;
}

.wp-features-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.wp-features-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.25;
}

.wp-features-header p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.wp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.wp-ft-card {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.5rem;
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 10px 30px rgba(0, 70, 160, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.wp-ft-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4A784A, #82B882);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wp-ft-card:hover {
  transform: translateY(-6px);
  border-color: #4A784A;
  box-shadow: 0 20px 45px rgba(74, 120, 74, 0.12);
}

.wp-ft-card:hover::before {
  opacity: 1;
}

.wp-ft-svg-wrap {
  width: 90px;
  height: 90px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-ft-card:hover .wp-ft-svg-wrap {
  transform: scale(1.08);
}

.wp-ft-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.wp-ft-card-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   PRICING PACKAGES & WHY CHOOSE US (2 COLUMNS)
════════════════════════════════════════════════════════════════════════ */
.wp-pricing-section {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

/* Left: 3 Pricing Cards Grid */
.wp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.wp-price-card {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 1.5rem;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 70, 160, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.wp-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 70, 160, 0.1);
}

.wp-price-card--featured {
  border: 2px solid #4A784A;
  box-shadow: 0 14px 40px rgba(74, 120, 74, 0.14);
  transform: scale(1.03);
  z-index: 2;
}

.wp-price-badge-popular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #d97706;
  margin-bottom: 0.35rem;
}

.wp-price-badge-popular i {
  color: #eab308;
  font-size: 0.95rem;
}

.wp-price-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4A784A;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(74, 120, 74, 0.3);
}

.wp-price-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.wp-price-sub {
  font-size: 0.72rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.wp-price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: #4A784A;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.wp-price-period {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  display: block;
}

.wp-price-checklist {
  list-style: none;
  padding: 1.25rem 0;
  margin: 0 0 1.5rem;
  border-top: 1px dashed rgba(74, 120, 74, 0.14);
  border-bottom: 1px dashed rgba(74, 120, 74, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}

.wp-price-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: #334155;
  font-weight: 600;
}

.wp-price-item i {
  color: #6E9E6E;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.btn-price-outline {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  border-radius: 0.85rem;
  background: #F2F7F2;
  border: 1px solid rgba(74, 120, 74, 0.2);
  color: #4A784A;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-price-outline:hover {
  background: #4A784A;
  color: #ffffff;
}

.btn-price-solid {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  border-radius: 0.85rem;
  background: #4A784A;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(74, 120, 74, 0.3);
  transition: all 0.2s ease;
}

.btn-price-solid:hover {
  background: #005bb8;
  color: #ffffff;
}

/* Right: Why Choose Us (Dark Navy Card) */
.wp-why-card {
  background: linear-gradient(145deg, #091a38 0%, #06132b 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 1.75rem;
  padding: 2.25rem 2rem;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(2, 11, 30, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wp-why-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.wp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
  flex: 1;
}

.wp-why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.wp-why-ico-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #82B882;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wp-why-text h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.wp-why-text p {
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════════════
   PRE-HOSTING PREPARATION CHECKLIST SECTION
════════════════════════════════════════════════════════════════════════ */
.wp-prep-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 16px 45px rgba(0, 70, 160, 0.04);
  margin-bottom: 4.5rem;
}

.wp-prep-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.wp-prep-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.25;
}

.wp-prep-header p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.wp-prep-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
}

.wp-prep-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wp-prep-item {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.1);
  border-radius: 1rem;
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 70, 160, 0.03);
  transition: all 0.25s ease;
}

.wp-prep-item:hover {
  transform: translateX(4px);
  border-color: #4A784A;
  box-shadow: 0 8px 20px rgba(74, 120, 74, 0.08);
}

.wp-prep-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: #4A784A;
  background: #F2F7F2;
  border: 1px solid rgba(74, 120, 74, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wp-prep-chk {
  color: #6E9E6E;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.wp-prep-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.15rem;
}

.wp-prep-content span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
}

.wp-prep-tip {
  background: #f0fdf4;
  border: 1px solid rgba(110, 158, 110, 0.25);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: #166534;
  line-height: 1.55;
}

.wp-prep-tip i {
  color: #16a34a;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.wp-prep-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wp-prep-visual svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 16px 35px rgba(0, 70, 160, 0.08));
}

/* ══════════════════════════════════════════════════════════════════════
   WHAT IS WORDPRESS HOSTING SECTION
════════════════════════════════════════════════════════════════════════ */
.wp-what-section {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #F2F7F2 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 16px 45px rgba(0, 70, 160, 0.05);
  margin-bottom: 4.5rem;
}

.wp-what-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.wp-what-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wp-what-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 16px 35px rgba(0, 70, 160, 0.1));
}

.wp-what-content {
  display: flex;
  flex-direction: column;
}

.wp-what-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}

.wp-what-accent-bar {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #4A784A, #82B882);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.wp-what-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* 5-Feature Glass Strip */
.wp-what-strip {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.5rem;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 70, 160, 0.04);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.wp-what-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wp-what-strip-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F2F7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(74, 120, 74, 0.15);
}

.wp-what-strip-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.wp-what-strip-text span {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════════════
   ADVANTAGES OF WORDPRESS HOSTING SECTION
════════════════════════════════════════════════════════════════════════ */
.wp-adv-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #F2F7F2 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 16px 45px rgba(0, 70, 160, 0.05);
  margin-bottom: 4.5rem;
}

.wp-adv-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.wp-adv-content {
  display: flex;
  flex-direction: column;
}

.wp-adv-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}

.wp-adv-accent-bar {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #4A784A, #82B882);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.wp-adv-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wp-adv-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 1rem;
  transition: all 0.25s ease;
}

.wp-adv-item:hover {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(74, 120, 74, 0.06);
  transform: translateX(4px);
}

.wp-adv-ico-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F2F7F2;
  border: 1px solid rgba(74, 120, 74, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4A784A;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(74, 120, 74, 0.05);
}

.wp-adv-ico-wrap span {
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: -2px;
  letter-spacing: 0.02em;
}

.wp-adv-text {
  flex: 1;
}

.wp-adv-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wp-adv-text h4 i {
  color: #4A784A;
  font-size: 1rem;
}

.wp-adv-text p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.wp-adv-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wp-adv-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 16px 35px rgba(0, 70, 160, 0.08));
}

/* 5-Feature Trust Strip for Advantages */
.wp-adv-strip {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.5rem;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 70, 160, 0.04);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.wp-adv-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wp-adv-strip-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F2F7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(74, 120, 74, 0.15);
}

.wp-adv-strip-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.wp-adv-strip-text span {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════════════
   PRESENTATION & COMPANY PROFILE SERVICE STYLES
════════════════════════════════════════════════════════════════════════ */
.pres-showcase-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #F2F7F2 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 16px 45px rgba(0, 70, 160, 0.05);
  margin-bottom: 3.5rem;
}

.pres-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.pres-showcase-content {
  display: flex;
  flex-direction: column;
}

.pres-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #F2F7F2;
  border: 1px solid rgba(74, 120, 74, 0.2);
  color: #4A784A;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1rem;
}

.pres-showcase-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.pres-showcase-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.pres-micro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pres-micro-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 0.85rem;
  padding: 0.7rem 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 70, 160, 0.03);
  transition: all 0.25s ease;
}

.pres-micro-card:hover {
  border-color: #4A784A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 120, 74, 0.08);
}

.pres-micro-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #F2F7F2;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pres-micro-text strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.pres-micro-text span {
  display: block;
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.25;
}

.pres-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-pres-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0EB142 0%, #4A784A 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(14, 177, 66, 0.35);
  transition: all 0.25s ease;
}

.btn-pres-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 120, 74, 0.35);
  color: #ffffff;
}

.btn-pres-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid rgba(74, 120, 74, 0.2);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-pres-outline:hover {
  border-color: #4A784A;
  background: #f8fbff;
  transform: translateY(-2px);
}

.pres-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pres-visual-wrap svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 70, 160, 0.08));
}

/* ══════════════════════════════════════════════════════════════════════
   6-FEATURE GRID "เราช่วยยกระดับงานนำเสนอของคุณ"
════════════════════════════════════════════════════════════════════════ */
.pres-elevate-section {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 14px 40px rgba(0, 70, 160, 0.04);
  margin-bottom: 4rem;
}

.pres-elevate-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.pres-elevate-header h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.pres-elevate-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.pres-el-card {
  background: #f8fbff;
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s ease;
}

.pres-el-card:hover {
  background: #ffffff;
  border-color: #4A784A;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74, 120, 74, 0.08);
}

.pres-el-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F2F7F2;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(74, 120, 74, 0.15);
}

.pres-el-card h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.pres-el-card p {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   WHAT WE DO (3-CARDS SECTION "ช่วยให้ลูกค้าสร้างงานนำเสนอที่มีความมืออาชีพ")
════════════════════════════════════════════════════════════════════════ */
.pres-what-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.1);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 14px 40px rgba(0, 70, 160, 0.03);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.pres-what-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.pres-what-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #E5F2E5;
  color: #4A784A;
  border: 1px solid rgba(74, 120, 74, 0.25);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 91, 181, 0.25);
}

.pres-what-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.pres-what-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.pres-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.pres-what-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(58, 99, 58, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pres-what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 177, 66, 0.18);
  border-color: #0EB142;
}

.pres-what-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pres-what-ico-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4A784A 0%, #3A633A 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(74, 120, 74, 0.28);
}

.pres-what-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  letter-spacing: -1px;
}

.pres-what-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.pres-what-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}

.pres-what-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F2F7F2;
  color: #4A784A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid #E5F2E5;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.pres-what-card:hover .pres-what-arrow-btn {
  background: #4A784A;
  color: #ffffff;
  transform: translateX(4px);
  border-color: #4A784A;
}

/* Side decorative floating SVGs in What section */
.pres-what-decor-left {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

.pres-what-decor-left svg {
  width: 100px;
  height: 100px;
  display: block;
}

.pres-what-decor-right {
  position: absolute;
  right: 20px;
  top: 35px;
  width: 100px;
  height: 130px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

.pres-what-decor-right svg {
  width: 100px;
  height: 130px;
  display: block;
}

@media (max-width: 1200px) {

  .pres-what-decor-left,
  .pres-what-decor-right {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   COMPANY PROFILE 2-COLUMN SECTION ("Company Profile คืออะไร?")
════════════════════════════════════════════════════════════════════════ */
.pres-about-section {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 14px 40px rgba(0, 70, 160, 0.04);
  margin-bottom: 2.5rem;
}

.pres-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.pres-about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pres-about-visual svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 14px 35px rgba(0, 70, 160, 0.07));
}

.pres-about-content {
  display: flex;
  flex-direction: column;
}

.pres-about-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pres-about-title-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #F2F7F2;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(74, 120, 74, 0.2);
  flex-shrink: 0;
}

.pres-about-content h3 {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}

.pres-about-content p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.btn-pres-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #4A784A;
  border: 1.5px solid #4A784A;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  margin-top: 0.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(74, 120, 74, 0.08);
}

.btn-pres-profile-link:hover {
  background: #4A784A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(74, 120, 74, 0.22);
}

/* ══════════════════════════════════════════════════════════════════════
   PROFILE CHECKLIST ESSENTIALS (.pce-*) — Company Profile Checklist Card
   2-Column layout: checklist (left) + 3D isometric illustration (right)
   + 4-icon benefits strip along the bottom
════════════════════════════════════════════════════════════════════════ */
.pce-card {
  background: radial-gradient(ellipse at 85% 15%, rgba(229, 242, 229, 0.55) 0%, rgba(248, 252, 248, 0.8) 45%, #ffffff 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 2.25rem;
  padding: 3.5rem 3rem 2.5rem;
  box-shadow: 0 16px 45px rgba(74, 120, 74, 0.06);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.pce-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.pce-left {
  display: flex;
  flex-direction: column;
}

.pce-heading {
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.pce-desc {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 1.85rem;
}

.pce-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.pce-row-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: transform 0.2s ease;
}

.pce-row-item:hover {
  transform: translateX(4px);
}

.pce-rail-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #dbeafe;
  box-shadow: 0 4px 12px rgba(74, 120, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A784A;
  font-size: 1.25rem;
  margin-top: 0.1rem;
  transition: all 0.25s ease;
}

.pce-row-item:hover .pce-rail-ico {
  background: #4A784A;
  color: #ffffff;
  border-color: #4A784A;
  box-shadow: 0 6px 16px rgba(74, 120, 74, 0.25);
}

.pce-item-content {
  flex: 1;
}

.pce-item-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.pce-blue-check {
  color: #4A784A;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.pce-item-title strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
}

.pce-item-content p {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.pce-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pce-visual svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 70, 160, 0.09));
}

.pce-float-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 70, 160, 0.12);
  border: 1px solid rgba(74, 120, 74, 0.12);
  transition: all 0.3s ease;
  z-index: 2;
}

.pce-float-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 70, 160, 0.18);
}

.pce-fb-tl {
  top: 12%;
  left: 0%;
}

.pce-fb-tr {
  top: 16%;
  right: 0%;
  color: #6E9E6E;
}

.pce-fb-bl {
  bottom: 18%;
  left: -2%;
  color: #4A784A;
}

.pce-fb-br {
  bottom: 12%;
  right: 2%;
  color: #4A784A;
}

.pce-bottom-bar {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.14);
  border-radius: 1.25rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 70, 160, 0.04);
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.pce-pillar-col {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}

.pce-pillar-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(74, 120, 74, 0.12);
}

.pce-pillar-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #F2F7F2;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(74, 120, 74, 0.14);
}

.pce-pillar-text strong {
  display: block;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.pce-pillar-text span {
  display: block;
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (ALL SPECIALIZED SERVICES)
════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {

  .wp-showcase-grid,
  .wp-prep-grid,
  .wp-what-grid,
  .wp-adv-grid,
  .pres-showcase-grid,
  .pres-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .wp-pricing-section {
    grid-template-columns: 1fr;
  }

  .wp-price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wp-what-strip,
  .wp-adv-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pres-elevate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pce-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pce-visual {
    order: -1;
  }

  .pce-visual svg {
    max-width: 320px;
  }

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

@media (max-width: 768px) {

  .wp-showcase-title,
  .wp-what-title,
  .wp-adv-title,
  .pres-showcase-title,
  .pres-what-title {
    font-size: 1.55rem;
  }

  .wp-micro-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .wp-features-grid {
    grid-template-columns: 1fr;
  }

  .wp-features-header h2,
  .wp-prep-header h2 {
    font-size: 1.65rem;
  }

  .wp-price-grid {
    grid-template-columns: 1fr;
  }

  .wp-price-card--featured {
    transform: none;
  }

  .wp-why-grid {
    grid-template-columns: 1fr;
  }

  .wp-what-strip,
  .wp-adv-strip {
    grid-template-columns: 1fr;
  }

  .wp-what-section,
  .wp-prep-section,
  .wp-adv-section,
  .pres-showcase-section,
  .pres-what-section,
  .pres-about-section,
  .pres-elevate-section {
    padding: 2.25rem 1.5rem;
  }

  .pres-micro-grid {
    grid-template-columns: 1fr;
  }

  .pres-what-grid {
    grid-template-columns: 1fr;
  }

  .pres-about-content h3 {
    font-size: 1.45rem;
  }

  .pres-elevate-grid {
    grid-template-columns: 1fr;
  }

  .pres-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-pres-solid,
  .btn-pres-outline,
  .btn-pres-profile-link {
    width: 100%;
    justify-content: center;
  }

  .pce-card {
    padding: 2.25rem 1.5rem;
  }

  .pce-heading {
    font-size: 1.55rem;
  }

  .pce-benefits {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pce-float-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   WHY COMPANY PROFILE SECTION — .wcp-*
   (3 Modern Horizontal Feature Cards matching User Reference Image 1)
════════════════════════════════════════════════════════════════════════ */

.wcp-dot-grid-top,
.wcp-dot-grid-bg {
  display: none;
}

.wcp-section {
  position: relative;
  background: linear-gradient(180deg, #F8FCF8 0%, #ffffff 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 14px 40px rgba(74, 120, 74, 0.04);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.wcp-header {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.wcp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #E5F2E5;
  color: #4A784A;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(74, 120, 74, 0.25);
  box-shadow: 0 2px 8px rgba(74, 120, 74, 0.08);
}

.wcp-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.wcp-title span {
  color: #0EB142;
}

.wcp-accent-bar {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0EB142, #82B882);
  margin: 0 auto 1.15rem;
}

.wcp-subtitle {
  font-size: 0.975rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.wcp-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.wcp-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.75rem 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(74, 120, 74, 0.12);
  border-color: #82B882;
}

.wcp-visual {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcp-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.wcp-circle-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #E5F2E5;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 4px 14px rgba(74, 120, 74, 0.14);
  transition: all 0.3s ease;
}

.wcp-card:hover .wcp-circle-icon {
  background: #4A784A;
  color: #ffffff;
  border-color: #4A784A;
  transform: scale(1.06);
}

.wcp-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  padding-right: 4.5rem;
}

.wcp-content-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.55rem;
  line-height: 1.35;
}

.wcp-content-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

.wcp-step-num {
  position: absolute;
  top: 50%;
  right: 2.25rem;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0EB142;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 177, 66, 0.35);
  z-index: 2;
  user-select: none;
}

@media (max-width: 1100px) {
  .wcp-card {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 2rem;
    gap: 1.25rem;
  }

  .wcp-content {
    padding-right: 0;
  }

  .wcp-visual {
    width: 170px;
  }

  .wcp-step-num {
    position: static;
    transform: none;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .wcp-section {
    padding: 2.25rem 1.25rem;
  }

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

  .wcp-card {
    padding: 1.75rem 1.25rem;
  }

  .wcp-visual {
    width: 140px;
  }

  .wcp-content-title {
    font-size: 1.15rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   PRO INSTANT LEAD QUOTE SECTION & TRUST BADGES (.section--quote-pro)
   (Modern Clean & Premium Quote Design with Icon-Embedded Inputs)
════════════════════════════════════════════════════════════════════════ */
.section--quote-pro {
  position: relative;
  padding: 5.5rem 0 5rem;
  background: #fbfdfb;
  overflow: hidden;
}

.quote-leaf-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.quote-leaf-decor--left {
  bottom: 40px;
  left: -20px;
}

.quote-leaf-decor--right {
  bottom: 40px;
  right: -20px;
}

.pro-quote-bg-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(130, 184, 130, 0.15) 0%, rgba(74, 120, 74, 0.05) 50%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.pro-quote-dots-decor {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(rgba(74, 120, 74, 0.18) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
}

.pro-quote-container {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  z-index: 2;
}

/* Header */
.pro-quote-header {
  position: relative;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.pro-quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1.1rem;
  background: rgba(74, 120, 74, 0.08);
  color: var(--primary-cyan, #4A784A);
  border: 1px solid rgba(74, 120, 74, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.pro-quote-badge i {
  font-size: 1.1rem;
}

.pro-quote-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.pro-quote-title-highlight {
  color: var(--primary-cyan, #4A784A);
  background: linear-gradient(135deg, #4A784A 0%, #82B882 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pro-quote-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 auto;
}

.pro-quote-plane-wrap {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 90px;
  height: 90px;
  opacity: 0.85;
  animation: floatPlane 4s ease-in-out infinite alternate;
}

@keyframes floatPlane {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(4deg);
  }
}

.pro-quote-plane-svg {
  width: 100%;
  height: 100%;
}

/* Main Card */
.pro-quote-card {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.75rem;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 20px 50px rgba(58, 99, 58, 0.06), 0 4px 15px rgba(0, 0, 0, 0.02);
  margin-bottom: 2rem;
}

.pro-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.pro-quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pro-quote-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

.required-star {
  color: #ef4444;
}

.pro-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.pro-input-icon {
  position: absolute;
  left: 1rem;
  font-size: 1.25rem;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
}

.pro-input-wrap:focus-within .pro-input-icon {
  color: var(--primary-cyan, #4A784A);
}

.pro-form-control {
  width: 100%;
  height: 52px;
  padding: 0 1rem 0 2.85rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  color: #0f172a;
  font-family: inherit;
  transition: all 0.25s ease;
  outline: none;
}

.pro-form-control::placeholder {
  color: #94a3b8;
}

.pro-form-control:focus {
  background: #ffffff;
  border-color: var(--primary-cyan, #4A784A);
  box-shadow: 0 0 0 4px rgba(74, 120, 74, 0.12);
}

.pro-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.pro-select-arrow {
  position: absolute;
  right: 1rem;
  font-size: 1rem;
  color: #64748b;
  pointer-events: none;
}

.pro-input-wrap--textarea {
  align-items: flex-start;
}

.pro-input-wrap--textarea .pro-input-icon {
  top: 1rem;
}

.pro-textarea {
  height: auto;
  min-height: 108px;
  padding-top: 0.85rem;
  resize: vertical;
}

/* Privacy Box */
.pro-privacy-box {
  background: linear-gradient(135deg, #F2F7F2 0%, #F2F7F2 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.16);
  border-radius: 0.85rem;
  padding: 1.25rem 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  align-self: stretch;
}

.pro-privacy-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 0.65rem;
  background: rgba(74, 120, 74, 0.12);
  color: var(--primary-cyan, #4A784A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.pro-privacy-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}

.pro-privacy-text p {
  font-size: 0.825rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}

/* Submit Row */
.pro-quote-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.btn-pro-quote-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  height: 56px;
  background: #356837;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(46, 105, 48, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pro-quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(46, 105, 48, 0.35);
  background: #2a552c;
}

.btn-pro-quote-submit:active {
  transform: translateY(0);
}

.btn-pro-quote-submit i {
  font-size: 1.35rem;
}

.pro-quote-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  color: #64748b;
}

.pro-quote-guarantee-note i {
  font-size: 0.95rem;
  color: var(--primary-cyan, #4A784A);
}

/* 4 Trust Badges Grid */
.pro-quote-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pro-trust-card {
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.1);
  border-radius: 1.15rem;
  padding: 1.15rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 6px 20px rgba(58, 99, 58, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pro-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(58, 99, 58, 0.08);
  border-color: rgba(74, 120, 74, 0.25);
}

.pro-trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: #E5F2E5;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.pro-trust-info h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.15rem;
  white-space: nowrap;
}

.pro-trust-info p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pro-quote-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section--quote-pro {
    padding: 3.5rem 0 3rem;
  }

  .pro-quote-title {
    font-size: 1.75rem;
  }

  .pro-quote-card {
    padding: 1.75rem 1.25rem;
    border-radius: 1.25rem;
  }

  .pro-quote-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .pro-quote-plane-wrap {
    display: none;
  }

  .pro-quote-trust-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pro-trust-info h4 {
    white-space: normal;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   12. BOTTOM CTA BANNER (DESIGN MATCH) (.section--cta-custom)
   (Horizontal Card with Laptop/Mobile Showcase, Floating Badges & Trust Bar)
════════════════════════════════════════════════════════════════════════ */
.section--cta-custom {
  position: relative;
  padding: 4.5rem 0 6rem;
  background: #fbfdfb;
  overflow: hidden;
}

.final-cta-card-v2 {
  background: linear-gradient(135deg, #f8fcf8 0%, #ffffff 50%, #f4faf4 100%);
  border: 1px solid rgba(130, 184, 130, 0.28);
  border-radius: 28px;
  padding: 3.5rem 3.5rem 2rem;
  box-shadow: 0 20px 50px -10px rgba(0, 30, 15, 0.06);
  position: relative;
  overflow: hidden;
}

.cta-main-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.cta-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-heading-v2 {
  font-size: 2.45rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.cta-heading-v2 .text-green-highlight {
  color: #0EB142;
  display: block;
}

.cta-sub-v2 {
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 2rem;
  max-width: 440px;
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #356837;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(46, 105, 48, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-primary:hover {
  background: #2a552c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(46, 105, 48, 0.35);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0EB142;
  border: 1.5px solid #0EB142;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  background: #e8f5e8;
  color: #0ba03a;
  transform: translateY(-2px);
}

/* Right Mockup Scene */
.cta-mockup-scene {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.cta-laptop-vector {
  width: 90%;
  max-width: 440px;
  position: relative;
  z-index: 2;
}

.cta-phone-vector {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 80px;
  z-index: 3;
}

.cta-plant-graphic {
  position: absolute;
  right: 15px;
  bottom: 20px;
  z-index: 3;
}

.cta-arrow-graphic {
  position: absolute;
  right: 25px;
  top: 15px;
  z-index: 1;
}

/* Floating Badges */
.cta-float-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  border: 1px solid rgba(130, 184, 130, 0.2);
  transition: transform 0.3s ease;
}

.cta-float-badge:hover {
  transform: translateY(-3px);
}

.cta-badge-arrow {
  color: #0EB142;
  font-weight: 800;
}

.cta-float-badge--sales {
  top: 10px;
  left: 20px;
}

.cta-float-badge--visibility {
  top: -10px;
  right: 30px;
}

.cta-float-badge--brand {
  bottom: 65px;
  right: 0;
}

/* Bottom Attached Trust Bar */
.cta-trust-bar-v2 {
  border-top: 1px solid rgba(130, 184, 130, 0.22);
  padding-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cta-trust-item-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0.5rem;
}

.cta-trust-item-v2:not(:last-child) {
  border-right: 1px solid rgba(130, 184, 130, 0.18);
}

.cta-trust-item-v2 svg {
  flex-shrink: 0;
}

.cta-trust-item-v2 span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 992px) {
  .cta-main-grid-v2 {
    grid-template-columns: 1fr;
  }
  .cta-trust-bar-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .cta-trust-item-v2:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .final-cta-card-v2 {
    padding: 2rem 1.5rem 1.5rem;
  }
  .cta-heading-v2 {
    font-size: 1.85rem;
  }
  .cta-trust-bar-v2 {
    grid-template-columns: 1fr;
  }
  .cta-trust-item-v2 {
    border-right: none !important;
    border-bottom: 1px solid rgba(130, 184, 130, 0.15);
    padding-bottom: 0.75rem;
  }
  .cta-trust-item-v2:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   GOOGLE ADS & SEO SHOWCASE (.section--ga-showcase)
   (Breadcrumbs, High-Converting Hero, Interactive Google Search Mockup & 6 Feature Cards)
════════════════════════════════════════════════════════════════════════ */
.section--ga-showcase {
  background: #fbfdfb;
  padding: 2.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Breadcrumb */
.ga-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 2rem;
}
.ga-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ga-breadcrumb a:hover {
  color: #0EB142;
}
.ga-breadcrumb__sep {
  color: #94a3b8;
  font-size: 0.8rem;
}
.ga-breadcrumb__curr {
  color: #94a3b8;
  font-weight: 500;
}

/* Hero 2-Col Grid */
.ga-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.ga-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.ga-badge-pill {
  display: inline-flex;
  align-items: center;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(14, 177, 66, 0.25);
  margin-bottom: 1.25rem;
}

.ga-hero-title {
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  width: 100%;
}

.ga-title-line1 {
  display: block;
  white-space: nowrap;
}

.ga-title-line2 {
  display: block;
  white-space: nowrap;
}

.ga-hero-title .text-green-highlight {
  color: #0EB142;
}

.ga-hero-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 2rem;
}

@media (max-width: 768px) {
  .ga-title-line1,
  .ga-title-line2 {
    white-space: normal;
  }
}

/* 6 Checklist Grid */
.ga-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

.ga-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.ga-check-item svg {
  flex-shrink: 0;
}

/* Price & Action Card */
.ga-price-action-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(130, 184, 130, 0.3);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px -6px rgba(0, 30, 15, 0.06);
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 520px;
}

.ga-price-col, .ga-consult-col {
  display: flex;
  flex-direction: column;
}

.ga-price-label, .ga-consult-label {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 2px;
}

.ga-price-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0EB142;
}

.ga-consult-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.ga-price-divider {
  width: 1px;
  height: 38px;
  background: rgba(130, 184, 130, 0.25);
}

.ga-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0EB142;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  margin-left: auto;
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.25);
  transition: all 0.25s ease;
}

.ga-btn-action:hover {
  background: #0ba03a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 177, 66, 0.35);
}

/* Full link */
.ga-full-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0EB142;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.ga-full-link:hover {
  gap: 12px;
  color: #0ba03a;
}

/* Right Mockup Scene */
.ga-mockup-scene {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient Dots */
.ga-dots-grid {
  position: absolute;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.6;
}
.ga-dots--top { top: 0; right: 20px; }
.ga-dots--bottom { bottom: 20px; right: 40px; }

/* Google Search Card */
.ga-search-card {
  width: 78%;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  margin-right: 15%;
}

.ga-search-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.ga-google-logo {
  font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.ga-search-input {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 7px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-size: 0.8rem;
  color: #334155;
}

.ga-search-input__icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Ad Box */
.ga-search-ad-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.ga-ad-url-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.ga-ad-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
  padding: 1px 5px;
  border-radius: 4px;
}

.ga-ad-domain {
  font-size: 0.75rem;
  color: #64748b;
}

.ga-ad-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1.35;
  margin: 0 0 6px;
}

.ga-ad-desc {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #475569;
  margin: 0;
}

/* Skeleton */
.ga-skeleton-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ga-skeleton-line {
  height: 8px;
  border-radius: 4px;
}

/* Floating Stat Cards */
.ga-stat-float {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 3;
}

.ga-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #111827;
  display: block;
}

.ga-stat-number {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0EB142;
  line-height: 1.2;
}

.ga-stat-sub {
  font-size: 0.72rem;
  color: #64748b;
}

.ga-stat-float--perf {
  top: 10px;
  right: 0;
  width: 155px;
}

.ga-stat-float--conv {
  top: 180px;
  right: 10px;
  width: 145px;
}

.ga-bullseye-float {
  position: absolute;
  bottom: 25px;
  right: 90px;
  z-index: 4;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.ga-google-ads-badge {
  position: absolute;
  bottom: 45px;
  right: 0;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  border: 1px solid #f1f5f9;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
}

/* 6 Features Grid */
.ga-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.ga-feature-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 18px;
  padding: 1.5rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px -6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ga-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -8px rgba(14, 177, 66, 0.15);
  border-color: rgba(14, 177, 66, 0.35);
}

.ga-feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ga-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.ga-feature-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

@media (max-width: 1200px) {
  .ga-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .ga-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ga-search-card {
    width: 90%;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .ga-hero-title {
    font-size: 1.85rem;
  }
  .ga-checklist-grid {
    grid-template-columns: 1fr;
  }
  .ga-features-grid {
    grid-template-columns: 1fr;
  }
  .ga-price-action-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .ga-price-divider {
    display: none;
  }
  .ga-btn-action {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   WORDPRESS HOSTING SHOWCASE (.section--wp-showcase)
   (3D Server Rack Tower, WordPress & Elementor Badges, Browser Wireframe & 6 Feature Cards)
════════════════════════════════════════════════════════════════════════ */
.section--wp-showcase {
  background: #ffffff;
  padding: 3.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(130, 184, 130, 0.15);
}

/* Clouds */
.wp-cloud {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.wp-cloud--1 {
  top: 10px;
  right: 180px;
}
.wp-cloud--2 {
  top: 60px;
  right: 10px;
}

/* 3D Server Tower */
.wp-server-tower {
  position: absolute;
  right: 40px;
  top: 30px;
  z-index: 2;
  transition: transform 0.4s ease;
}
.wp-server-tower:hover {
  transform: translateY(-4px);
}

/* Floating WordPress Logo Badge */
.wp-wordpress-badge {
  position: absolute;
  top: 80px;
  right: 15px;
  z-index: 4;
  filter: drop-shadow(0 10px 20px rgba(33, 117, 155, 0.25));
  transition: transform 0.3s ease;
}
.wp-wordpress-badge:hover {
  transform: scale(1.08) rotate(5deg);
}

/* Floating Shield Badge */
.wp-shield-badge {
  position: absolute;
  top: 175px;
  right: 0;
  z-index: 4;
  transition: transform 0.3s ease;
}
.wp-shield-badge:hover {
  transform: scale(1.08);
}

/* Browser Window */
.wp-browser-window {
  width: 68%;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin-right: 25%;
  margin-top: 20px;
}

.wp-browser-header {
  background: #1e293b;
  padding: 10px 14px;
  display: flex;
  align-items: center;
}

.wp-browser-dots {
  display: flex;
  gap: 6px;
}
.wp-browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.wp-browser-body {
  padding: 1.25rem;
}

.wp-browser-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.wp-site-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
}

.wp-site-nav-pills {
  display: flex;
  gap: 6px;
}
.wp-site-nav-pills span {
  width: 24px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
}

.wp-browser-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.wp-hero-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.wp-browser-side-skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Floating Elementor Badge */
.wp-elementor-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 14px 32px rgba(146, 0, 59, 0.12);
  border: 1px solid #fce7f3;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  font-size: 0.95rem;
  font-weight: 800;
  color: #92003B;
  transition: transform 0.3s ease;
}
.wp-elementor-badge:hover {
  transform: translateY(-4px);
}

/* Floating Speed Badge */
.wp-speed-badge {
  position: absolute;
  bottom: 20px;
  right: 60px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(130, 184, 130, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  transition: transform 0.3s ease;
}
.wp-speed-badge:hover {
  transform: translateY(-4px);
}

.wp-speed-info h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

.wp-speed-info p {
  font-size: 0.76rem;
  color: #64748b;
  margin: 2px 0 0;
  font-weight: 600;
}

@media (max-width: 992px) {
  .wp-browser-window {
    width: 90%;
    margin-right: 0;
  }
  .wp-server-tower {
    opacity: 0.4;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   PRESENTATION & POWERPOINT SHOWCASE (.section--ppt-showcase)
   (3D Laptop, Company Profile Slide, 3 Floating Cards, PPT/PDF Badges & 6 Feature Cards)
════════════════════════════════════════════════════════════════════════ */
.section--ppt-showcase {
  background: #ffffff;
  padding: 3.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(130, 184, 130, 0.15);
}

.ppt-dot-grid {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.ppt-dot-grid--tr {
  top: 20px;
  right: 15px;
}
.ppt-dot-grid--bl {
  bottom: 80px;
  left: 20px;
}

/* 3D Laptop */
.ppt-laptop-wrapper {
  position: relative;
  z-index: 2;
  width: 94%;
  max-width: 480px;
  margin-left: auto;
  margin-right: 20px;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.15));
}

.ppt-laptop-screen {
  background: #0f172a;
  border-radius: 14px 14px 2px 2px;
  padding: 8px 8px 0;
  border: 2px solid #334155;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.ppt-laptop-bezel {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
.ppt-laptop-cam {
  width: 5px;
  height: 5px;
  background: #475569;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0,0,0,0.8);
}

.ppt-slide-canvas {
  background: linear-gradient(135deg, #091a14 0%, #061e16 50%, #03140e 100%);
  border-radius: 6px 6px 0 0;
  height: 225px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1rem 0.75rem 1.25rem;
}

.ppt-slide-left {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.ppt-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.ppt-slide-main-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.ppt-slide-sub {
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.ppt-slide-stats-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.ppt-slide-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: #94a3b8;
  font-weight: 600;
}
.ppt-stat-dot {
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
}

.ppt-slide-right {
  position: relative;
  height: 100%;
  margin: -1.25rem -1rem -0.75rem 0;
}

.ppt-laptop-base {
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
  height: 14px;
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ppt-laptop-notch {
  width: 60px;
  height: 4px;
  background: #64748b;
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}

/* 3 Floating Slide Cards */
.ppt-floating-cards-wrap {
  position: absolute;
  bottom: -15px;
  left: -20px;
  right: 10px;
  display: flex;
  gap: 12px;
  z-index: 5;
  pointer-events: none;
}

.ppt-card-slide {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  transition: transform 0.3s ease;
}
.ppt-card-slide:hover {
  transform: translateY(-4px);
}

/* Slide 1 */
.ppt-card-slide--1 {
  width: 125px;
  height: 95px;
  margin-top: 25px;
}
.ppt-cs-header {
  display: flex;
  flex-direction: column;
}
.ppt-cs-title {
  font-size: 0.65rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}
.ppt-cs-sub {
  font-size: 0.55rem;
  font-weight: 700;
  color: #0EB142;
  margin-bottom: 2px;
}
.ppt-cs-chart {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ppt-cs-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0EB142;
}

/* Slide 2 */
.ppt-card-slide--2 {
  width: 145px;
  height: 95px;
  margin-top: 15px;
}
.ppt-cs-title-dark {
  font-size: 0.68rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
}
.ppt-cs-icons-row {
  display: flex;
  gap: 6px;
  justify-content: space-between;
}
.ppt-cs-mini-box {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #e8f5e8;
  color: #0EB142;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.ppt-cs-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.ppt-cs-lines span:nth-child(1) {
  height: 4px;
  width: 75%;
  background: #e2e8f0;
  border-radius: 2px;
}
.ppt-cs-lines span:nth-child(2) {
  height: 4px;
  width: 50%;
  background: #e2e8f0;
  border-radius: 2px;
}

/* Slide 3 */
.ppt-card-slide--3 {
  width: 145px;
  height: 95px;
  background: linear-gradient(135deg, #061e16 0%, #03140e 100%);
  border: 1px solid #166534;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
.ppt-cs-ty-title {
  font-size: 0.72rem;
  font-weight: 900;
  color: #ffffff;
}
.ppt-cs-ty-sub {
  font-size: 0.48rem;
  font-weight: 700;
  color: #86efac;
  letter-spacing: 0.04em;
}
.ppt-cs-ty-ribbons {
  margin-top: auto;
  margin-bottom: -10px;
  margin-left: -12px;
  margin-right: -12px;
}

/* Badges */
.ppt-badge-ppt {
  position: absolute;
  top: 110px;
  right: 0;
  z-index: 6;
  transition: transform 0.3s ease;
}
.ppt-badge-ppt:hover {
  transform: scale(1.08) rotate(4deg);
}

.ppt-badge-pdf {
  position: absolute;
  top: 175px;
  right: 0;
  z-index: 6;
  transition: transform 0.3s ease;
}
.ppt-badge-pdf:hover {
  transform: scale(1.08) rotate(-4deg);
}

@media (max-width: 992px) {
  .ppt-floating-cards-wrap {
    position: static;
    flex-wrap: wrap;
    margin-top: 1rem;
    pointer-events: auto;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   MALWARE WORDPRESS & SECURITY SERVICE SHOWCASE (.section--malware-showcase)
   (3D Shield & Padlock Scene, 3 Feature Rows, 25,000 THB Price Box, 4 Stats Strip)
════════════════════════════════════════════════════════════════════════ */
.section--malware-showcase {
  background: #ffffff;
  padding: 3.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(130, 184, 130, 0.15);
}

.malware-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.malware-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(14, 177, 66, 0.25);
  margin-bottom: 1.25rem;
}

.malware-hero-title {
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.malware-title-line1,
.malware-title-line2 {
  display: block;
}

.malware-hero-title .text-green-highlight {
  color: #0EB142;
  font-weight: 800;
}

.malware-hero-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 2rem;
}

/* 3 Feature Rows */
.malware-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.malware-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.malware-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0EB142;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(14, 177, 66, 0.3);
}

.malware-feature-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 3px;
  line-height: 1.3;
}

.malware-feature-text p {
  font-size: 0.86rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* Pricing & Action Card */
.malware-price-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.malware-price-col {
  display: flex;
  flex-direction: column;
}

.malware-price-label {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 2px;
}

.malware-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.malware-price-val {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0EB142;
  line-height: 1;
}

.malware-price-unit {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.malware-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0EB142;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.25);
  transition: all 0.25s ease;
}

.malware-btn-action:hover {
  background: #0ba03a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14, 177, 66, 0.35);
}

/* 3 Trust Badges Row */
.malware-trust-chips {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.malware-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.malware-trust-chip svg {
  flex-shrink: 0;
}

/* Visual Stage Right (Seamless 3D Shield Scene with Interactive Node Cards) */
.malware-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.malware-circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.malware-shield-img {
  position: relative;
  z-index: 2;
  width: 64%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(14, 177, 66, 0.15));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.malware-stage-wrapper:hover .malware-shield-img {
  transform: translateY(-4px) scale(1.02);
}

.malware-ambient-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(14, 177, 66, 0.12) 0%, rgba(14, 177, 66, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Background Cyber Matrix & UI Lines */
.malware-matrix-code {
  position: absolute;
  right: 12%;
  top: 38%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(14, 177, 66, 0.35);
  letter-spacing: 2px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.malware-ui-lines {
  position: absolute;
  left: 10%;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
  z-index: 1;
}

.malware-ui-line {
  height: 3.5px;
  background: rgba(14, 177, 66, 0.22);
  border-radius: 2px;
}
.malware-ui-line.line-1 { width: 55px; }
.malware-ui-line.line-2 { width: 35px; }
.malware-ui-line.line-3 { width: 70px; }
.malware-ui-line.line-4 { width: 45px; }

/* 4 Interactive Satellite Node Cards */
.malware-node-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  user-select: none;
}

.malware-node-card:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: #0EB142;
  box-shadow: 0 16px 32px -4px rgba(14, 177, 66, 0.22), 0 6px 12px -2px rgba(14, 177, 66, 0.12);
}

.malware-node-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.malware-node-card:hover .malware-node-icon {
  background: #0EB142;
  transform: scale(1.08);
}

.malware-node-card:hover .malware-node-icon svg circle,
.malware-node-card:hover .malware-node-icon svg path {
  stroke: #ffffff;
}

.malware-node-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

/* Positions for Desktop */
.malware-node-card--tl {
  top: 8%;
  left: 0;
}

.malware-node-card--tr {
  top: 10%;
  right: 0;
}

.malware-node-card--bl {
  bottom: 12%;
  left: 2%;
}

.malware-node-card--br {
  bottom: 10%;
  right: 2%;
}

/* Bottom 4 Stats Strip */
.malware-stats-strip {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

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

.malware-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.malware-stat-icon svg path,
.malware-stat-icon svg circle {
  stroke: #0EB142;
}

.malware-stat-text h4 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #111827;
  margin: 0 0 2px;
  line-height: 1.15;
}

.malware-stat-text p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .malware-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .malware-stage-wrapper {
    max-width: 520px;
    min-height: 440px;
  }
  .malware-node-card--tl { left: -10px; }
  .malware-node-card--tr { right: -10px; }
  .malware-node-card--bl { left: -5px; }
  .malware-node-card--br { right: -5px; }
  .malware-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.25rem;
  }
}

@media (max-width: 640px) {
  .malware-stage-wrapper {
    min-height: auto;
    flex-direction: column;
    gap: 0.85rem;
  }
  .malware-circuit-svg {
    display: none;
  }
  .malware-shield-img {
    width: 70%;
    max-width: 260px;
    margin-bottom: 1rem;
  }
  .malware-node-card {
    position: static;
    width: 100%;
    max-width: 280px;
  }
  .malware-matrix-code,
  .malware-ui-lines {
    display: none;
  }
  .malware-stats-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   WEBSITE CLOUD VPS SHOWCASE (.section--vps-showcase) - PIXEL PERFECT
   (3D Isometric Stage, 4 Satellite Nodes, Centerpiece Cloud & Servers, 5 Specs Strip)
════════════════════════════════════════════════════════════════════════ */
.section--vps-showcase {
  background: #ffffff;
  padding: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(130, 184, 130, 0.15);
}

.section--vps-showcase .ga-breadcrumb {
  margin-bottom: 2rem;
}

.vps-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

/* 3D Isometric Stage Container (Left - Frameless Floating Visual & Real Nodes) */
.vps-isometric-stage {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  width: 100%;
}

.vps-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vps-server-img {
  width: 68%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0, 30, 15, 0.08));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.vps-stage-wrapper:hover .vps-server-img {
  transform: translateY(-4px) scale(1.02);
}

/* Connecting Circuit SVG Lines */
.vps-circuit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.vps-circuit-path {
  stroke: #10b981;
  stroke-width: 1.75;
  stroke-dasharray: 4 4;
  opacity: 0.85;
}

/* 4 Satellite Connected Node Cards */
.vps-node-card {
  position: absolute;
  z-index: 3;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.07), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(8px);
}

.vps-node-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 14px 28px -4px rgba(16, 185, 129, 0.15), 0 4px 10px -1px rgba(0, 0, 0, 0.05);
}

.vps-node-card--tl {
  top: 6%;
  left: -2%;
}

.vps-node-card--tr {
  top: 6%;
  right: -2%;
}

.vps-node-card--bl {
  bottom: 8%;
  left: -2%;
}

.vps-node-card--br {
  bottom: 8%;
  right: -2%;
}

.vps-node-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eef8f1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vps-node-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.vps-node-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.vps-node-text span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
  margin-top: 2px;
}

@media (max-width: 1200px) {
  .vps-node-card--tl { left: 0; }
  .vps-node-card--tr { right: 0; }
  .vps-node-card--bl { left: 0; }
  .vps-node-card--br { right: 0; }
}

/* Right Content - Cloud VPS Dedicated Styling */
.section--vps-showcase .vps-badge-pill {
  display: inline-flex;
  align-items: center;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(14, 177, 66, 0.25);
  margin-bottom: 1.25rem;
}

.section--vps-showcase .ga-hero-title {
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.22;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.section--vps-showcase .text-green-vps,
.section--vps-showcase .text-green-highlight {
  color: #0EB142;
  font-weight: 800;
}

.section--vps-showcase .ga-hero-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 1.75rem;
}

.section--vps-showcase .ga-checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.section--vps-showcase .ga-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1f2937;
}

.section--vps-showcase .ga-check-item svg {
  flex-shrink: 0;
}

.section--vps-showcase .ga-price-action-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.1rem 1.6rem;
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 540px;
}

.section--vps-showcase .ga-price-val {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0EB142;
}

.section--vps-showcase .ga-consult-val {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.section--vps-showcase .ga-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0EB142;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  margin-left: auto;
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.25);
  transition: all 0.25s ease;
}

.section--vps-showcase .ga-btn-action:hover {
  background: #0ba03a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14, 177, 66, 0.35);
}

.section--vps-showcase .ga-full-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0EB142;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.section--vps-showcase .ga-full-link:hover {
  color: #0ba03a;
  text-decoration: underline;
}

/* Bottom 5 Specs Strip */
.vps-specs-strip {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.vps-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vps-spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vps-spec-icon svg path,
.vps-spec-icon svg rect {
  stroke: #0EB142;
}

.vps-spec-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px;
  line-height: 1.2;
}

.vps-spec-text p {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .vps-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vps-specs-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .vps-stage-wrapper {
    min-height: auto;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  .vps-circuit-svg {
    display: none;
  }
  .vps-server-img {
    width: 85%;
    max-width: 320px;
    margin-bottom: 0.5rem;
  }
  .vps-node-card {
    position: static;
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 140px;
    padding: 8px 12px;
  }
}

@media (max-width: 640px) {
  .vps-specs-strip {
    grid-template-columns: 1fr;
  }
}

/* Quick Jump Nav Pill Hover Colors */
.nav-pill--hover-yellow:hover {
  border-color: #f59e0b !important;
  color: #d97706 !important;
  background: rgba(245, 158, 11, 0.12) !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2) !important;
}
.nav-pill--hover-blue:hover {
  border-color: #3b82f6 !important;
  color: #2563eb !important;
  background: rgba(59, 130, 246, 0.12) !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
}
.nav-pill--hover-purple:hover {
  border-color: #8b5cf6 !important;
  color: #7c3aed !important;
  background: rgba(139, 92, 246, 0.12) !important;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2) !important;
}
.nav-pill--hover-red:hover {
  border-color: #ef4444 !important;
  color: #dc2626 !important;
  background: rgba(239, 68, 68, 0.12) !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2) !important;
}
.nav-pill--hover-green:hover {
  border-color: #0EB142 !important;
  color: #0EB142 !important;
  background: rgba(14, 177, 66, 0.12) !important;
  box-shadow: 0 4px 15px rgba(14, 177, 66, 0.2) !important;
}

/* ══════════════════════════════════════════════════════════════════════
   CLOUD VPS HIGH-PERFORMANCE SERVICE SHOWCASE & SPECS (.vps-*)
   (Modern 3D Isometric Hero, 3 Mini Cards, Uptime 99.9% Royal Banner, Pricing & Specs)
════════════════════════════════════════════════════════════════════════ */
.vps-pro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
  width: 100%;
  box-sizing: border-box;
}

/* ─── 1. Hero Showcase ─── */
.vps-hero-showcase {
  background: radial-gradient(circle at 10% 20%, rgba(224, 242, 254, 0.5) 0%, #ffffff 60%);
  border: 1px solid rgba(74, 120, 74, 0.12);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(58, 99, 58, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.vps-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Visual Left */
.vps-hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.vps-hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #ffffff;
  border: 1px solid rgba(74, 120, 74, 0.1);
  border-radius: 1.75rem;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 70, 160, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.vps-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1.25rem;
  transition: transform 0.4s ease;
}

.vps-hero-visual-card:hover .vps-hero-img {
  transform: translateY(-4px) scale(1.02);
}

.vps-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(130, 184, 130, 0.25) 0%, rgba(74, 120, 74, 0.05) 60%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.vps-floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(74, 120, 74, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(58, 99, 58, 0.12);
  z-index: 2;
  white-space: nowrap;
}

.vps-floating-chip--nvme {
  top: -12px;
  left: 20px;
  animation: floatChip 4s ease-in-out infinite alternate;
}

.vps-floating-chip--nvme i {
  color: #6E9E6E;
  font-size: 1.1rem;
}

.vps-floating-chip--ddos {
  bottom: -12px;
  right: 20px;
  animation: floatChip 4s ease-in-out infinite alternate-reverse;
}

.vps-floating-chip--ddos i {
  color: #6E9E6E;
  font-size: 1.1rem;
}

@keyframes floatChip {
  0% {
    transform: translateY(0);
  }

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

/* Content Right */
.vps-hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.vps-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1.1rem;
  background: #E5F2E5;
  color: #4A784A;
  border: 1px solid rgba(74, 120, 74, 0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  align-self: flex-start;
  max-width: 100%;
}

.vps-hero-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.vps-title-highlight {
  color: #4A784A;
  background: linear-gradient(135deg, #4A784A 0%, #82B882 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vps-hero-desc {
  font-size: 0.975rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.vps-hero-desc strong {
  color: #0f172a;
}

/* 3 Mini Feature Cards (Row of 3 on Desktop -> 1 Col on Mobile) */
.vps-mini-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
  width: 100%;
}

.vps-mini-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  padding: 0.85rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  min-width: 0;
  box-sizing: border-box;
}

.vps-mini-card:hover {
  transform: translateY(-2px);
  border-color: #4A784A;
  box-shadow: 0 8px 20px rgba(74, 120, 74, 0.1);
}

.vps-mini-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.vps-mini-icon-box--ssd {
  background: #E5F2E5;
  color: #4A784A;
}

.vps-mini-icon-box--root {
  background: #E5F2E5;
  color: #4A784A;
}

.vps-mini-icon-box--support {
  background: #E5F2E5;
  color: #4A784A;
}

.vps-mini-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vps-mini-info h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.15rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vps-mini-info p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Uptime 99.9% Royal Green Banner Card */
.vps-uptime-banner {
  background: linear-gradient(135deg, #4A784A 0%, #2D4C2D 100%);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 12px 30px rgba(74, 120, 74, 0.28);
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.vps-uptime-ring-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vps-progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vps-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 4.5;
}

.vps-ring-val {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease;
}

.vps-uptime-ring-text {
  position: absolute;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.vps-uptime-text {
  flex: 1;
  min-width: 0;
}

.vps-uptime-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.vps-uptime-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

.btn-vps-uptime-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #4A784A;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-vps-uptime-cta:hover {
  background: #F2F7F2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #3A633A;
}

/* ─── 2. Key Features Grid (4 Columns Desktop -> 2 Cols Tablet -> 1 Col Mobile) ─── */
.vps-features-mockup-section {
  position: relative;
  padding: 1.5rem 0 2.5rem;
  width: 100%;
}

.vps-feat-decor--dots {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 130px;
  height: 90px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.vps-dot-matrix {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#82B882 2.5px, transparent 2.5px);
  background-size: 18px 18px;
}

.vps-feat-decor--cloud {
  position: absolute;
  top: -10px;
  right: 0;
  width: 200px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
}

.vps-cloud-decor-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vps-features-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.vps-features-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.vps-feature-pro-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-sizing: border-box;
  min-width: 0;
}

.vps-feature-pro-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 120, 74, 0.35);
  box-shadow: 0 16px 35px rgba(74, 120, 74, 0.12);
}

.vps-feature-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #F2F7F2;
  border: 1.5px solid #C2E2C2;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(74, 120, 74, 0.08);
}

.vps-feature-pro-card:hover .vps-feature-icon-circle {
  transform: scale(1.08);
  background: #dbeafe;
  border-color: #4A784A;
}

.vps-feature-card-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.65rem;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.vps-feature-card-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.vps-card-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #4A784A 0%, #82B882 100%);
  transition: all 0.3s ease;
}

.vps-feature-pro-card:hover .vps-card-bottom-bar {
  height: 4.5px;
  box-shadow: 0 0 12px rgba(74, 120, 74, 0.6);
}

/* ─── 3. Pricing Grid (3 Tiers & 4 Trust Badges) ─── */
.vps-pricing-section {
  padding: 1.5rem 0 2.5rem;
  width: 100%;
}

.vps-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
  width: 100%;
}

.vps-price-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  min-width: 0;
}

.vps-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 120, 74, 0.4);
  box-shadow: 0 18px 40px rgba(74, 120, 74, 0.1);
}

.vps-price-card--popular {
  border: 2px solid #4A784A;
  box-shadow: 0 16px 40px rgba(74, 120, 74, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.vps-price-card--popular:hover {
  box-shadow: 0 20px 48px rgba(74, 120, 74, 0.2);
}

.vps-popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4A784A 0%, #3A633A 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(74, 120, 74, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  z-index: 2;
}

.vps-price-header-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vps-price-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 0.85rem;
  background: #E5F2E5;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.vps-price-icon-box--popular {
  background: #dbeafe;
  color: #3A633A;
}

.vps-price-card:hover .vps-price-icon-box {
  transform: scale(1.08);
}

.vps-price-title-wrap {
  flex: 1;
  min-width: 0;
}

.vps-price-tier-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.vps-price-tier-desc {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.vps-price-figure {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.vps-price-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4A784A;
  line-height: 1;
  letter-spacing: -0.03em;
}

.vps-price-period {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.vps-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vps-price-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.4;
}

.vps-price-features li i {
  color: #4A784A;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.vps-price-btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  border-radius: 0.85rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.vps-price-btn--outline {
  background: #ffffff;
  border: 1.5px solid #4A784A;
  color: #4A784A;
}

.vps-price-btn--outline:hover {
  background: #E5F2E5;
  color: #3A633A;
  transform: translateY(-2px);
}

.vps-price-btn--primary {
  background: linear-gradient(135deg, #4A784A 0%, #3A633A 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(74, 120, 74, 0.35);
}

.vps-price-btn--primary:hover {
  background: linear-gradient(135deg, #3A633A 0%, #224022 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 120, 74, 0.45);
  color: #ffffff;
}

/* 4 Trust Badges under Pricing Cards */
.vps-pricing-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.vps-pricing-trust-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.15rem;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  min-width: 0;
  box-sizing: border-box;
}

.vps-pricing-trust-card:hover {
  border-color: rgba(74, 120, 74, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74, 120, 74, 0.08);
}

.vps-pricing-trust-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E5F2E5;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.vps-pricing-trust-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vps-pricing-trust-info h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.15rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vps-pricing-trust-info p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── 4. Why Choose Our VPS ─── */
.vps-why-showcase-box {
  background: linear-gradient(135deg, #ffffff 0%, #F2F7F2 60%, #E5F2E5 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.18);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 40px rgba(58, 99, 58, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.vps-why-header {
  margin-bottom: 2.5rem;
}

.vps-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
}

.vps-why-card {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  min-width: 0;
}

.vps-why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #4A784A 0%, #3A633A 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(74, 120, 74, 0.25);
  transition: transform 0.3s ease;
}

.vps-why-card:hover .vps-why-icon-box {
  transform: scale(1.1);
}

.vps-why-info {
  flex: 1;
  min-width: 0;
}

.vps-why-info h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.vps-why-info p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ─── 5. FAQ Accordion ─── */
.vps-faq-section {
  padding: 1.5rem 0 2rem;
  width: 100%;
}

.vps-faq-header {
  margin-bottom: 2.5rem;
}

.vps-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.vps-faq-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.vps-faq-item[open] {
  border-color: #4A784A;
  box-shadow: 0 10px 30px rgba(74, 120, 74, 0.1);
}

.vps-faq-question {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.6rem;
  font-weight: 700;
  color: #0f172a;
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: color 0.2s ease;
}

.vps-faq-question:hover {
  color: #4A784A;
}

.vps-faq-question::-webkit-details-marker {
  display: none;
}

.vps-faq-caret {
  color: #4A784A;
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.vps-faq-item[open] .vps-faq-caret {
  transform: rotate(180deg);
}

.vps-faq-answer {
  padding: 0 1.6rem 1.5rem;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.75;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.15rem;
  margin-top: 0.25rem;
}

.vps-faq-answer p {
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   CLOUD VPS RESPONSIVE BREAKPOINTS (ALL DEVICES)
════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vps-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vps-features-pro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .vps-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    gap: 2rem;
  }

  .vps-pricing-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .vps-why-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .vps-hero-showcase {
    padding: 1.75rem 1.25rem;
    border-radius: 1.35rem;
  }

  .vps-hero-visual-card {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .vps-floating-chip--nvme {
    top: -8px;
    left: 8px;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }

  .vps-floating-chip--ddos {
    bottom: -8px;
    right: 8px;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }

  .vps-mini-features-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .vps-features-pro-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vps-feature-pro-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .vps-price-card {
    padding: 2rem 1.5rem;
  }

  .vps-why-showcase-box {
    padding: 1.75rem 1.25rem;
    border-radius: 1.35rem;
  }
}

@media (max-width: 640px) {
  .vps-uptime-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }

  .vps-uptime-text {
    width: 100%;
  }

  .btn-vps-uptime-cta {
    width: 100%;
    justify-content: center;
  }

  .vps-pricing-trust-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  .vps-hero-title {
    font-size: 1.65rem;
  }

  .vps-badge-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.85rem;
  }

  .vps-faq-question {
    padding: 1rem 1.15rem;
  }

  .vps-faq-answer {
    padding: 0 1.15rem 1.15rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   MALWARE REMOVAL & SECURITY HERO SHOWCASE (.malware-top-hero)
   (Matching Image 1 Mockup: Dual CTAs + 3D Shield + 3 Mini Feature Cards Grid)
════════════════════════════════════════════════════════════════════════ */
.malware-top-hero {
  background: radial-gradient(circle at 75% 20%, #F2F7F2 0%, #ffffff 60%, #E5F2E5 100%);
  border: 1.5px solid rgba(74, 120, 74, 0.15);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(58, 99, 58, 0.06);
  position: relative;
  overflow: hidden;
}

.malware-top-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.malware-top-hero-content {
  display: flex;
  flex-direction: column;
}

/* Breadcrumbs Pill */
.malware-pill-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.825rem;
  color: #64748b;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.malware-pill-breadcrumb a {
  color: #4A784A;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.malware-pill-breadcrumb a:hover {
  color: #3A633A;
}

.malware-pill-breadcrumb span.active {
  color: #4A784A;
  font-weight: 700;
}

.malware-top-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 1.25rem 0 1rem;
  letter-spacing: -0.02em;
}

.malware-top-hero-subtitle {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 540px;
}

/* Dual CTA Buttons */
.malware-hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-malware-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #4A784A 0%, #3A633A 100%);
  color: #ffffff;
  font-size: 0.975rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(74, 120, 74, 0.35);
  transition: all 0.3s ease;
}

.btn-malware-primary:hover {
  background: linear-gradient(135deg, #3A633A 0%, #224022 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74, 120, 74, 0.45);
  color: #ffffff;
}

.btn-malware-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.btn-malware-secondary:hover {
  border-color: #4A784A;
  color: #4A784A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74, 120, 74, 0.12);
}

/* Right Visual: 3D Shield & 3 Mini Cards */
.malware-top-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.malware-3d-shield-box {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.malware-shield-glow-center {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 120, 74, 0.15) 0%, rgba(224, 242, 254, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.malware-shield-glow-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(74, 120, 74, 0.3);
  animation: vpsSpinSlow 25s linear infinite;
}

.malware-shield-3d-ico {
  width: 130px;
  height: 130px;
  border-radius: 2rem;
  background: linear-gradient(135deg, #4A784A 0%, #3A633A 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 15px 40px rgba(74, 120, 74, 0.4);
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.malware-shield-3d-ico:hover {
  transform: rotate(0deg) scale(1.05);
}

.malware-dots-decor {
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.35;
}

/* 3 Mini Feature Cards Row */
.malware-mini-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.malware-mini-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.malware-mini-card:hover {
  border-color: rgba(74, 120, 74, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74, 120, 74, 0.1);
}

.malware-mini-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E5F2E5;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.malware-mini-card h4 {
  font-size: 0.925rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.malware-mini-card p {
  font-size: 0.775rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 1024px) {
  .malware-top-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .malware-top-hero {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }

  .malware-top-hero-title {
    font-size: 1.95rem;
  }

  .malware-mini-cards-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   MALWARE INFECTION SYMPTOMS SECTION (.malware-symptom-*)
   (Professional 4-Column Grid, Micro-animations & Responsive Design)
════════════════════════════════════════════════════════════════════════ */
.malware-symptoms-card-wrapper {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.15);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 15px 45px rgba(58, 99, 58, 0.05);
}

.malware-symptoms-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.malware-symptoms-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.malware-symptoms-header h2 .text-highlight-blue {
  color: #4A784A;
}

.malware-symptoms-header p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

/* Accent Divider Indicator */
.malware-symptom-divider {
  width: 100px;
  height: 3px;
  background: #e2e8f0;
  border-radius: 999px;
  margin: 1rem auto 0;
  position: relative;
  overflow: hidden;
}

.malware-symptom-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: #4A784A;
  border-radius: 999px;
}

/* 4-Column Symptoms Responsive Grid */
.malware-symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.malware-symptom-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.malware-symptom-card:hover {
  transform: translateY(-5px);
  border-color: #4A784A;
  box-shadow: 0 14px 35px rgba(74, 120, 74, 0.14);
}

.malware-symptom-ico {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5F2E5 0%, #C2E2C2 100%);
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.malware-symptom-card:hover .malware-symptom-ico {
  transform: scale(1.08);
  background: #4A784A;
  color: #ffffff;
}

.malware-symptom-text {
  font-size: 0.925rem;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.45;
}

/* Alert Pill Banner */
.malware-alert-banner-box {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.malware-alert-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #F2F7F2;
  border: 1.5px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  color: #4A784A;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 10px rgba(74, 120, 74, 0.05);
  transition: all 0.3s ease;
}

.malware-alert-banner i {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #4A784A;
}

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

  .malware-symptoms-card-wrapper {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .malware-symptom-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .malware-symptoms-header h2 {
    font-size: 1.75rem;
  }

  .malware-alert-banner {
    border-radius: 1.25rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   OUR SERVICES SECTION & TRUST GUARANTEE BAR (.malware-services-*)
════════════════════════════════════════════════════════════════════════ */
.malware-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.malware-service-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}

.malware-service-card:hover {
  transform: translateY(-6px);
  border-color: #4A784A;
  box-shadow: 0 16px 40px rgba(74, 120, 74, 0.12);
}

.malware-service-ico-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5F2E5 0%, #C2E2C2 100%);
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.malware-service-card:hover .malware-service-ico-box {
  transform: scale(1.08);
  background: #4A784A;
  color: #ffffff;
}

.malware-service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.6rem;
  line-height: 1.35;
}

.malware-service-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.btn-service-detail-modal {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #4A784A;
  font-size: 0.875rem;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: fit-content;
  transition: color 0.2s ease;
}

.btn-service-detail-modal i {
  transition: transform 0.25s ease;
}

.btn-service-detail-modal:hover {
  color: #224022;
}

.btn-service-detail-modal:hover i {
  transform: translateX(4px);
}

/* Trust Guarantee Bar (Horizontal 4 columns) */
.malware-trust-bar {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 8px 30px rgba(58, 99, 58, 0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.malware-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.malware-trust-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #bfdbfe;
  background: #F2F7F2;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.malware-trust-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.2rem;
}

.malware-trust-info p {
  font-size: 0.775rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════════════
   OUR PROMISE SECTION (.malware-promise-*)
════════════════════════════════════════════════════════════════════════ */
.malware-promise-card-wrapper {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.15);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 15px 45px rgba(58, 99, 58, 0.05);
}

.malware-promise-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.malware-promise-badge {
  display: inline-block;
  background: #F2F7F2;
  border: 1px solid #bfdbfe;
  color: #4A784A;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.malware-promise-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.malware-promise-divider {
  width: 40px;
  height: 3px;
  background: #4A784A;
  border-radius: 999px;
  margin: 1rem auto 0;
}

.malware-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.malware-promise-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.malware-promise-card:hover {
  transform: translateY(-5px);
  border-color: #4A784A;
  box-shadow: 0 14px 35px rgba(74, 120, 74, 0.12);
}

.malware-promise-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5F2E5 0%, #C2E2C2 100%);
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.malware-promise-card:hover .malware-promise-ico {
  transform: scale(1.08);
  background: #4A784A;
  color: #ffffff;
}

.malware-promise-title-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.malware-promise-line {
  width: 24px;
  height: 2px;
  background: #4A784A;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.malware-promise-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Modal Popup Styles */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.svc-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.svc-modal-card {
  background: #ffffff;
  border-radius: 2rem;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-modal-overlay.active .svc-modal-card {
  transform: scale(1) translateY(0);
}

.svc-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.svc-modal-close:hover {
  background: #4A784A;
  color: #ffffff;
}

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

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

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

@media (max-width: 640px) {
  .malware-services-grid {
    grid-template-columns: 1fr;
  }

  .malware-trust-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .malware-promise-grid {
    grid-template-columns: 1fr;
  }

  .malware-promise-card-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   PREMIUM FAQ SECTION (.malware-faq-*)
   Polished accordion: soft elevation, gradient icon avatars, animated
   chevron, refined spacing & typography — built on existing tokens.
════════════════════════════════════════════════════════════════════════ */
.malware-faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}

.malware-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35em 1em;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-full);
  background: rgba(74, 120, 74, .1);
  border: 1px solid rgba(74, 120, 74, .25);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.malware-faq-header h2 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--txt-main);
  margin-bottom: var(--sp-2);
}

.malware-faq-header p {
  color: var(--txt-dim);
  font-size: var(--fs-sm);
}

.malware-faq-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 880px;
  margin: 0 auto;
}

.malware-faq-item {
  background: #ffffff;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .035);
  transition: var(--tr-normal);
}

.malware-faq-item:hover {
  border-color: rgba(74, 120, 74, .4);
  box-shadow: 0 10px 26px rgba(74, 120, 74, .1);
}

.malware-faq-item[open] {
  border-color: var(--clr-primary);
  box-shadow: 0 16px 36px rgba(74, 120, 74, .16);
}

.malware-faq-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  list-style: none;
}

.malware-faq-summary::-webkit-details-marker {
  display: none;
}

.malware-faq-summary::marker {
  content: '';
}

.malware-faq-ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(74, 120, 74, .1), rgba(130, 184, 130, .14));
  color: var(--clr-primary);
  transition: var(--tr-normal);
}

.malware-faq-item[open] .malware-faq-ico {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(74, 120, 74, .35);
}

.malware-faq-q {
  flex: 1;
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--txt-main);
}

.malware-faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1rem;
  transition: var(--tr-normal);
}

.malware-faq-item[open] .malware-faq-chevron {
  transform: rotate(180deg);
  background: rgba(74, 120, 74, .12);
  color: var(--clr-primary);
}

.malware-faq-a-wrap {
  padding: 0 1.4rem 1.35rem 3.9rem;
}

.malware-faq-a {
  color: var(--txt-muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
  border-top: 1px dashed rgba(74, 120, 74, .18);
  padding-top: .9rem;
  animation: malwareFaqFadeIn .28s ease;
}

@keyframes malwareFaqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .malware-faq-header h2 {
    font-size: 1.5rem;
  }

  .malware-faq-summary {
    padding: 1rem 1.1rem;
    gap: .75rem;
  }

  .malware-faq-ico {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 1.1rem;
  }

  .malware-faq-q {
    font-size: var(--fs-sm);
  }

  .malware-faq-a-wrap {
    padding: 0 1.1rem 1.1rem 1.1rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   BLOG DETAIL SIDEBAR, PROMO BANNER & ADVANTAGES CARDS
   ออกแบบตามตัวอย่าง UI พรีเมียม ทันสมัย รองรับ Responsive 100%
════════════════════════════════════════════════════════════════════════ */

/* ─── 1. Blog Sidebar Wrapper & Widgets ─── */
.blog-sidebar-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h, 72px) + 1.5rem);
}

.blog-widget-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.blog-widget-card:hover {
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

.blog-widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1.1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}

/* ─── Search Box Widget ─── */
.blog-search-form {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.85rem;
  padding: 0.35rem 0.4rem 0.35rem 0.85rem;
  transition: all 0.25s ease;
}

.blog-search-form:focus-within {
  background: #ffffff;
  border-color: #4A784A;
  box-shadow: 0 0 0 3px rgba(74, 120, 74, 0.12);
}

.blog-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  color: #0f172a;
  font-family: inherit;
  padding: 0.35rem 0;
}

.blog-search-input::placeholder {
  color: #94a3b8;
}

.blog-search-btn {
  background: #4A784A;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.blog-search-btn:hover {
  background: #3A633A;
  transform: scale(1.05);
}

/* ─── Categories List Widget ─── */
.blog-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background: #f8fafc;
  border: 1px solid transparent;
}

.blog-cat-link:hover,
.blog-cat-link.active {
  background: #F2F7F2;
  border-color: rgba(74, 120, 74, 0.15);
  color: #4A784A;
  font-weight: 700;
  transform: translateX(3px);
}

.blog-cat-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.blog-cat-icon {
  font-size: 1.05rem;
  color: #64748b;
  transition: color 0.2s;
}

.blog-cat-link:hover .blog-cat-icon {
  color: #4A784A;
}

.blog-cat-badge {
  background: #ffffff;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}

.blog-cat-link:hover .blog-cat-badge {
  background: #4A784A;
  color: #ffffff;
  border-color: #4A784A;
}

/* ─── Popular Posts Widget ─── */
.blog-popular-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.blog-popular-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.4rem 0.5rem;
  border-radius: 0.85rem;
  transition: all 0.2s ease;
}

.blog-popular-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
}

.blog-popular-thumb-wrap {
  position: relative;
  width: 68px;
  height: 52px;
  border-radius: 0.65rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.blog-popular-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-popular-rank {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.blog-popular-item:nth-child(1) .blog-popular-rank {
  background: #4A784A;
  box-shadow: 0 2px 6px rgba(74, 120, 74, 0.4);
}

.blog-popular-info {
  flex: 1;
  min-width: 0;
}

.blog-popular-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 0.3rem 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  transition: color 0.2s;
}

.blog-popular-item:hover .blog-popular-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 0.3rem 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  transition: color 0.2s;
}

.blog-popular-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #94a3b8;
}

.blog-popular-views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #64748b;
  font-weight: 600;
}

/* ─── Newsletter Card Widget ─── */
.blog-sidebar-newsletter {
  background: linear-gradient(135deg, #3A633A 0%, #4A784A 50%, #6E9E6E 100%);
  border-radius: 1.25rem;
  padding: 1.75rem 1.4rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(74, 120, 74, 0.28);
  position: relative;
  overflow: hidden;
}

.blog-sidebar-newsletter::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.blog-newsletter-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.blog-sidebar-newsletter h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
}

.blog-sidebar-newsletter p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.84rem;
  color: #0f172a;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.blog-newsletter-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.blog-newsletter-btn {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.blog-newsletter-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

/* ─── 2. Promotional Landing Page Banner (Hero Showcase) ─── */
.blog-promo-banner {
  background: linear-gradient(135deg, #091a32 0%, #0d2952 60%, #103b75 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 1.5rem;
  padding: 2.25rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 16px 40px rgba(9, 26, 50, 0.25);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.blog-promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 120, 74, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.blog-promo-content {
  position: relative;
  z-index: 2;
}

.blog-promo-content h2 {
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.35;
  margin: 0 0 0.85rem 0;
  letter-spacing: -0.01em;
}

.blog-promo-content p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.blog-promo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #4A784A 0%, #3A633A 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(74, 120, 74, 0.35);
  transition: all 0.25s ease;
}

.blog-promo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 120, 74, 0.45);
  color: #ffffff;
}

.blog-promo-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-promo-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.25));
}

/* ─── 3. Advantages Cards Section ("✓ ข้อดีของการใช้...") ─── */
.blog-advantages-wrap {
  margin: 2.5rem 0 3rem 0;
}

.blog-advantages-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.blog-adv-check-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4A784A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(74, 120, 74, 0.3);
}

.blog-advantages-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

.blog-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-advantage-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.15rem;
  padding: 1.4rem 1.25rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.blog-advantage-card:hover {
  transform: translateY(-4px);
  border-color: #82B882;
  box-shadow: 0 10px 25px rgba(74, 120, 74, 0.08);
}

.blog-adv-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F2F7F2;
  color: #4A784A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(74, 120, 74, 0.15);
  transition: all 0.2s ease;
}

.blog-advantage-card:hover .blog-adv-icon-box {
  background: #4A784A;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(74, 120, 74, 0.25);
}

.blog-advantage-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.45rem 0;
  line-height: 1.35;
}

.blog-advantage-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ─── Responsive Breakpoints ─── */
@media (max-width: 1024px) {
  .blog-promo-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.75rem;
  }

  .blog-promo-content h2 {
    font-size: 1.4rem;
  }

  .blog-promo-cta-btn {
    margin: 0 auto;
  }

  .blog-promo-visual svg {
    max-width: 260px;
    margin: 0 auto;
  }

  .blog-advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-promo-banner {
    padding: 1.75rem 1.25rem;
  }

  .blog-promo-content h2 {
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════════════
   BLOG POSTS GRID, ENHANCED CARD & CIRCULAR PAGINATION
   ══════════════════════════════════════════════════════════════════ */
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.25rem;
}

@media (max-width: 1120px) {
  .blog-post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .blog-post-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── Enhanced Article Card (Spacious Rounded Frame) ── */
.blog-card-enhanced {
  background: #ffffff;
  border: 1.5px solid rgba(74, 120, 74, 0.12);
  border-radius: 1.35rem;
  /* ~22px rounded rectangular frame */
  overflow: hidden;
  box-shadow: 0 10px 25px -4px rgba(0, 70, 160, 0.07), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-enhanced:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 120, 74, 0.38);
  box-shadow: 0 20px 35px -6px rgba(74, 120, 74, 0.18), 0 8px 16px -4px rgba(0, 70, 160, 0.08);
}

.blog-card-enhanced a.blog-card-link-wrap {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-thumb-wrap {
  background: #f1f5f9;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.blog-card-thumb-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card-enhanced:hover .blog-card-thumb-wrap img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.5rem 1.5rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  width: fit-content;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.65rem 0;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.blog-card-enhanced:hover .blog-card-title {
  color: #4A784A;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94a3b8;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.blog-card-read-link {
  color: #4A784A;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.blog-card-enhanced:hover .blog-card-read-link {
  gap: 0.55rem;
}

/* ── Circular Pagination (Screenshot 3 Matching) ── */
.blog-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 3.5rem auto 1.5rem auto;
  flex-wrap: wrap;
}

.blog-page-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
}

.blog-page-btn:hover:not(.active):not(.disabled) {
  background: #ffffff;
  border-color: #82B882;
  color: #4A784A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 120, 74, 0.15);
}

.blog-page-btn.active {
  background: #4A784A;
  border-color: #4A784A;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(74, 120, 74, 0.42);
  cursor: default;
}

.blog-page-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
  box-shadow: none;
}

.blog-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 48px;
  color: #94a3b8;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.blog-page-btn i {
  font-size: 1.15rem;
}

/* ═══════════════════════════════════════════════════════════════════
   BENTO GRID & CREATIVE STUDIO ENHANCEMENTS — WebDesign
   ═══════════════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(110, 158, 110, 0.16);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 120, 74, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: rgba(110, 158, 110, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(74, 120, 74, 0.12), 0 0 24px rgba(110, 158, 110, 0.08);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.bento-card--large {
  grid-column: span 8;
}

.bento-card--medium {
  grid-column: span 4;
}

.bento-card--full {
  grid-column: span 12;
}

.bento-card--half {
  grid-column: span 6;
}

@media (max-width: 991px) {

  .bento-card--large,
  .bento-card--medium,
  .bento-card--half {
    grid-column: span 12;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   PACKAGE COMPARISON SHOWCASE (.section--package-comparison)
   (Modern Clean Card, 4 Columns, Highlighted Business Plan, 4 Bottom Trust Cards)
════════════════════════════════════════════════════════════════════════ */
.section--package-comparison {
  background: #f8fafc;
  padding: 4.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.pkg-compare-header {
  margin-bottom: 3rem;
}

.pkg-compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e8;
  color: #0EB142;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(14, 177, 66, 0.25);
  margin-bottom: 1.25rem;
}

.pkg-compare-title {
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.22;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.pkg-compare-title .text-green-highlight {
  color: #0EB142;
  background: none;
  -webkit-text-fill-color: #0EB142;
}

.pkg-compare-sub {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* Main Comparison Table Card */
.pkg-table-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 12px 36px -6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.pkg-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.pkg-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

/* Table Header */
.pkg-compare-table thead th {
  padding: 1.75rem 1.5rem 1.25rem;
  vertical-align: bottom;
  border-bottom: 1.5px solid #f1f5f9;
}

.pkg-th-features {
  width: 32%;
  padding-left: 2rem !important;
}

.pkg-th-feat-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
}

.pkg-th-plan {
  width: 22.6%;
  text-align: center;
  position: relative;
}

.pkg-plan-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pkg-plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pkg-plan-head:hover .pkg-plan-icon {
  transform: scale(1.08);
}

.pkg-plan-info h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pkg-star-inline {
  color: #eab308;
  font-size: 1.1rem;
}

.pkg-plan-info p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* Highlighted Column: Business */
.pkg-th-plan--highlight {
  background: #f4fbf5;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}

.pkg-rec-pill {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #1B4D2E;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(27, 77, 46, 0.2);
}

.pkg-rec-star {
  color: #fbbf24;
  font-size: 0.85rem;
}

.pkg-plan-icon--highlight {
  background: #dcfce7;
}

/* Table Body Rows */
.pkg-compare-table tbody tr {
  transition: background 0.2s ease;
}

.pkg-compare-table tbody tr:hover {
  background: #f8fafc;
}

.pkg-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.pkg-compare-table tbody td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.pkg-td-feature {
  padding-left: 2rem !important;
}

.pkg-feat-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.pkg-feat-name svg {
  flex-shrink: 0;
}

.pkg-td-val {
  text-align: center;
}

.pkg-td-val--highlight {
  background: #f4fbf5;
}

.pkg-compare-table tbody tr:last-child .pkg-td-val--highlight {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Check Circle & Dash */
.pkg-check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0EB142;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(14, 177, 66, 0.25);
  transition: transform 0.2s ease;
}

.pkg-check-circle:hover {
  transform: scale(1.15);
}

.pkg-dash {
  color: #94a3b8;
  font-size: 1.25rem;
  font-weight: 600;
  display: inline-block;
}

/* Bottom 4 Trust / Value Strip */
.pkg-trust-strip {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 1.4rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.pkg-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pkg-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pkg-trust-item:hover .pkg-trust-icon {
  transform: scale(1.08);
}

.pkg-trust-icon svg path,
.pkg-trust-icon svg circle,
.pkg-trust-icon svg rect {
  stroke: #0EB142;
}

.pkg-trust-text h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px;
  line-height: 1.2;
}

.pkg-trust-text p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
  line-height: 1.35;
}

/* Responsive Table */
@media (max-width: 992px) {
  .pkg-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .pkg-compare-table {
    min-width: 680px;
  }
  .pkg-trust-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   PREMIUM CONSULTATION CTA SHOWCASE (.section--services-consult-cta)
   (3 Columns: 3D Chat & Checklist Card, Headings & Green Pill CTA, Support Agent)
════════════════════════════════════════════════════════════════════════ */
.section--services-consult-cta {
  position: relative;
  background: #ffffff;
  padding: 5rem 0 0;
  overflow: hidden;
}

.consult-bg-grid {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#d1fae5 2.5px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.consult-bg-grid--tl {
  top: 40px;
  left: 5%;
}

.consult-bg-grid--tr {
  top: 80px;
  right: 5%;
}

.consult-cta-grid {
  display: grid;
  grid-template-columns: 270px 1fr 340px;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Left Column */
.consult-left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.consult-3d-chat-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 110px;
}

.consult-3d-chat-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(14, 177, 66, 0.18));
  animation: floatSlow 4s ease-in-out infinite;
}

.consult-checklist-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 14px 34px -6px rgba(0, 0, 0, 0.06);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.consult-checklist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -6px rgba(14, 177, 66, 0.12);
  border-color: #d1fae5;
}

.consult-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.consult-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1B4D2E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-card-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.consult-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.consult-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
}

.consult-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0EB142;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(14, 177, 66, 0.3);
}

/* Center Column */
.consult-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consult-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e8;
  color: #1B4D2E;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(14, 177, 66, 0.2);
}

.consult-main-title {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.22;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.consult-main-title .text-green-highlight {
  color: #0EB142;
  background: none;
  -webkit-text-fill-color: #0EB142;
}

.consult-subtitle {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  font-weight: 500;
}

.consult-chips-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.consult-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 8px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.consult-chip:hover {
  transform: translateY(-2px);
  border-color: #0EB142;
}

.consult-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e8f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-chip-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.consult-chip-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.consult-chip-text span {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

.consult-btn-wrap {
  margin-bottom: 1.25rem;
}

.consult-btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #1B4D2E;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 42px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(27, 77, 46, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consult-btn-action:hover {
  background: #0EB142;
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(14, 177, 66, 0.4);
}

.consult-guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
}

.consult-divider {
  color: #cbd5e1;
}

/* Right Column: Support Agent */
.consult-right-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.consult-agent-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-bottom: -15px;
}

.consult-agent-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s ease;
}

.consult-agent-wrapper:hover .consult-agent-img {
  transform: translateY(-4px) scale(1.01);
}

.consult-bubble-q {
  position: absolute;
  top: 14%;
  left: 6%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0EB142;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: floatSlow 3s ease-in-out infinite;
  z-index: 3;
}

.consult-bubble-dots {
  position: absolute;
  top: 36%;
  right: 0;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: floatSlow 3.5s ease-in-out infinite 0.5s;
  z-index: 3;
}

.consult-bubble-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0EB142;
  display: inline-block;
}

/* Bottom Organic Waves */
.consult-bottom-waves {
  position: relative;
  width: 100%;
  height: 80px;
  margin-top: -30px;
  pointer-events: none;
  z-index: 1;
}

.consult-bottom-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive Queries */
@media (max-width: 1100px) {
  .consult-cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .consult-left-col {
    grid-column: span 2;
    flex-direction: row;
    justify-content: center;
  }
  .consult-checklist-card {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .consult-cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .consult-left-col {
    grid-column: span 1;
    flex-direction: column;
  }
  .consult-chips-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .consult-chip {
    width: 100%;
    max-width: 280px;
  }
  .consult-agent-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO TRUST STATS BAR (DESIGN MATCH 100%)
   ═══════════════════════════════════════════════════════════════════ */
.pf-trust-stats-section {
  position: relative;
  background: #ffffff;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid #f1f5f9;
  z-index: 10;
}

.pf-trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pf-stat-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.1rem 1.4rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.pf-stat-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #d1fae5;
  box-shadow: 0 14px 30px -4px rgba(14, 177, 66, 0.12);
}

.pf-stat-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e8f5e8;
  border: 1.5px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14, 177, 66, 0.14);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.pf-stat-item:hover .pf-stat-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: #d4edd6;
  box-shadow: 0 6px 18px rgba(14, 177, 66, 0.22);
}

.pf-stat-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: #0EB142;
}

.pf-stat-content {
  display: flex;
  flex-direction: column;
}

.pf-stat-number {
  font-size: clamp(1.85rem, 2.3vw, 2.25rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: inherit;
}

.pf-stat-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #1B4D2E;
  margin-top: 3px;
  line-height: 1.25;
}

.pf-stat-desc {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .pf-trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .pf-trust-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .pf-stat-item {
    padding: 1rem 1.15rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   SERVICE DETAIL: PREMIUM 3D QUOTE CTA SHOWCASE
   (Match 100% with modern rounded card, 3D laptop & 4 pillars)
   ══════════════════════════════════════════════════════════════ */
.svc-quote-cta-section {
  padding: var(--sp-12) 0 var(--sp-16);
  position: relative;
}

.svc-quote-card {
  background: radial-gradient(circle at 82% 38%, rgba(209, 250, 229, 0.45) 0%, rgba(240, 253, 244, 0.25) 45%, rgba(255, 255, 255, 0) 70%), #ffffff;
  border-radius: 28px;
  border: 1.5px solid #eef7f0;
  box-shadow: 0 20px 50px -10px rgba(14, 177, 66, 0.07), 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: clamp(2.25rem, 4vw, 3.75rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-quote-card:hover {
  box-shadow: 0 24px 60px -10px rgba(14, 177, 66, 0.12), 0 6px 24px rgba(0, 0, 0, 0.04);
}

/* Top Row: Content & Visual */
.svc-quote-main-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.svc-quote-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge Pill */
.svc-quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e8;
  border: 1px solid #d1fae5;
  color: #1B4D2E;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(14, 177, 66, 0.08);
}

.svc-quote-badge svg {
  color: #0EB142;
}

/* Heading */
.svc-quote-title {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
}

.svc-quote-title-hl {
  display: block;
  color: #0EB142;
}

/* Description */
.svc-quote-desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #4b5563;
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 1.75rem 0;
}

/* Big Green Action Button */
.svc-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1B4D2E 0%, #0EB142 100%);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(14, 177, 66, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(14, 177, 66, 0.42);
  color: #ffffff !important;
}

.svc-quote-btn svg {
  stroke: #ffffff;
}

/* Trust Line */
.svc-quote-trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #4b5563;
  margin-top: 1.15rem;
}

.svc-quote-trust-line svg {
  flex-shrink: 0;
}

/* Right Column: 3D Scene Visual */
.svc-quote-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.svc-quote-visual-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.svc-quote-scene-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s ease;
}

.svc-quote-card:hover .svc-quote-scene-img {
  transform: translateY(-4px) scale(1.02);
}

/* Bottom Row: 4 Feature Pillars */
.svc-quote-pillars-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1.5px solid #f1f5f9;
}

.svc-quote-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.svc-pillar-icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #e8f5e8;
  border: 1.5px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0EB142;
  transition: transform 0.3s ease, background 0.3s ease;
}

.svc-quote-pillar-item:hover .svc-pillar-icon-box {
  transform: scale(1.08);
  background: #dcfce7;
}

.svc-pillar-info {
  display: flex;
  flex-direction: column;
}

.svc-pillar-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.svc-pillar-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .svc-quote-main-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .svc-quote-content {
    align-items: center;
  }
  .svc-quote-pillars-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .svc-quote-card {
    padding: 1.75rem 1.25rem;
    border-radius: 22px;
  }
  .svc-quote-pillars-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .svc-quote-btn {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO CATEGORY: 3D QUOTE CTA SHOWCASE
   (อยากได้เว็บไซต์แบบนี้บ้างไหม? 3D Laptop & Responsive Device)
   ══════════════════════════════════════════════════════════════ */
.pf-cat-quote-cta-section {
  padding: var(--sp-8) 0 var(--sp-16);
  position: relative;
}

.pf-cat-quote-card {
  background: radial-gradient(circle at 82% 38%, rgba(209, 250, 229, 0.45) 0%, rgba(240, 253, 244, 0.22) 45%, rgba(255, 255, 255, 0) 70%), #ffffff;
  border-radius: 28px;
  border: 1.5px solid #eef7f0;
  box-shadow: 0 20px 50px -10px rgba(14, 177, 66, 0.08), 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: clamp(2.25rem, 4vw, 3.75rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pf-cat-quote-card:hover {
  box-shadow: 0 24px 60px -10px rgba(14, 177, 66, 0.13), 0 6px 24px rgba(0, 0, 0, 0.04);
}

/* Corner Dot Pattern Decors */
.pf-cat-quote-dots {
  position: absolute;
  pointer-events: none;
  opacity: 0.65;
  z-index: 1;
}

.pf-cat-quote-dots--tr {
  top: 24px;
  right: 28px;
}

.pf-cat-quote-dots--bl {
  bottom: 24px;
  left: 28px;
}

/* 2-Column Grid */
.pf-cat-quote-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  position: relative;
  z-index: 2;
}

.pf-cat-quote-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Heading */
.pf-cat-quote-title {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
}

.pf-cat-title-green {
  display: block;
  color: #1B4D2E;
}

.pf-cat-title-dark {
  display: block;
  color: #111827;
  margin-top: 2px;
}

/* Subtitle */
.pf-cat-quote-desc {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  color: #64748b;
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 1.75rem 0;
}

/* 3 Mini Feature Pills Row */
.pf-cat-quote-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.pf-cat-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fdf9;
  border: 1.5px solid #d1fae5;
  padding: 8px 16px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(14, 177, 66, 0.04);
  transition: transform 0.25s ease, background 0.25s ease;
}

.pf-cat-pill-item:hover {
  transform: translateY(-2px);
  background: #eefbf1;
}

.pf-cat-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8f5e8;
  border: 1px solid #c7f3d6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0EB142;
  flex-shrink: 0;
}

.pf-cat-pill-text {
  display: flex;
  flex-direction: column;
}

.pf-cat-pill-text strong {
  font-size: 0.86rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
}

.pf-cat-pill-text span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.25;
}

/* Green Action Button */
.pf-cat-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #2d7a4d 0%, #15803d 40%, #0EB142 100%);
  color: #ffffff !important;
  padding: 15px 32px;
  border-radius: 14px;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(14, 177, 66, 0.32);
  width: fit-content;
  min-width: 270px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-cat-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(14, 177, 66, 0.44);
  color: #ffffff !important;
}

.pf-cat-btn-arrow {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.pf-cat-quote-btn:hover .pf-cat-btn-arrow {
  transform: translateX(4px);
}

/* Trust Line */
.pf-cat-quote-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #4b5563;
  margin-top: 1.15rem;
}

.pf-cat-quote-trust svg {
  flex-shrink: 0;
}

/* Right Column: 3D Scene Visual */
.pf-cat-quote-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pf-cat-quote-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pf-cat-quote-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s ease;
}

.pf-cat-quote-card:hover .pf-cat-quote-img {
  transform: translateY(-4px) scale(1.02);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .pf-cat-quote-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .pf-cat-quote-content {
    align-items: center;
  }
  .pf-cat-quote-pills {
    justify-content: center;
  }
  .pf-cat-quote-btn {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 640px) {
  .pf-cat-quote-card {
    padding: 1.75rem 1.25rem;
    border-radius: 22px;
  }
  .pf-cat-quote-pills {
    flex-direction: column;
    width: 100%;
  }
  .pf-cat-pill-item {
    width: 100%;
  }
  .pf-cat-quote-btn {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   PRO SERVICES SUITE (.svc-pro-*)
   Corporate Website, Web App/ERP, and E-Commerce High-Converting Pages
   ══════════════════════════════════════════════════════════════════════ */
.svc-pro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0 3.5rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ─── 1. Hero Showcase ─── */
.svc-pro-hero {
  background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0.98) 60%), #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.06);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

body.dark .svc-pro-hero {
  background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.12) 0%, rgba(15, 23, 42, 0.95) 70%), #0f172a;
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.svc-pro-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.svc-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.28);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

body.dark .svc-pro-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.4);
}

.svc-pro-title {
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.28;
  color: var(--txt-main, #0f172a);
  margin-bottom: 1.25rem;
}

body.dark .svc-pro-title {
  color: #f8fafc;
}

.svc-highlight-green {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-pro-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--txt-dim, #475569);
  margin-bottom: 1.75rem;
}

body.dark .svc-pro-desc {
  color: #94a3b8;
}

.svc-pro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.svc-pro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f1fdf5;
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #065f46;
  padding: 0.4rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
}

body.dark .svc-pro-pill {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.svc-pro-pill i {
  color: #10b981;
  font-size: 0.95rem;
}

.svc-pro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.svc-pro-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.85rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-pro-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.45);
  color: #ffffff !important;
}

.svc-pro-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--txt-main, #0f172a) !important;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.82rem 1.5rem;
  border-radius: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

body.dark .svc-pro-btn-outline {
  color: #f1f5f9 !important;
  border-color: rgba(16, 185, 129, 0.45);
}

.svc-pro-btn-outline:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: #10b981;
}

/* Visual Right */
.svc-pro-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.svc-pro-visual-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 1.75rem;
  padding: 1.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

body.dark .svc-pro-visual-card {
  background: #1e293b;
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.svc-pro-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
}

/* Floating Badges */
.svc-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.65rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: svcFloat 4s ease-in-out infinite;
}

body.dark .svc-float-badge {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.svc-float-badge--top-right {
  top: -15px;
  right: -15px;
  animation-delay: 0s;
}

.svc-float-badge--bottom-left {
  bottom: -15px;
  left: -15px;
  animation-delay: 2s;
}

@keyframes svcFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.svc-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

body.dark .svc-float-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.svc-float-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--txt-main, #0f172a);
  font-weight: 800;
  line-height: 1.2;
}

body.dark .svc-float-text strong {
  color: #f8fafc;
}

.svc-float-text span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

/* ─── 2. Section Headers ─── */
.svc-pro-sec-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.svc-pro-sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.dark .svc-pro-sec-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.svc-pro-sec-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--txt-main, #0f172a);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

body.dark .svc-pro-sec-title {
  color: #f8fafc;
}

.svc-pro-sec-sub {
  font-size: 1rem;
  color: var(--txt-dim, #64748b);
  line-height: 1.65;
}

body.dark .svc-pro-sec-sub {
  color: #94a3b8;
}

/* ─── 3. Comparison Cards (Bad vs Good) ─── */
.svc-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.svc-vs-card {
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  box-sizing: border-box;
}

.svc-vs-card--bad {
  background: #fff5f5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

body.dark .svc-vs-card--bad {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.25);
}

.svc-vs-card--good {
  background: #f0fdf4;
  border: 2px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
}

body.dark .svc-vs-card--good {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.svc-vs-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.svc-vs-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.svc-vs-card--bad .svc-vs-icon {
  background: #fee2e2;
  color: #dc2626;
}

.svc-vs-card--good .svc-vs-icon {
  background: #dcfce7;
  color: #16a34a;
}

.svc-vs-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

.svc-vs-card--bad .svc-vs-title { color: #991b1b; }
.svc-vs-card--good .svc-vs-title { color: #166534; }
body.dark .svc-vs-card--bad .svc-vs-title { color: #fca5a5; }
body.dark .svc-vs-card--good .svc-vs-title { color: #86efac; }

.svc-vs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-vs-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--txt-main, #1e293b);
}

body.dark .svc-vs-item {
  color: #cbd5e1;
}

.svc-vs-item i {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.svc-vs-card--bad .svc-vs-item i { color: #ef4444; }
.svc-vs-card--good .svc-vs-item i { color: #10b981; }

/* ─── 4. Features Grid (3 Columns) ─── */
.svc-pro-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.svc-pro-card {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

body.dark .svc-pro-card {
  background: #1e293b;
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.svc-pro-card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  box-shadow: 0 16px 35px rgba(16, 185, 129, 0.12);
}

.svc-pro-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: transform 0.3s ease;
}

body.dark .svc-pro-icon-box {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.svc-pro-card:hover .svc-pro-icon-box {
  transform: scale(1.1);
}

.svc-pro-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--txt-main, #0f172a);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

body.dark .svc-pro-card-title {
  color: #f8fafc;
}

.svc-pro-card-desc {
  font-size: 0.92rem;
  color: var(--txt-dim, #64748b);
  line-height: 1.65;
  margin: 0;
}

body.dark .svc-pro-card-desc {
  color: #94a3b8;
}

/* ─── 5. Packages & Pricing ─── */
.svc-pkg-card {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark .svc-pkg-card {
  background: #1e293b;
  border-color: rgba(16, 185, 129, 0.25);
}

.svc-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.14);
}

.svc-pkg-card--popular {
  border: 2.5px solid #10b981;
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.4) 0%, #ffffff 40%);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
}

body.dark .svc-pkg-card--popular {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, #1e293b 40%);
  border-color: #34d399;
}

.svc-pkg-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  padding: 0.3rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.svc-pkg-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--txt-main, #0f172a);
  margin-bottom: 0.5rem;
}

body.dark .svc-pkg-name {
  color: #f8fafc;
}

.svc-pkg-desc {
  font-size: 0.88rem;
  color: var(--txt-dim, #64748b);
  margin-bottom: 1.5rem;
  min-height: 42px;
}

body.dark .svc-pkg-desc {
  color: #94a3b8;
}

.svc-pkg-price-box {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(16, 185, 129, 0.2);
}

.svc-pkg-price-prefix {
  font-size: 0.85rem;
  color: var(--txt-dim, #64748b);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.svc-pkg-price-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: #059669;
  line-height: 1;
}

body.dark .svc-pkg-price-num {
  color: #34d399;
}

.svc-pkg-price-suffix {
  font-size: 0.9rem;
  color: var(--txt-dim, #64748b);
  font-weight: 600;
  margin-left: 0.35rem;
}

.svc-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.svc-pkg-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--txt-main, #334155);
}

body.dark .svc-pkg-feature-item {
  color: #cbd5e1;
}

.svc-pkg-feature-item i {
  color: #10b981;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.svc-pkg-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 0.85rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.svc-pkg-card--popular .svc-pkg-btn {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.svc-pkg-card--popular .svc-pkg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}

.svc-pkg-card:not(.svc-pkg-card--popular) .svc-pkg-btn {
  background: rgba(16, 185, 129, 0.08);
  color: #059669 !important;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

body.dark .svc-pkg-card:not(.svc-pkg-card--popular) .svc-pkg-btn {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7 !important;
  border-color: rgba(16, 185, 129, 0.35);
}

.svc-pkg-card:not(.svc-pkg-card--popular) .svc-pkg-btn:hover {
  background: #10b981;
  color: #ffffff !important;
}

/* ─── 6. Workflow Process (4 Steps) ─── */
.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.svc-process-card {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

body.dark .svc-process-card {
  background: #1e293b;
  border-color: rgba(16, 185, 129, 0.2);
}

.svc-process-card:hover {
  transform: translateY(-4px);
  border-color: #10b981;
}

.svc-process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.svc-process-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--txt-main, #0f172a);
  margin-bottom: 0.5rem;
}

body.dark .svc-process-title {
  color: #f8fafc;
}

.svc-process-desc {
  font-size: 0.88rem;
  color: var(--txt-dim, #64748b);
  line-height: 1.6;
  margin: 0;
}

body.dark .svc-process-desc {
  color: #94a3b8;
}

/* ─── 7. FAQ Accordion ─── */
.svc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.svc-faq-item {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body.dark .svc-faq-item {
  background: #1e293b;
  border-color: rgba(16, 185, 129, 0.2);
}

.svc-faq-item:hover {
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08);
}

.svc-faq-q {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--txt-main, #0f172a);
  margin-bottom: 0.65rem;
}

body.dark .svc-faq-q {
  color: #f8fafc;
}

.svc-faq-q i {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.svc-faq-a {
  font-size: 0.95rem;
  color: var(--txt-dim, #64748b);
  line-height: 1.7;
  padding-left: 2.1rem;
  margin: 0;
}

body.dark .svc-faq-a {
  color: #94a3b8;
}

/* ─── 8. Payment Gateways Showcase (E-Commerce) ─── */
.svc-gateway-strip {
  background: #f8fafc;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

body.dark .svc-gateway-strip {
  background: #1e293b;
}

.svc-gateway-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}

.svc-gateway-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.55rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--txt-main, #1e293b);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

body.dark .svc-gateway-badge {
  background: #0f172a;
  border-color: rgba(16, 185, 129, 0.35);
  color: #f1f5f9;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .svc-pro-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-pro-title {
    font-size: 1.95rem;
  }
  .svc-vs-grid {
    grid-template-columns: 1fr;
  }
  .svc-pro-grid-3 {
    grid-template-columns: 1fr;
  }
  .svc-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .svc-pro-hero {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }
  .svc-pro-title {
    font-size: 1.6rem;
  }
  .svc-process-grid {
    grid-template-columns: 1fr;
  }
  .svc-pro-actions {
    flex-direction: column;
    width: 100%;
  }
  .svc-pro-btn-main, .svc-pro-btn-outline {
    width: 100%;
  }
  .svc-float-badge {
    display: none;
  }
}