/* ==========================================================================
   ATV MEDIA - SERVICES PAGE DEDICATED STYLESHEET (services.css)
   Tuân thủ quy tắc GEMINI.md: 100% Semantic CSS, Tương phản cao Sáng & Tối,
   Đồng bộ Typography (Montserrat & Roboto) và Phong cách mỹ thuật cao cấp.
   ========================================================================== */

/* 1. Theme Variables for Services Page */
:root {
  --services-card-bg: rgba(255, 255, 255, 0.94);
  --services-card-border: rgba(0, 104, 55, 0.14);
  --services-card-border-hover: rgba(57, 181, 74, 0.5);
  --services-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --services-card-shadow-hover: 0 16px 36px rgba(57, 181, 74, 0.16);
  --services-text-heading: #0f172a;
  --services-text-body: #334155;
  --services-text-muted: #64748b;
  --services-alt-bg: #f8faf9;
  --services-cta-bg: #ffffff;
  --services-cta-border: rgba(0, 0, 0, 0.09);
  --services-cta-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] {
  --services-card-bg: rgba(24, 29, 25, 0.94);
  --services-card-border: rgba(57, 181, 74, 0.2);
  --services-card-border-hover: rgba(74, 222, 128, 0.55);
  --services-card-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
  --services-card-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(57, 181, 74, 0.25);
  --services-text-heading: #f8fafc;
  --services-text-body: #cbd5e1;
  --services-text-muted: #94a3b8;
  --services-alt-bg: #101311;
  --services-cta-bg: #121613;
  --services-cta-border: rgba(255, 255, 255, 0.08);
  --services-cta-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Base Page Typography & Antialiasing */
.services-page-wrap {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 40px;
  font-family: var(--font-body, "Roboto", sans-serif);
  font-synthesis: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   2. HERO SECTION (Full-Viewport Desktop Experience with Balanced Vertical Rhythm)
   ========================================================================== */
.services-hero-section {
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 0 24px;
  position: relative;
  box-sizing: border-box;
}

/* Background Ambient Lighting fills empty voids naturally */
.services-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(57, 181, 74, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.services-hero-section::after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at center, rgba(0, 104, 55, 0.05) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

html[data-theme="dark"] .services-hero-section::before {
  background: radial-gradient(circle at center, rgba(57, 181, 74, 0.12) 0%, transparent 68%);
}

html[data-theme="dark"] .services-hero-section::after {
  background: radial-gradient(circle at center, rgba(74, 222, 128, 0.08) 0%, transparent 68%);
}

.services-hero-section > .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .services-hero-section {
    min-height: auto;
    padding: 30px 0 40px;
  }
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 46px;
  align-items: center;
  width: 100%;
  margin: auto 0;
  padding: 10px 0 20px;
}

@media (max-width: 991.98px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin: 0;
  }
}

/* Hero Left Column */
.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(57, 181, 74, 0.12);
  border: 1px solid rgba(57, 181, 74, 0.28);
  margin-bottom: 16px;
}

.services-hero-badge-icon {
  color: var(--atv-primary);
  flex-shrink: 0;
}

.services-hero-badge-text {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--atv-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.services-hero-title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--services-text-heading);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.services-hero-title-accent {
  background: linear-gradient(135deg, #39b54a 0%, #006837 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

html[data-theme="dark"] .services-hero-title-accent {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero-desc {
  font-family: var(--font-body, "Roboto", sans-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--services-text-muted);
  margin-bottom: 20px;
  max-width: 620px;
}

/* Core Strength Pills (Lấp đầy thân giữa) */
.services-hero-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.services-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(57, 181, 74, 0.08);
  border: 1px solid rgba(57, 181, 74, 0.22);
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--services-text-heading);
  transition: all 0.2s ease;
}

.services-hero-pill:hover {
  background: rgba(57, 181, 74, 0.15);
  border-color: var(--atv-primary);
}

.services-pill-icon {
  color: var(--atv-primary);
  flex-shrink: 0;
}

.services-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.services-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  background: var(--atv-primary);
  color: #ffffff !important;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(57, 181, 74, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.services-btn-primary:hover {
  background: var(--atv-primary-dark, #2da13e);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(57, 181, 74, 0.45);
}

.services-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  background: transparent;
  color: var(--services-text-heading) !important;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(57, 181, 74, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-btn-outline:hover {
  background: rgba(57, 181, 74, 0.08);
  border-color: var(--atv-primary);
  color: var(--atv-primary) !important;
  transform: translateY(-2px);
}

/* Hero Right: Full-Bleed Image with Left-Fade Mask (Synced with Roadmap Step Visual) */
.services-hero-visual-wrap {
  position: relative;
  width: 100%;
}

.services-hero-visual {
  position: relative;
  width: 100%;
  height: clamp(340px, 52vh, 480px);
  overflow: hidden;
  border-radius: 24px;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
  /* Cinematic mask: Smoothly fade out to transparent on the left edge */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 8%, rgba(0, 0, 0, 0.8) 28%, #000 50%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 8%, rgba(0, 0, 0, 0.8) 28%, #000 50%);
}

.services-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-hero-visual:hover img {
  transform: scale(1.05);
}

/* Caption bar inside the faded hero image */
.services-hero-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 12, 0.65) 30%, rgba(10, 15, 12, 0.92) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.services-hero-caption-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.services-hero-caption-tag {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.services-hero-caption-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--atv-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-hero-caption-title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* Hero Bottom Credibility Dock (Bố cục chuẩn chỉ, cân đối và thanh lịch) */
.services-hero-dock-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  position: relative;
  z-index: 2;
}

.services-hero-dock {
  width: 100%;
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 20px;
  background: var(--services-card-bg);
  border: 1px solid var(--services-card-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-sizing: border-box;
}

html[data-theme="dark"] .services-hero-dock {
  background: rgba(22, 27, 23, 0.94);
  border-color: rgba(57, 181, 74, 0.24);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.services-dock-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  padding: 4px 6px;
}

.services-dock-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(57, 181, 74, 0.1);
  border: 1px solid rgba(57, 181, 74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--atv-primary);
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.services-dock-item:hover .services-dock-icon-box {
  transform: scale(1.08);
  background: var(--atv-primary);
  color: #ffffff;
}

.services-dock-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.services-dock-val {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--services-text-heading);
  line-height: 1.25;
  white-space: nowrap;
}

.services-dock-label {
  font-family: var(--font-body, "Roboto", sans-serif);
  font-size: 0.74rem;
  color: var(--services-text-muted);
  line-height: 1.35;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services-dock-divider {
  width: 1px;
  height: 34px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  margin: 0 8px;
}

html[data-theme="dark"] .services-dock-divider {
  background: rgba(255, 255, 255, 0.1);
}

/* Tablet & Mobile Responsive */
@media (max-width: 991.98px) {
  .services-hero-dock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 16px 18px;
    max-width: 620px;
  }
  .services-dock-divider {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .services-hero-dock {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }
}

/* Bottom Center Scroll Down Hint Button */
.services-scroll-down-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px auto 0;
  padding: 5px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--services-text-muted);
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  border: 1px solid rgba(57, 181, 74, 0.22);
}

.services-scroll-down-btn:hover {
  color: var(--atv-primary);
  border-color: var(--atv-primary);
  background: rgba(57, 181, 74, 0.08);
  transform: translateY(2px);
}

.services-scroll-icon {
  animation: services-bounce 2s infinite ease-in-out;
}

@keyframes services-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ==========================================================================
   3. SERVICES DETAILED CARDS GRID SECTION
   ========================================================================== */
.services-grid-section {
  padding: 72px 0 80px;
  background: var(--services-alt-bg);
  position: relative;
}

.services-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.services-subpage-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(57, 181, 74, 0.12);
  color: var(--atv-primary);
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-section-title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--services-text-heading);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.services-section-subtitle {
  font-family: var(--font-body, "Roboto", sans-serif);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--services-text-muted);
  margin: 0;
}

/* 3-Column Services Responsive Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

@media (max-width: 640px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Service Card Container */
.services-card-item {
  background: var(--services-card-bg);
  border: 1px solid var(--services-card-border);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
  box-shadow: var(--services-card-shadow);
  overflow: hidden;
}

.services-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--services-card-border-hover);
  box-shadow: var(--services-card-shadow-hover);
}

/* Card Top Row: Icon + Badge */
.services-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.services-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(57, 181, 74, 0.16) 0%, rgba(0, 104, 55, 0.08) 100%);
  border: 1px solid rgba(57, 181, 74, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--atv-primary);
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.services-card-item:hover .services-card-icon-box {
  transform: scale(1.08);
  background: var(--atv-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(57, 181, 74, 0.4);
}

.services-card-badge {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--atv-primary);
  background: rgba(57, 181, 74, 0.1);
  border: 1px solid rgba(57, 181, 74, 0.24);
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.2px;
}

/* Card Body Content */
.services-card-title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--services-text-heading);
  margin-bottom: 10px;
}

.services-card-desc {
  font-family: var(--font-body, "Roboto", sans-serif);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--services-text-muted);
  margin-bottom: 18px;
  min-height: 44px;
}

/* Checklist of Deliverables */
.services-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.services-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body, "Roboto", sans-serif);
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--services-text-body);
}

.services-feature-icon {
  color: var(--atv-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card Bottom: Price & Button CTA */
.services-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: auto;
}

html[data-theme="dark"] .services-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.services-price-col {
  display: flex;
  flex-direction: column;
}

.services-price-caption {
  font-family: var(--font-body, "Roboto", sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--services-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.services-price-val {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--atv-primary);
  letter-spacing: -0.01em;
}

.services-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--atv-primary);
  color: #ffffff !important;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
}

.services-card-btn:hover {
  background: var(--atv-primary-dark, #2da13e);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(57, 181, 74, 0.4);
}

/* ==========================================================================
   4. CALL TO ACTION COMBO BANNER (Synced with Roadmap Final CTA Card Style)
   ========================================================================== */
.services-cta-section {
  padding: 60px 0 30px;
}

.services-final-cta-card {
  padding: 56px 40px 42px;
  border-radius: 24px;
  text-align: center;
  background: var(--services-cta-bg);
  border: 1px solid var(--services-cta-border);
  box-shadow: var(--services-cta-shadow);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.services-final-cta-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 50% 30%, rgba(57, 181, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.services-final-cta-card > * {
  position: relative;
  z-index: 1;
}

.services-cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .services-cta-tagline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.services-cta-tagline-icon {
  color: var(--atv-primary);
  flex-shrink: 0;
  animation: pulse-rocket 2.4s infinite ease-in-out;
}

@keyframes pulse-rocket {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.services-cta-tagline-text {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  color: var(--services-text-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-cta-heading {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  color: var(--services-text-heading);
  margin-bottom: 18px;
  line-height: 1.25;
}

.services-cta-highlight {
  color: var(--atv-primary);
  position: relative;
}

.services-cta-desc {
  font-family: var(--font-body, "Roboto", sans-serif);
  font-size: 1.02rem;
  color: var(--services-text-muted);
  line-height: 1.65;
  max-width: 660px;
  margin: 0 auto 28px;
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.services-cta-btn {
  padding: 13px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-cta-btn-primary {
  background: var(--atv-primary);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 8px 20px rgba(57, 181, 74, 0.35);
}

.services-cta-btn-primary:hover {
  background: var(--atv-primary-dark, #2da13e);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(57, 181, 74, 0.45);
}

.services-cta-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(57, 181, 74, 0.4);
  color: var(--services-text-heading) !important;
}

html[data-theme="dark"] .services-cta-btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
}

.services-cta-btn-outline:hover {
  background: rgba(57, 181, 74, 0.08);
  border-color: var(--atv-primary);
  color: var(--atv-primary) !important;
  transform: translateY(-2px);
}

.services-cta-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .services-cta-trust-bar {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.services-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--services-text-muted);
}

.services-trust-icon {
  color: var(--atv-primary);
  flex-shrink: 0;
}
