@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==================== GLOBAL STYLES ==================== */
h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading,
.wp-block-image figcaption,
.wp-block-button__link,
.devtink-nav-menu a {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}

body,
p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Optimasi Spacer bawaan WordPress agar tidak terjadi double-spacing */
.wp-block-spacer {
  height: 24px !important;
  /* Batasi maksimal tinggi spacer agar spacing lebih rapat & rapi */
}

/* Hapus semua jarak kosong / padding / margin teratas agar Hero langsung menempel dengan Header */
.entry-content:has(.devtink-hero-section),
.wp-block-post-content:has(.devtink-hero-section),
.site-content:has(.devtink-hero-section),
.site-main:has(.devtink-hero-section),
.wp-site-blocks:has(.devtink-hero-section),
main:has(.devtink-hero-section),
.is-root-container:has(.devtink-hero-section) {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ==================== CUSTOM HEADER STYLES ==================== */
.devtink-header-wrapper {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.02) !important;
  transition: all 0.3s ease !important;
  padding: 0 80px !important;
  /* Samakan dengan padding horizontal footer di desktop (80px) */
}

.devtink-header-content {
  height: 92px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  padding: 0 !important;
}

@media (min-width: 1024px) {
  .devtink-nav-menu {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  /* Paksakan container list di dalamnya juga horizontal */
  .devtink-nav-menu .wp-block-navigation__container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 32px !important;
  }

  /* Sembunyikan tombol CTA navigasi mobile di desktop */
  .devtink-nav-menu .menu-cta-item,
  .devtink-nav-menu .menu-wa-prefilled {
    display: none !important;
  }
}

/* Logo Styling */
.devtink-header-wrapper .wp-block-site-logo img {
  height: 76px !important;
  width: auto !important;
  max-height: 76px !important;
}

/* Navigation Link Styling (Desktop) */
.devtink-nav-menu a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
  position: relative !important;
  padding: 8px 0 !important;
}

.devtink-nav-menu a:hover {
  color: #9b51e0 !important;
}

/* Indikator Menu Aktif */
.devtink-nav-menu .current-menu-item>a::after,
.devtink-nav-menu .current-menu-ancestor>a::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background-color: #9b51e0 !important;
  border-radius: 9999px !important;
}

/* CTA Button General (Desktop & Mobile) */
.devtink-cta-btn a {
  color: #ffffff !important;
  font-size: 13px !important;
  transition: opacity 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(155, 81, 224, 0.12) !important;
  border-radius: 9999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

/* Jika TIDAK ada SVG inline, beri padding kiri lebih tebal untuk background-image icon */
.devtink-cta-btn a:not(:has(svg)) {
  padding: 10px 20px 10px 42px !important;
}

.devtink-cta-btn a:not(:has(svg))::before {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 16px !important;
  height: 16px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9'/%3E%3Cpath d='M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

/* Jika ada SVG inline, gunakan padding simetris dan nonaktifkan pseudo-element ::before */
.devtink-cta-btn a:has(svg) {
  padding: 10px 24px !important;
  gap: 8px !important;
}

.devtink-cta-btn a:has(svg)::before {
  display: none !important;
  content: none !important;
}

.devtink-cta-btn a:hover {
  opacity: 0.9 !important;
}

/* ==================== HERO SECTION STYLING ==================== */
/* Target the outer group wrapper of Hero */
.devtink-hero-section {
  position: relative !important;
  overflow: hidden !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 80px 32px 32px 32px !important;
  display: flex !important;
  align-items: center !important;
  min-height: 680px !important;
  box-sizing: border-box !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: 100vw !important;
}

.devtink-hero-section .wp-block-cover__background {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.10) 0%, rgba(15, 23, 42, 0.25) 50%, rgba(0, 0, 0, 0.65) 80%, rgba(0, 0, 0, 0.85) 100%) !important;
  opacity: 1 !important;
}

.devtink-hero-section .wp-block-cover__inner-container {
  width: 100% !important;
  padding: 0 !important;
  z-index: 1 !important;
}
 
@media (min-width: 768px) {
  .devtink-hero-section {
    padding: 100px 40px 40px 40px !important; /* Tablet: Reduced bottom padding to 40px */
    min-height: 800px !important;
    /* Ditingkatkan lagi */
  }
}
 
@media (min-width: 1024px) {
  .devtink-hero-section {
    padding: 120px 100px 48px 100px !important; /* Desktop: Reduced bottom padding to 48px */
    min-height: 900px !important;
    /* Ditingkatkan lagi */
  }
}

/* Paksakan container isi Hero melebar penuh di dalam area padding untuk menyelaraskan dengan header */
.devtink-hero-section>.wp-block-group {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Container Teks Hero */
.devtink-hero-content-inner {
  max-width: 680px !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.devtink-hero-content-inner h2.wp-block-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  font-size: 32px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
  /* High contrast shadows */
}

@media (min-width: 768px) {
  .devtink-hero-content-inner h2.wp-block-heading {
    font-size: 48px !important;
  }
}

@media (min-width: 1024px) {
  .devtink-hero-content-inner h2.wp-block-heading {
    font-size: 58px !important;
  }
}

/* Badge kustom di atas judul Hero */
.devtink-hero-content-inner h2.wp-block-heading::before {
  content: "Privacy-First Automation" !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 9999px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 8.71l-5.333-4.148a2.666 2.666 0 0 0-3.334 0L5 8.71a2.666 2.666 0 0 0-1 2.083v8.506a1 1 0 0 0 1 1h15a1 1 0 0 0 1-1v-8.506a2.666 2.666 0 0 0-1-2.083z'/%3E%3Cpath d='M12 12a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z'/%3E%3Cpath d='M12 9v2'/%3E%3Cpath d='M9 12h2'/%3E%3Cpath d='M13 12h2'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
  background-size: 16px 16px !important;
  padding: 6px 12px 6px 36px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.devtink-hero-content-inner p {
  font-size: 14px !important;
  line-height: 1.625 !important;
  color: #ffffff !important;
  /* Made text pure white (#ffffff instead of slate-300) for ultimate contrast */
  margin-bottom: 32px !important;
  max-width: 580px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
  /* High contrast shadows */
}

@media (min-width: 768px) {
  .devtink-hero-content-inner p {
    font-size: 16px !important;
  }
}

/* Wrapper Button Hero */
.devtink-hero-buttons-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  justify-content: flex-start !important;
  align-items: center;
}

/* Button Kapsul Primary (WhatsApp) */
.devtink-hero-primary-btn .wp-block-button__link {
  border-radius: 9999px !important;
  background: #9b51e0 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 12px 24px !important;
  /* Symmetrical padding */
  border: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  /* Spacing between icon and text */
}

.devtink-hero-primary-btn .wp-block-button__link::before {
  content: "" !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9'/%3E%3Cpath d='M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  flex-shrink: 0 !important;
}

@media (min-width: 768px) {
  .devtink-hero-primary-btn .wp-block-button__link {
    font-size: 14px !important;
    padding: 16px 36px !important;
    gap: 10px !important;
  }

  .devtink-hero-primary-btn .wp-block-button__link::before {
    width: 20px !important;
    height: 20px !important;
  }
}

.devtink-hero-primary-btn .wp-block-button__link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(155, 81, 224, 0.4) !important;
  opacity: 0.95 !important;
}

/* Button Kapsul Secondary (Outline - View Our Work) */
.devtink-hero-secondary-btn .wp-block-button__link {
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  /* Frosted glass background */
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 12px 24px !important;
  border: none !important;
  /* Tanpa border */
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (min-width: 768px) {
  .devtink-hero-secondary-btn .wp-block-button__link {
    font-size: 14px !important;
    padding: 14px 32px !important;
  }
}

.devtink-hero-secondary-btn .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  /* Slightly brighter frosted glass on hover */
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 480px) {
  .devtink-hero-buttons-wrapper {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .devtink-hero-buttons-wrapper .wp-block-button {
    flex: 1 !important;
    margin: 0 !important;
    width: auto !important;
  }

  .devtink-hero-buttons-wrapper .wp-block-button__link {
    width: 100% !important;
    justify-content: center !important;
    font-size: 11px !important;
    padding: 12px 6px !important;
    /* Symmetrical padding since icon is pseudo-element */
    white-space: nowrap !important;
  }

  .devtink-hero-primary-btn .wp-block-button__link {
    gap: 6px !important;
  }

  .devtink-hero-primary-btn .wp-block-button__link::before {
    width: 14px !important;
    height: 14px !important;
  }

  .devtink-hero-secondary-btn .wp-block-button__link {}
}

/* ==================== STATS CONTAINER OVERLAY STYLING ==================== */
.devtink-stats-container {
  width: 100% !important;
  max-width: none !important;
  margin: 80px auto 0 auto !important; /* Proper top margin on mobile */
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important; /* Forces all cards on one horizontal row on mobile */
  gap: 6px !important; /* Very narrow gap for mobile */
  justify-content: center !important; /* Centered */
  box-sizing: border-box !important;
}

.devtink-stat-card {
  position: relative !important;
  background: transparent !important; /* Transparent wrapper to keep text fully sharp */
  border-radius: 12px !important; /* Rounded corners */
  flex: 1 1 0% !important; /* Shrink and grow equally on mobile */
  min-width: 0 !important;
  max-width: 76px !important; /* Highly compact mobile width */
  aspect-ratio: 1 / 1 !important;
  padding: 8px 4px !important; /* Compact padding to prevent text overflow */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  border: none !important; /* Tanpa border */
  box-shadow: none !important; /* Tanpa shadow */
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
  z-index: 1 !important;
}

/* Premium Fading Glass Background using pseudo-element */
.devtink-stat-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  z-index: -1 !important;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%) !important;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%) !important;
  transition: all 0.3s ease !important;
}

.devtink-stat-card:hover {
  transform: translateY(-2px) !important;
}
.devtink-stat-card:hover::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%) !important;
}

/* Stat Number - Bolder White Typography */
.devtink-stat-number {
  font-size: 15px !important; /* Highly compact number on mobile to prevent overflow */
  font-weight: 600 !important; /* Bolder weight */
  line-height: 1.1 !important;
  color: #ffffff !important; /* Pure white text */
  margin: 0 0 4px 0 !important; /* Increased spacing slightly for mobile */
  letter-spacing: -0.01em !important;
}

/* Stat Label - Clean White Typography */
.devtink-stat-label {
  font-size: 8px !important; /* Highly compact label text */
  font-weight: 500 !important; /* Bolder hierarchy weight */
  color: rgba(255, 255, 255, 0.85) !important; /* Bright white with high opacity */
  margin: 0 !important;
  text-transform: none !important; /* Tidak uppercase */
  letter-spacing: normal !important;
  line-height: 1.15 !important;
}

@media (min-width: 768px) {
  .devtink-stats-container {
    gap: 16px !important;
    margin-top: 100px !important; /* Proper top margin on tablet */
  }
  .devtink-stat-card {
    flex: none !important; /* Fixed sizing on desktop/tablet */
    width: 130px !important; /* Increased from 110px */
    height: 130px !important; /* Increased from 110px */
    max-width: none !important;
    padding: 18px 10px !important;
  }
  .devtink-stat-number {
    font-size: 28px !important; /* Larger numbers */
    margin-bottom: 8px !important; /* Proper spacing on tablet */
  }
  .devtink-stat-label {
    font-size: 12px !important; /* Slightly larger label */
    white-space: nowrap !important; /* Prevent text wrapping to next line */
  }
}

@media (min-width: 1024px) {
  .devtink-stats-container {
    gap: 24px !important; /* More spacious gap on desktop */
    margin-top: 120px !important; /* Proper top margin on desktop */
  }
  .devtink-stat-card {
    width: 160px !important; /* Increased from 120px */
    height: 160px !important; /* Increased from 120px */
    padding: 28px 12px !important;
  }
  .devtink-stat-number {
    font-size: 36px !important; /* Larger numbers */
    margin-bottom: 12px !important; /* Proper spacing on desktop */
  }
  .devtink-stat-label {
    font-size: 14px !important; /* Larger labels */
    white-space: nowrap !important; /* Prevent text wrapping to next line */
  }
}

/* ==================== REAL SOLUTIONS STYLING ==================== */
.devtink-solutions-section {
  position: relative !important;
  margin-top: 0 !important; /* Eliminate spacing between this and the section above */
  margin-bottom: 0 !important;
  padding: 40px 20px !important;
  /* Starts with deep slate #0b1329 to match section above, and fades gradually to white */
  background: linear-gradient(to bottom, #0b1329 0%, #141c2d 10%, #222d42 20%, #3a4a63 30%, #60738e 38%, #9bb0cb 44%, #dae5f2 48%, #f3f7fd 51%, #ffffff 53%, #ffffff 100%) !important;
  box-sizing: border-box !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: 100vw !important;
}

@media (min-width: 768px) {
  .devtink-solutions-section {
    padding: 60px 20px 80px 20px !important; /* Increased padding-bottom to allow smooth gradient stretch */
  }
}

.devtink-solutions-section h2.wp-block-heading {
  margin-bottom: 12px !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #ffffff !important; /* White text on dark gradient background */
  text-align: center !important;
  letter-spacing: -0.025em !important;
}

@media (min-width: 768px) {
  .devtink-solutions-section h2.wp-block-heading {
    font-size: 30px !important;
  }
}

/* Subheading text on dark gradient background */
.devtink-solutions-section p.has-contrast-3-color,
.devtink-solutions-section p:not(.devtink-solutions-grid p) {
  color: #cbd5e1 !important; /* Light text for readability */
}

/* Grid pembungkus bento card */
.devtink-solutions-grid {
  max-width: 900px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
}

@media (min-width: 768px) {
  .devtink-solutions-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    max-width: 1140px !important; /* Increased grid max-width for larger desktop cards */
  }
}

/* Gaya Bento Card (TANPA SHADOW & BORDER, DENGAN PREMIUM FADE BOTTOM) */
.devtink-solutions-grid>.wp-block-column {
  border-radius: 24px !important;
  overflow: hidden !important;
  background: linear-gradient(to bottom, #cbd5e1 0%, rgba(255, 255, 255, 0) 100%) !important;
  box-shadow: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  max-width: 440px !important;
  width: 100% !important;
  margin: 0 auto !important;
  transition: none !important;
  transform: none !important;
  position: relative !important;
}

@media (min-width: 768px) {
  .devtink-solutions-grid>.wp-block-column {
    max-width: 550px !important; /* Increased column max-width for larger desktop cards */
  }
}

/* Reset hover state card */
.devtink-solutions-grid>.wp-block-column:hover {
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Urutan Slideshow paling atas & Cover Full atau Image */
.devtink-solutions-grid .wp-block-jetpack-slideshow,
.devtink-solutions-grid .wp-block-image {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 24px 24px 0 0 !important;
  background: transparent !important;
}

.devtink-solutions-grid .wp-block-jetpack-slideshow_container {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: visible !important;
  background: transparent !important;
}

.devtink-solutions-grid .wp-block-jetpack-slideshow_swiper-wrapper {
  height: auto !important;
  border-radius: 24px 24px 0 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

.devtink-solutions-grid .swiper-slide {
  height: auto !important;
  background: transparent !important;
}

.devtink-solutions-grid .wp-block-jetpack-slideshow_slide figure,
.devtink-solutions-grid .wp-block-image figure {
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
  background: transparent !important;
}

.devtink-solutions-grid .wp-block-jetpack-slideshow img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 24px 24px 0 0 !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.devtink-solutions-grid .wp-block-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 24px 24px 0 0 !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.devtink-solutions-grid .wp-block-image:hover img {
  transform: scale(1.05) !important;
}

/* Judul & Deskripsi di dalam Bento Card */
.devtink-solutions-grid h3.wp-block-heading {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 24px 24px 8px 24px !important;
  text-align: left !important;
}

@media (min-width: 768px) {
  .devtink-solutions-grid h3.wp-block-heading {
    font-size: 20px !important;
  }
}

.devtink-solutions-grid p {
  font-size: 13px !important;
  line-height: 1.625 !important;
  color: #4b5563 !important;
  margin: 0 24px 24px 24px !important;
  text-align: left !important;
}

/* Next.js style Carousel Indicator (Dots) di Bawah Gambar */
.devtink-solutions-grid .wp-block-jetpack-slideshow_pagination.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 12px !important;
  margin-bottom: 4px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

.devtink-solutions-grid .swiper-pagination-bullet {
  height: 6px !important;
  width: 6px !important;
  background-color: #cbd5e1 !important;
  opacity: 1 !important;
  border-radius: 9999px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 0 3px !important;
  border: none !important;
}

.devtink-solutions-grid .swiper-pagination-bullet-active {
  width: 16px !important;
  background-color: #374151 !important;
  border-radius: 9999px !important;
}

/* Sembunyikan Arrow Buttons agar Clean */
.devtink-solutions-grid .swiper-button-prev,
.devtink-solutions-grid .swiper-button-next {
  display: none !important;
}

/* Sembunyikan default pause button agar clean mirip Next.js */
.devtink-solutions-grid .wp-block-jetpack-slideshow_button-pause {
  display: none !important;
}

/* ==================== END-TO-END SOLUTIONS ==================== */
.devtink-e2e-section {
  background: transparent !important;
  padding: 40px 20px !important;
  /* Standarisasi padding mobile */
}

@media (min-width: 768px) {
  .devtink-e2e-section {
    padding: 60px 20px !important;
    /* Standarisasi padding desktop */
  }
}

.devtink-e2e-section h2.wp-block-heading {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  letter-spacing: -0.025em !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

@media (min-width: 768px) {
  .devtink-e2e-section h2.wp-block-heading {
    font-size: 30px !important;
  }
}

.devtink-e2e-section .wp-block-columns {
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.devtink-e2e-section .wp-block-image img {
  border-radius: 24px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
}

.devtink-e2e-section .wp-block-button__link {
  border-radius: 9999px !important;
  background-color: #0f172a !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  transition: background-color 0.3s ease !important;
  border: none !important;
}

.devtink-e2e-section .wp-block-button__link:hover {
  background-color: #1e293b !important;
}

/* ==================== CONTROL ANYWHERE STYLING ==================== */
.devtink-control-section {
  background-color: #ffffff !important;
  padding: 40px 20px !important;
  /* Diperkecil dari 60px/80px */
  box-sizing: border-box !important;
}

.devtink-control-section h2.wp-block-heading {
  margin-bottom: 16px !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  letter-spacing: -0.025em !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Menyuntikkan Ikon Layar Ungu (Dashboard) */
.devtink-control-section h2.wp-block-heading::before {
  content: "" !important;
  display: inline-flex !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 12px !important;
  background-color: #f5f0fa !important;
  /* bg-purple-50 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239b51e0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='1' /%3E%3Cpath d='M7 20h10' /%3E%3Cpath d='M9 16v4' /%3E%3Cpath d='M15 16v4' /%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 20px 20px !important;
}

/* Paragraf Lead/Sub-Header di atas Gallery (hanya target paragraf langsung, bukan di dalam card) */
.devtink-control-section>p,
.devtink-control-section>.wp-block-group>p,
.devtink-control-section .wp-block-group:not(.wp-block-column):not(.wp-block-image)>p {
  font-size: 14px !important;
  line-height: 1.625 !important;
  color: #4b5563 !important;
  max-width: 650px !important;
  margin: 0 auto 32px auto !important;
  text-align: center !important;
}

/* Judul & Deskripsi di dalam Card Control Section (Menyamakan Bento Card Real Solutions) */
.devtink-control-section .wp-block-column h3,
.devtink-control-section .wp-block-image h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 24px 24px 8px 24px !important;
  text-align: left !important;
  font-style: normal !important;
  /* Mencegah override font miring */
}

@media (min-width: 768px) {

  .devtink-control-section .wp-block-column h3,
  .devtink-control-section .wp-block-image h3 {
    font-size: 20px !important;
  }
}

.devtink-control-section .wp-block-column p,
.devtink-control-section .wp-block-image p {
  font-size: 13px !important;
  line-height: 1.625 !important;
  color: #4b5563 !important;
  margin: 0 24px 24px 24px !important;
  text-align: left !important;
  font-style: normal !important;
  /* Mencegah override font miring */
}

/* Target galeri utama di mobile */
.devtink-control-section .wp-block-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

@media (min-width: 768px) {
  .devtink-control-section {
    padding: 60px 20px !important;
    /* Diperkecil dari 80px/100px */
  }

  .devtink-control-section h2.wp-block-heading {
    font-size: 30px !important;
  }

  .devtink-control-section .wp-block-gallery {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    /* Samakan dengan gap bento card real solutions */
    max-width: 900px !important;
    /* Samakan lebar maksimal 900px */
  }
}

.devtink-control-section .wp-block-image {
  border-radius: 24px 24px 0 0 !important;
  /* Rounded top corners matching Real Solutions */
  overflow: hidden !important;
  background: linear-gradient(to bottom, #cbd5e1 0%, rgba(255, 255, 255, 0) 100%) !important;
  /* Gradient fade bottom */
  box-shadow: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  transition: none !important;
  transform: none !important;
  position: relative !important;
  margin: 0 !important;
  width: 100% !important;
}

.devtink-control-section .wp-block-image img {
  border-radius: 24px 24px 0 0 !important;
  /* Rounded top corners matching Real Solutions */
  aspect-ratio: 16 / 10 !important;
  /* Samakan aspect ratio 16/10 bento card */
  width: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
}

.devtink-control-section .wp-block-image:hover img {
  transform: scale(1.05) !important;
  /* Samakan zoom hover 1.05 */
}

.devtink-control-section .wp-block-image figcaption {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  background: none !important;
  padding: 0 !important;
  margin: 16px 20px 16px 20px !important;
  /* Margins di dalam bento card */
  font-size: 13px !important;
  font-weight: 600 !important;
  /* Tebal seperti title bento card */
  font-style: normal !important;
  color: #1f2937 !important;
  /* Warna charcoal */
  text-align: left !important;
  box-sizing: border-box !important;
}

@media (min-width: 768px) {
  .devtink-control-section .wp-block-image figcaption {
    font-size: 15px !important;
  }
}

/* ==================== CONTROL GRID (Control, Anywhere) ==================== */
.devtink-control-grid {
  max-width: 900px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

@media (min-width: 768px) {
  .devtink-control-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    max-width: 1140px !important;
  }
}

.devtink-control-grid > .wp-block-column {
  border-radius: 24px !important;
  overflow: hidden !important;
  background: linear-gradient(to bottom, #cbd5e1 0%, rgba(255,255,255,0) 100%) !important;
  box-shadow: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  max-width: 440px !important;
  width: 100% !important;
  margin: 0 auto !important;
  transition: none !important;
  transform: none !important;
}

@media (min-width: 768px) {
  .devtink-control-grid > .wp-block-column {
    max-width: 550px !important;
  }
}

.devtink-control-grid > .wp-block-column:hover {
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Slideshow at top of each card */
.devtink-control-grid .wp-block-jetpack-slideshow {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 24px 24px 0 0 !important;
  background: transparent !important;
}

.devtink-control-grid .wp-block-jetpack-slideshow_container {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: visible !important;
  background: transparent !important;
}

.devtink-control-grid .wp-block-jetpack-slideshow_swiper-wrapper {
  height: auto !important;
  border-radius: 24px 24px 0 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

.devtink-control-grid .swiper-slide {
  height: auto !important;
  background: transparent !important;
}

.devtink-control-grid .wp-block-jetpack-slideshow_slide figure {
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
}

.devtink-control-grid .wp-block-jetpack-slideshow img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 24px 24px 0 0 !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Indicator dots — below image, inside card */
.devtink-control-grid .wp-block-jetpack-slideshow_pagination.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 10px !important;
  margin-bottom: 2px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

.devtink-control-grid .swiper-pagination-bullet {
  height: 6px !important;
  width: 6px !important;
  background-color: #d1d5db !important;
  opacity: 1 !important;
  border-radius: 9999px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 0 3px !important;
  border: none !important;
}

.devtink-control-grid .swiper-pagination-bullet-active {
  width: 18px !important;
  background-color: #6b21a8 !important;
}

/* Nav arrows hidden — dots only */
.devtink-control-grid .wp-block-jetpack-slideshow_button-prev,
.devtink-control-grid .wp-block-jetpack-slideshow_button-next,
.devtink-control-grid .wp-block-jetpack-slideshow_button-pause {
  display: none !important;
}

/* Text body area */
.devtink-control-card-body {
  padding: 0 !important;
}

.devtink-control-grid h3.wp-block-heading {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 20px 24px 8px 24px !important;
  text-align: left !important;
}

@media (min-width: 768px) {
  .devtink-control-grid h3.wp-block-heading {
    font-size: 20px !important;
  }
}

.devtink-control-grid p {
  font-size: 13px !important;
  line-height: 1.625 !important;
  color: #6b7280 !important;
  margin: 0 24px 24px 24px !important;
  text-align: left !important;
}

/* ==================== REVIEWS STYLING ==================== */
.devtink-reviews-section {
  background-color: #ffffff !important;
  padding: 40px 20px 0 20px !important;
  /* Bottom padding di-nol-kan karena ada wrapper trustindex */
  text-align: center !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .devtink-reviews-section {
    padding: 60px 20px 0 20px !important;
  }
}

.devtink-reviews-section h2.wp-block-heading {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  letter-spacing: -0.025em !important;
}

@media (min-width: 768px) {
  .devtink-reviews-section h2.wp-block-heading {
    font-size: 30px !important;
  }
}

.devtink-reviews-section p {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}

.devtink-reviews-content-wrapper {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 0 40px 0 !important;
  box-sizing: border-box !important;
}

@media (min-width: 768px) {
  .devtink-reviews-content-wrapper {
    padding: 0 0 60px 0 !important;
  }
}

.devtink-reviews-content-wrapper>* {
  max-width: 1000px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ==================== FAQ STYLING ==================== */
.devtink-faq-footer-section {
  background-color: #f8fafc !important;
  padding: 60px 20px !important;
}

@media (min-width: 768px) {
  .devtink-faq-footer-section {
    padding: 80px 20px !important;
  }
}

.devtink-faq-footer-section h2.wp-block-heading {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  letter-spacing: -0.025em !important;
  text-align: center !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

@media (min-width: 768px) {
  .devtink-faq-footer-section h2.wp-block-heading {
    font-size: 30px !important;
  }
}

.devtink-faq-footer-section p {
  font-size: 14px !important;
  color: #64748b !important;
  max-width: 512px !important;
  margin: 0 auto 64px auto !important;
  text-align: center !important;
}

.devtink-faq-footer-section .wp-block-accordion {
  max-width: 896px !important;
  margin: 0 auto !important;
  border-top: none !important;
  background-color: rgba(226, 232, 240, 0.4) !important;
  border-radius: 24px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  box-sizing: border-box !important;
}

@media (min-width: 768px) {
  .devtink-faq-footer-section .wp-block-accordion {
    padding: 24px !important;
  }
}

.devtink-faq-footer-section .wp-block-accordion-item {
  border: none !important;
  background-color: #ffffff !important;
  padding: 4px 20px !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  /* Hapus margin default antar block bawaan WP */
}

.devtink-faq-footer-section .wp-block-accordion-heading {
  margin: 0 !important;
  padding: 0 !important;
}

.devtink-faq-footer-section .wp-block-accordion-heading__toggle {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  background: none !important;
  border: none !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 16px 0 !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
  text-align: left !important;
  text-decoration: none !important;
  /* Hapus underline default */
  outline: none !important;
  box-shadow: none !important;
}

.devtink-faq-footer-section .wp-block-accordion-heading__toggle:hover,
.devtink-faq-footer-section .wp-block-accordion-heading__toggle:focus {
  color: #9b51e0 !important;
  text-decoration: none !important;
  /* Mencegah underline muncul saat hover */
}

.devtink-faq-footer-section .wp-block-accordion-heading__toggle * {
  text-decoration: none !important;
  /* Mencegah underline pada span bawaan */
}

/* Sembunyikan Arrow Default WordPress & Duplikat Arrow Text */
.devtink-faq-footer-section .wp-block-accordion-heading__toggle svg,
.devtink-faq-footer-section .wp-block-accordion-heading__toggle::before,
.devtink-faq-footer-section .wp-block-accordion-heading__toggle-icon {
  display: none !important;
}

/* Custom Minimalist & Modern Chevron Arrow */
.devtink-faq-footer-section .wp-block-accordion-heading__toggle::after {
  content: "" !important;
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 2px solid #64748b !important;
  border-bottom: 2px solid #64748b !important;
  transform: rotate(45deg) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease !important;
  margin-right: 4px !important;
  flex-shrink: 0 !important;
}

.devtink-faq-footer-section .wp-block-accordion-heading__toggle:hover::after {
  border-color: #9b51e0 !important;
}

.devtink-faq-footer-section .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle::after,
.devtink-faq-footer-section .wp-block-accordion-heading__toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg) !important;
  border-color: #9b51e0 !important;
}

.devtink-faq-footer-section .wp-block-accordion-panel {
  padding: 4px 0 16px 0 !important;
  border: none !important;
}

.devtink-faq-footer-section .wp-block-accordion-panel p {
  font-size: 14px !important;
  line-height: 1.625 !important;
  color: #475569 !important;
  margin: 0 !important;
  text-align: left !important;
  max-width: 100% !important;
}

/* ==================== BOTTOM CTA STYLING ==================== */
.devtink-cta-footer-box {
  background-color: #f8fafc !important;
  padding: 40px 20px !important;
  /* Diperkecil dari 60px */
  border-radius: 32px !important;
  max-width: 1000px !important;
  margin: 24px auto 0 auto !important;
  /* Margin atas dikurangi setengahnya */
}

@media (min-width: 768px) {
  .devtink-cta-footer-box {
    padding: 80px 48px !important;
    border-radius: 48px !important;
  }
}

.devtink-cta-footer-box .wp-block-image img {
  border-radius: 32px !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
}

.devtink-cta-footer-box .wp-block-column {
  align-items: flex-start !important;
  text-align: left !important;
}

.devtink-cta-footer-box h2.wp-block-heading {
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 12px 0 !important;
  text-align: left !important;
}

@media (min-width: 768px) {
  .devtink-cta-footer-box h2.wp-block-heading {
    font-size: 36px !important;
  }
}

.devtink-cta-footer-box p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #4b5563 !important;
  margin-bottom: 24px !important;
  text-align: left !important;
}

.devtink-cta-footer-box .wp-block-buttons {
  justify-content: flex-start !important;
}

.devtink-cta-footer-box .wp-block-button__link {
  border-radius: 9999px !important;
  background-color: #9b51e0 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
}

/* Jika TIDAK ada SVG inline (WordPress), gunakan background-image dan padding kiri */
.devtink-cta-footer-box .wp-block-button__link:not(:has(svg)) {
  padding: 12px 24px 12px 48px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9'/%3E%3Cpath d='M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 18px center !important;
  background-size: 18px 18px !important;
}

/* Jika ada SVG inline (React/Next.js), gunakan padding simetris dan matikan background-image */
.devtink-cta-footer-box .wp-block-button__link:has(svg) {
  padding: 12px 32px !important;
  background-image: none !important;
}

.devtink-cta-footer-box .wp-block-button__link:hover {
  background-color: #853fd0 !important;
}

/* ==================== RESPONSIVE OVERRIDES (MOBILE & TABLET / MEDIUM BREAKPOINT) ==================== */
/* Menangani breakpoint medium screens (Tablet/iPad di bawah 1024px) */
@media (max-width: 1023px) {

  /* Paksakan tombol hamburger pemicu (burger button) tampil */
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }

  /* Sembunyikan menu list mentah inline bawaan WordPress sebelum diklik */
  .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .devtink-header-wrapper {
    padding: 0 24px !important;
    /* Samakan dengan padding horizontal footer di mobile */
  }

  .devtink-header-content {
    height: 80px !important;
    padding: 0 !important;
  }

  .devtink-header-wrapper .wp-block-site-logo img {
    height: 56px !important;
    max-height: 56px !important;
  }

  /* Penataan tata letak flex di kanan untuk mobile */
  .devtink-header-content>.wp-block-group:last-child {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .devtink-header-buttons {
    order: 1 !important;
    display: flex !important;
    margin: 0 !important;
  }

  .devtink-nav-menu {
    order: 2 !important;
    margin: 0 !important;
    display: block !important;
  }

  /* Tombol Mobile Header "Book Now" */
  body .wp-block-buttons.devtink-header-buttons .wp-block-button.devtink-cta-btn .wp-block-button__link {
    font-size: 0 !important;
    color: transparent !important;
    line-height: 0 !important;
    padding: 8px 16px 8px 36px !important;
    background: #9b51e0 !important;
    border: none !important;
    box-shadow: none !important;
  }

  body .wp-block-buttons.devtink-header-buttons .wp-block-button.devtink-cta-btn .wp-block-button__link::before {
    left: 14px !important;
    width: 14px !important;
    height: 14px !important;
  }

  body .wp-block-buttons.devtink-header-buttons .wp-block-button.devtink-cta-btn .wp-block-button__link::after {
    content: "Book Now" !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    display: inline-block;
  }

  /* --- HAMBURGER MENU SIDE-DRAWER PREMIUM --- */
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    color: #0f172a !important;
    min-height: 40px !important;
    min-width: 40px !important;
  }

  .wp-block-navigation__responsive-container-open svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 2.5 !important;
  }

  /* Penataan Flexbox pada pembungkus header drawer bawaan WP */
  .wp-block-navigation__responsive-container-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 24px !important;
    position: relative !important;
  }

  /* Menyuntikkan Teks Branding Logo langsung di sebelah kiri Header Drawer */
  .wp-block-navigation__responsive-container-header::before {
    content: "ElementZoom" !important;
    display: block !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    letter-spacing: -0.03em !important;
    text-align: left !important;
  }

  /* Panel Drawer Putih di Sisi Kanan */
  .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: unset !important;
    /* Menggunakan unset alih-alih auto agar benar-benar me-reset left: 0 bawaan WP */
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    /* Menggunakan dvh untuk akurasi viewport di Android/Chrome */
    background-color: #ffffff !important;
    z-index: 999999 !important;
    padding: 40px 24px 32px 24px !important;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    border-top-left-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
    overflow-y: auto !important;
    /* Mencegah konten terpotong pada layar Android beresolusi rendah */
    animation: devtinkSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  /* List link menu vertikal */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
    flex-grow: 1 !important;
    /* Menggunakan flex-grow alih-alih height: 100% agar layout tombol CTA di bawah stabil */
    margin: 0 !important;
    padding: 0 !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    width: 100% !important;
    margin: 0 !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    transition: all 0.2s ease !important;
    display: block !important;
    padding: 14px 0 !important;
    border-bottom: none !important;
    /* Hapus divider border */
    width: 100% !important;
    text-decoration: none !important;
    text-align: left !important;
  }

  /* Hilangkan underline/indicator menu aktif di dalam drawer mobile */
  .wp-block-navigation__responsive-container.is-menu-open .current-menu-item>a::after,
  .wp-block-navigation__responsive-container.is-menu-open .current-menu-ancestor>a::after {
    display: none !important;
    content: none !important;
  }

  /* Ubah warna teks item menu aktif di dalam drawer mobile */
  .wp-block-navigation__responsive-container.is-menu-open .current-menu-item>a,
  .wp-block-navigation__responsive-container.is-menu-open .current-menu-ancestor>a {
    color: #9b51e0 !important;
    font-weight: 600 !important;
  }

  /* Efek Geser & Warna Ungu saat Hover/Aktif */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover {
    color: #9b51e0 !important;
    padding-left: 4px !important;
  }

  /* MENGUBAH LINK KHUSUS CTA (.menu-cta-item) MENJADI GRADIENT CTA 'Book Free Consultation' */
  .wp-block-navigation__responsive-container.is-menu-open .menu-cta-item {
    margin-top: auto !important;
    /* Dorong ke bawah drawer */
    width: 100% !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .menu-cta-item a {
    background: linear-gradient(135deg, #e0c152 0%, #9b51e0 100%) !important;
    color: transparent !important;
    /* Sembunyikan teks menu asli */
    font-size: 0 !important;
    border-radius: 9999px !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    box-shadow: 0 4px 12px rgba(155, 81, 224, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    position: relative !important;
  }

  /* Menyuntikkan Ikon WA untuk CTA menu */
  .wp-block-navigation__responsive-container.is-menu-open .menu-cta-item a::before {
    content: "" !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9'/%3E%3Cpath d='M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
  }

  /* Menyuntikkan teks pengganti 'Book Free Consultation' */
  .wp-block-navigation__responsive-container.is-menu-open .menu-cta-item a::after {
    content: "Book Free Consultation" !important;
    font-size: 14px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
  }

  /* BUTTON WHATSAPP PREFILLED DI MOBILE DRAWER */
  .wp-block-navigation__responsive-container.is-menu-open .menu-wa-prefilled {
    margin-top: 12px !important;
    width: 100% !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .menu-wa-prefilled a {
    background: #25d366 !important;
    /* WhatsApp Green */
    color: transparent !important;
    font-size: 0 !important;
    border-radius: 9999px !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    position: relative !important;
    text-decoration: none !important;
  }

  /* Menyuntikkan Ikon WA */
  .wp-block-navigation__responsive-container.is-menu-open .menu-wa-prefilled a::before {
    content: "" !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9'/%3E%3Cpath d='M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
  }

  /* Menyuntikkan teks prefilled label */
  .wp-block-navigation__responsive-container.is-menu-open .menu-wa-prefilled a::after {
    content: "Quick Chat (WhatsApp)" !important;
    font-size: 14px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
  }

  /* Tombol Close Pojok Atas Drawer Panel (Ditempatkan via Flexbox sejajar logo) */
  .wp-block-navigation__responsive-container-close {
    background: transparent !important;
    border: none !important;
    color: #0f172a !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    z-index: 1000000 !important;
  }

  .wp-block-navigation__responsive-container-close svg {
    width: 24px !important;
    height: 24px !important;
  }
}

@keyframes devtinkSlideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.devtink-footer-section {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 60%, #cbd5e1 100%) !important;
  color: #4b5563 !important;
  /* text-gray-600 */
  padding: 100px 80px 80px 80px !important;
  /* Desktop: Lebih renggang dan premium, padding horizontal 80px */
  margin-top: 0px !important;
  /* Kurangi margin atas secara drastis */
  border-top: none !important;
  /* Hapus border divider */
}

@media (max-width: 1023px) {
  .devtink-footer-section {
    padding: 64px 24px 48px 24px !important;
    /* Mobile/Tablet: 24px horizontal padding to align with header */
    margin-top: 0px !important;
    /* Kurangi margin atas secara drastis di mobile */
  }
}

@media (max-width: 767px) {
  .devtink-footer-section {
    padding: 48px 20px 32px 20px !important;
    /* Rampingkan padding luar footer di mobile */
  }

  .devtink-footer-section .wp-block-columns {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    /* Rampingkan jarak antar section footer */
    margin: 0 !important;
    padding: 0 !important;
  }

  .devtink-footer-section .wp-block-column {
    flex-basis: auto !important;
    margin: 0 !important;
    width: 100% !important;
  }

  /* Brand Logo Col */
  .devtink-footer-section .wp-block-column:nth-child(1) {
    order: 1 !important;
  }

  /* Quick Links Col */
  .devtink-footer-section .wp-block-column:nth-child(4) {
    order: 2 !important;
  }

  /* Contact Col */
  .devtink-footer-section .wp-block-column:nth-child(2) {
    order: 3 !important;
  }

  /* Follow Us Col */
  .devtink-footer-section .wp-block-column:nth-child(3) {
    order: 4 !important;
  }

  .devtink-footer-section>.wp-block-group.alignwide {
    margin-top: 24px !important;
    /* Rampingkan margin atas bottom bar di mobile */
  }
}

/* Ensure footer columns container behaves exactly like the header container on desktop and tablet */
.devtink-footer-section .wp-block-columns {
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 768px) {
  .devtink-footer-section .wp-block-columns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 40px !important;
    /* standard gutter spacing */
  }

  .devtink-footer-section .wp-block-column {
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 1 25% !important;
    /* 4 columns distribute space evenly */
  }
}

/* Align header wide container and footer columns container exactly */
.devtink-header-wrapper>.alignwide,
.devtink-footer-section>.alignwide {
  max-width: var(--wp--style--global--wide-size, 1200px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Format Address */
.devtink-footer-section .ai-bind-address {
  font-size: 14px !important;
  color: #6b7280 !important;
  /* text-gray-500 */
  line-height: 1.625 !important;
  margin: 0 !important;
}

/* Headings in Footer (Contact, Follow us) */
.devtink-footer-section p.ai-ignore[style*="font-weight:500"] {
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #111827 !important;
  /* text-gray-900 */
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

/* Link List (Vertical layout in columns) */
.devtink-footer-section .wp-block-column .wp-block-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.devtink-footer-section a {
  color: #6b7280 !important;
  /* text-gray-500 */
  text-decoration: none !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

.devtink-footer-section a:hover {
  color: #9b51e0 !important;
  /* hover color */
}

/* Contact Links (WA & Email) Icons */
.devtink-footer-section .wp-block-column:nth-child(2) a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.devtink-footer-section .wp-block-column:nth-child(2) p:first-child a::before {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239b51e0'%3E%3Cpath d='M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97a16.586 16.586 0 0 0 7.218 7.218l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75V4.5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.devtink-footer-section .wp-block-column:nth-child(2) p:last-child a::before {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239b51e0'%3E%3Cpath d='M1.5 8.67v8.58a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V8.67l-8.928 5.493a1.35 1.35 0 0 1-1.414 0L1.5 8.67z'/%3E%3Cpath d='M22.5 6.908V6.75a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v.158l9.714 5.978a1.5 1.5 0 0 0 1.572 0L22.5 6.908z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

/* Social Links styling */
.devtink-footer-section .wp-block-social-links {
  display: flex !important;
  gap: 16px !important;
  margin-top: 12px !important;
  list-style: none !important;
  padding: 0 !important;
}

.devtink-footer-section .wp-block-social-links li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 9999px !important;
  background-color: #f1f5f9 !important;
  color: #64748b !important;
  transition: all 0.3s ease !important;
}

.devtink-footer-section .wp-block-social-links li a:hover {
  color: #ffffff !important;
}

.devtink-footer-section .wp-block-social-links li.wp-social-link-facebook a:hover {
  background-color: #1877f2 !important;
  /* Facebook Blue */
}

.devtink-footer-section .wp-block-social-links li.wp-social-link-youtube a:hover {
  background-color: #ff0000 !important;
  /* YouTube Red */
}

/* Bottom Bar (Copyright & Tagline) */
.devtink-footer-section>.wp-block-group.alignwide {
  border-top: none !important;
  /* Hapus border divider */
  padding-top: 24px !important;
  margin-top: 48px !important;
  display: flex !important;
  flex-direction: column-reverse !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  color: #94a3b8 !important;
  /* text-gray-400 */
}

@media (min-width: 768px) {
  .devtink-footer-section>.wp-block-group.alignwide {
    flex-direction: row !important;
  }
}

.devtink-footer-section>.wp-block-group.alignwide p {
  font-size: 12px !important;
  color: #94a3b8 !important;
  /* text-gray-400 */
  margin: 0 !important;
}

/* Brand statement on bottom right */
.devtink-footer-section>.wp-block-group.alignwide::after {
  content: "Smart Homes, Built for Privacy" !important;
  display: block !important;
  font-size: 12px !important;
  color: #94a3b8 !important;
  /* text-gray-400 */
}

/* Footer Quick Links Grid on Mobile */
@media (max-width: 767px) {
  .devtink-footer-links-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 16px !important;
  }
}

/* ==================== ABOUT PAGE STYLING ==================== */
/* Gradasi Utama di Level Main Container */
.entry-content.wp-block-post-content:has(.devtink-about-wrapper),
.entry-content:has(.devtink-about-wrapper),
.site-content:has(.devtink-about-wrapper),
main:has(.devtink-about-wrapper) {
  background: linear-gradient(to bottom, #cbd5e1 0%, #e2e8f0 350px, #ffffff 800px, #ffffff 100%) !important;
}

.devtink-about-wrapper {
  container-type: inline-size;
  container-name: devtink-container;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0f172a;
  background: transparent !important;
  /* Di-set transparan agar gradasi level main terlihat */
  padding: 60px 32px !important;
  /* Disesuaikan dengan padding header desktop (32px) */
  box-sizing: border-box;
  border-radius: 0px !important;
}

.devtink-about-wrapper * {
  box-sizing: border-box;
}

/* 1. Header Section */
.devtink-header-cols {
  background: transparent !important;
  padding: 16px 0 48px 0 !important;
  display: grid !important;
  grid-template-columns: 8fr 4fr !important;
  gap: 40px !important;
  align-items: start !important;
}

.devtink-header-cols h1 {
  font-size: 40px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  margin: 0 !important;
  color: #0f172a !important;
}

.devtink-header-cols p {
  font-size: 16px !important;
  line-height: 1.625 !important;
  color: #475569 !important;
  margin: 0 !important;
  padding-top: 8px !important;
}

/* 2. Bento Grid Section */
.devtink-bento-grid {
  background: transparent !important;
  padding: 16px 0 40px 0 !important;
  display: grid !important;
  grid-template-columns: 8fr 4fr !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.devtink-bento-grid .wp-block-image {
  position: relative !important;
  margin: 0 !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 48px !important;
  background-color: #f8fafc !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
}

.devtink-bento-grid .wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.devtink-bento-grid .wp-block-image:hover img {
  transform: scale(1.05) !important;
}

/* Efek Glassmorphism pada Caption Gambar Bawaan WordPress */
.devtink-bento-grid .wp-block-image figcaption {
  position: absolute !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 9999px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin: 0 !important;
  width: auto !important;
  max-width: 90% !important;
  pointer-events: none !important;
  user-select: none !important;
  z-index: 10 !important;
}

.large-wrapper {
  aspect-ratio: 1.4 !important;
  height: 100% !important;
}

.bento-small-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  justify-content: space-between !important;
}

.bento-small-col .small-wrapper {
  aspect-ratio: 1.75 !important;
  flex: 1 !important;
}

/* 3. Banner Section */
.devtink-banner-card {
  background-color: rgba(248, 250, 252, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(241, 245, 249, 0.8) !important;
  border-radius: 24px !important;
  padding: 32px !important;
  max-width: 650px !important;
  margin: 48px auto !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03) !important;
}

.devtink-banner-card p {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #64748b !important;
  margin: 0 !important;
  text-align: justify !important;
}

.devtink-banner-card strong {
  color: #0f172a !important;
  display: block !important;
  margin-bottom: 8px !important;
  font-size: 16px !important;
}

/* 4. Story Section */
.devtink-story-grid {
  padding: 80px 0 !important;
  background: transparent !important;
}

.devtink-story-grid--top {
  padding-top: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  align-items: start !important;
}

.story-left-col h2 {
  font-size: 36px !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #0f172a !important;
  margin: 0 !important;
}

.story-cta-wrapper {
  margin-top: 32px !important;
}

.story-cta-btn a {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #9b51e0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 16px 32px !important;
  border-radius: 9999px !important;
  border: none !important;
  transition: background-color 0.2s ease !important;
}

.story-cta-btn a:hover {
  background-color: #853fd0 !important;
}

.story-right-col p {
  font-size: 16px !important;
  line-height: 1.625 !important;
  color: #64748b !important;
  margin: 0 0 20px 0 !important;
}

.story-right-col p:last-child {
  margin-bottom: 0 !important;
}

.story-right-col .story-lead {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
}

/* Story image — left column */
.devtink-story-image {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

.devtink-story-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 20px !important;
}

/* About CTA — cover block, wide centered */
.devtink-about-cta {
  border-radius: 24px !important;
  overflow: hidden !important;
  margin-top: 80px !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100vw - 48px) !important;
  max-width: 1400px !important;
  box-sizing: border-box !important;
  min-height: 480px !important;
}

.devtink-about-cta .wp-block-cover__background {
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.20) 100%) !important;
  opacity: 1 !important;
}

.devtink-about-cta .wp-block-cover__inner-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 60px 32px !important;
  min-height: 480px !important;
  gap: 0 !important;
}

.devtink-about-cta h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
  max-width: 560px !important;
}

.devtink-about-cta .story-cta-wrapper {
  margin-top: 36px !important;
}

/* --- FORCE LAYOUT DESKTOP PADA WP EDITOR --- */
.editor-styles-wrapper .devtink-header-cols,
.is-root-container .devtink-header-cols {
  grid-template-columns: 8fr 4fr !important;
}

.editor-styles-wrapper .devtink-bento-grid,
.is-root-container .devtink-bento-grid {
  grid-template-columns: 8fr 4fr !important;
}

.editor-styles-wrapper .bento-small-col,
.is-root-container .bento-small-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.editor-styles-wrapper .bento-small-col .small-wrapper,
.is-root-container .bento-small-col .small-wrapper {
  aspect-ratio: 1.75 !important;
  flex: 1 !important;
}

.editor-styles-wrapper .large-wrapper,
.is-root-container .large-wrapper {
  aspect-ratio: 1.4 !important;
  height: 100% !important;
}

.editor-styles-wrapper .devtink-story-grid,
.is-root-container .devtink-story-grid {
  grid-template-columns: 1fr 1fr !important;
}

/* --- RESPONSIVE ADJUSTMENTS (Live Website Mobile / Viewport kecil) --- */
@container devtink-container (max-width: 700px) {
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-about-wrapper {
    padding: 40px 24px !important;
    /* Disesuaikan dengan padding header mobile (24px) */
  }

  /* RESET TOTAL PADDING DAN MARGIN BAWAAN GATENBERG / TEMA */
  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-columns,
  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-column,
  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-group,
  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-buttons {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-header-cols {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px 0px 12px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-header-cols h1 {
    font-size: 28px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-header-cols p {
    font-size: 14px !important;
    padding-top: 0 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-bento-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 4px 0px 8px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-bento-grid .wp-block-image {
    border-radius: 16px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .large-wrapper {
    aspect-ratio: 16/10 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-bento-grid .wp-block-image figcaption {
    font-size: 8px !important;
    padding: 4px 8px !important;
    bottom: 8px !important;
    white-space: nowrap !important;
    max-width: 90% !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .bento-small-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .bento-small-col .small-wrapper {
    aspect-ratio: 16/10 !important;
    height: auto !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-banner-card {
    padding: 20px 12px !important;
    margin: 12px 0px !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-story-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 16px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-story-image {
    aspect-ratio: 4/3 !important;
    border-radius: 16px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-about-cta {
    border-radius: 16px !important;
    margin-top: 48px !important;
    width: calc(100vw - 32px) !important;
    min-height: 360px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-about-cta .wp-block-cover__inner-container {
    padding: 40px 24px !important;
    min-height: 360px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-about-cta h2 {
    font-size: 26px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .story-cta-wrapper {
    margin-top: 24px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .story-cta-btn a {
    font-size: 14px !important;
    padding: 12px 24px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .story-right-col .story-lead {
    font-size: 16px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .story-right-col p {
    font-size: 14px !important;
  }
}

/* ==================== SERVICES PAGE STYLING ==================== */
/* Gradasi Utama di Level Main Container */
.entry-content.wp-block-post-content:has(.devtink-services-wrapper),
.entry-content:has(.devtink-services-wrapper),
.site-content:has(.devtink-services-wrapper),
main:has(.devtink-services-wrapper) {
  background: linear-gradient(to bottom, #cbd5e1 0%, #e2e8f0 350px, #ffffff 800px, #ffffff 100%) !important;
  overflow-x: hidden !important;
}

.devtink-services-wrapper {
  container-type: inline-size;
  container-name: devtink-container;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0f172a;
  background: transparent !important;
  /* Di-set transparan agar gradasi level main terlihat */
  padding: 0px 32px 60px 32px !important;
  /* Kurangi top padding dari 24px ke 0px agar langsung menyambung dengan nav */
  box-sizing: border-box;
  border-radius: 0px !important;
}

.devtink-services-wrapper * {
  box-sizing: border-box;
}

/* 1. Centered Hero Section - Scoped to Services Wrapper */
.devtink-services-wrapper .devtink-hero-section {
  background: transparent !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 8px 0 0px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.devtink-services-wrapper .devtink-hero-section h1 {
  font-size: 36px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  margin: 0 auto 16px auto !important;
  color: #0f172a !important;
  max-width: 900px !important;
  text-align: center !important;
  width: 100% !important;
}

@media (min-width: 768px) {
  .devtink-services-wrapper .devtink-hero-section h1 {
    white-space: nowrap !important;
  }
}

.devtink-services-wrapper .devtink-hero-section p:not(.has-text-color) {
  font-size: 18px !important;
  line-height: 1.625 !important;
  color: #475569 !important;
  margin: 0 auto !important;
  max-width: 680px !important;
  text-align: center !important;
  width: 100% !important;
}

/* Hero section (WHAT WE DO) — text only, dark background that flows
   seamlessly into the dark .devtink-service-modules-section below.
   Uses its own class (not .devtink-hero-section) to avoid the global
   homepage hero min-height. */
.devtink-services-wrapper.devtink-services-hero {
  background: #000000 !important;
  color: #ffffff !important;
  padding: 96px 32px 0 32px !important;
  /* Pull the element down to cover any theme block-gap between siblings */
  margin-bottom: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Kill WordPress block-gap between the hero wrapper and the modules section.
   Themes inject margin-bottom via --wp--style--block-gap on .wp-block-group;
   target the modules wrapper directly to reset any top spacing it receives. */
.devtink-service-modules-section {
  margin-top: 0 !important;
}

/* Also reset any gap the parent post-content flex/block layout adds */
.entry-content .devtink-services-wrapper.devtink-services-hero,
.wp-block-post-content .devtink-services-wrapper.devtink-services-hero {
  margin-bottom: 0 !important;
}

/* Prevent theme block-gap between hero and adjacent sibling */
.devtink-services-wrapper.devtink-services-hero + * {
  margin-top: 0 !important;
}

.devtink-services-hero .devtink-hero-copy {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.devtink-services-hero .devtink-hero-copy h1 {
  font-size: 26px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  margin: 0 0 16px 0 !important;
  color: #ffffff !important;
  white-space: normal !important;
}

.devtink-services-hero .devtink-hero-copy p:not(.has-text-color) {
  font-size: 18px !important;
  line-height: 1.625 !important;
  margin: 0 !important;
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Lower wrapper (Our Process → bottom) — same full-bleed pattern as the
   modules section so horizontal padding is identical at every breakpoint. */
.devtink-services-wrapper.devtink-services-lower {
  width: 100vw !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 80px max(32px, 6%) !important;
  background: transparent !important;
  container-type: normal !important; /* disable container query on this wrapper */
}

/* 2. Process Section */
.devtink-services-wrapper .devtink-process-grid {
  background: transparent !important;
  padding: 80px 32px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 16px !important;
  align-items: start !important;
}

.devtink-services-wrapper .process-title-col h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 16px !important;
}

.devtink-services-wrapper .process-title-col p {
  font-size: 16px !important;
  line-height: 1.625 !important;
  color: #64748b !important;
}

.devtink-services-wrapper .process-stack-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

/* Bento/Process Image Style */
.devtink-services-wrapper .devtink-process-grid .wp-block-image {
  position: relative !important;
  margin: 0 auto !important;
  width: 90% !important;
  max-width: 340px !important;
  overflow: hidden !important;
  border-radius: 32px !important;
  aspect-ratio: 4/3 !important;
  background-color: #f8fafc !important;
  box-shadow: none !important;
  border: none !important;
}

.devtink-services-wrapper .devtink-process-grid .wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Style Badge Angka Otomatis (01, 02, 03, 04) - Glassmorphic Purple */
.devtink-services-wrapper .devtink-process-grid .wp-block-image::before {
  position: absolute !important;
  top: 16px !important;
  left: 20px !important;
  background: rgba(155, 81, 224, 0.5) !important;
  /* Glassmorphic Purple */
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  padding: 6px 12px !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  z-index: 12 !important;
  font-family: monospace, sans-serif !important;
}

.devtink-services-wrapper .process-step-1::before {
  content: "01" !important;
}

.devtink-services-wrapper .process-step-2::before {
  content: "02" !important;
}

.devtink-services-wrapper .process-step-3::before {
  content: "03" !important;
}

.devtink-services-wrapper .process-step-4::before {
  content: "04" !important;
}

/* Glassmorphism Badge pada Caption Gambar */
.devtink-services-wrapper .wp-block-image figcaption {
  position: absolute !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 9999px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin: 0 !important;
  width: auto !important;
  max-width: 90% !important;
  pointer-events: none !important;
  user-select: none !important;
  z-index: 10 !important;
}

/* 3. Centered Section */
.devtink-services-wrapper .devtink-centered-section {
  background: transparent !important;
  text-align: center !important;
  max-width: 800px !important;
  margin: 80px auto 40px auto !important;
}

.devtink-services-wrapper .devtink-centered-section h2 {
  font-size: 22px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.015em !important;
}

.devtink-services-wrapper .devtink-centered-section p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Benefits Grid */
.devtink-services-wrapper .devtink-benefits-grid {
  background: transparent !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 32px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.devtink-services-wrapper .devtink-benefits-grid .wp-block-column {
  background: linear-gradient(180deg, #e2e8f0 0%, rgba(255, 255, 255, 0) 100%) !important;
  border: none !important;
  padding: 32px !important;
  border-radius: 24px !important;
  box-shadow: none !important;
}

.devtink-services-wrapper .devtink-benefits-grid h3 {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
}

.devtink-services-wrapper .devtink-benefits-grid p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* 1b. Hero Grid Section (Built on Trusted Technology style) Scoped to Services Wrapper */
.devtink-services-wrapper .devtink-hero-grid {
  background: transparent !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  align-items: center !important;
  max-width: 1100px !important;
  margin: 0 auto 40px auto !important;
  padding: 60px 0 !important;
  border-top: none !important;
}

.devtink-services-wrapper .devtink-hero-grid .wp-block-image {
  position: relative !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 48px !important;
  aspect-ratio: 1 !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
}

.devtink-services-wrapper .devtink-hero-grid .wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* 4. Discover Section */
.devtink-services-wrapper .devtink-discover-grid {
  background: transparent !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  align-items: center !important;
  max-width: 1100px !important;
  margin: 80px auto 0 auto !important;
  padding: 60px 0 !important;
  border-top: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.devtink-services-wrapper .devtink-discover-grid .wp-block-image {
  position: relative !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 48px !important;
  aspect-ratio: 1 !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
}

.devtink-services-wrapper .devtink-discover-grid .wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.devtink-services-wrapper .devtink-eyebrow {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #9b51e0 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  display: block !important;
}

.devtink-services-wrapper .discover-content h1,
.devtink-services-wrapper .discover-content h2 {
  font-size: 26px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  margin-bottom: 20px !important;
}

.devtink-services-wrapper .discover-content p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  margin-bottom: 32px !important;
}

/* 5. Booking Section */
.devtink-services-wrapper .devtink-booking-section {
  background: transparent !important;
  padding: 100px 0 40px 0 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.devtink-services-wrapper .devtink-booking-section h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
}

.devtink-services-wrapper .devtink-booking-section p {
  font-size: 16px !important;
  color: #64748b !important;
  margin-bottom: 32px !important;
}

.devtink-services-wrapper .story-cta-btn a {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #9b51e0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 16px 32px !important;
  border-radius: 9999px !important;
  border: none !important;
  transition: background-color 0.2s ease !important;
}

.devtink-services-wrapper .story-cta-btn a:hover {
  background-color: #853fd0 !important;
}

/* --- FORCE LAYOUT DESKTOP PADA WP EDITOR --- */
.editor-styles-wrapper .devtink-services-wrapper .devtink-hero-section,
.is-root-container .devtink-services-wrapper .devtink-hero-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.editor-styles-wrapper .devtink-services-wrapper .devtink-hero-section h1,
.is-root-container .devtink-services-wrapper .devtink-hero-section h1 {
  white-space: nowrap !important;
}

.editor-styles-wrapper .devtink-services-wrapper .devtink-process-grid,
.is-root-container .devtink-services-wrapper .devtink-process-grid {
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 16px !important;
}

.editor-styles-wrapper .devtink-services-wrapper .process-stack-col,
.is-root-container .devtink-services-wrapper .process-stack-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.editor-styles-wrapper .devtink-services-wrapper .devtink-benefits-grid,
.is-root-container .devtink-services-wrapper .devtink-benefits-grid {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.editor-styles-wrapper .devtink-services-wrapper .devtink-discover-grid,
.is-root-container .devtink-services-wrapper .devtink-discover-grid {
  grid-template-columns: 1fr 1fr 1fr !important;
}

/* --- RESPONSIVE ADJUSTMENTS (Mobile) --- */

/* ==================== PROJECTS PAGE STYLING ==================== */
/* Gradasi Level Main Container */
.entry-content.wp-block-post-content:has(.devtink-projects-wrapper),
.entry-content:has(.devtink-projects-wrapper),
.site-content:has(.devtink-projects-wrapper),
main:has(.devtink-projects-wrapper) {
  background: linear-gradient(to bottom, #cbd5e1 0%, #e2e8f0 350px, #ffffff 800px, #ffffff 100%) !important;
}

/* Styling Utama Halaman Projects */
.devtink-projects-wrapper {
  container-type: inline-size;
  container-name: devtink-container;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0f172a;
  background: transparent !important;
  /* Di-set transparan agar gradasi level main terlihat */
  padding: 60px 32px !important;
  /* Konsisten dengan halaman About dan Services (32px) */
  box-sizing: border-box;
  border-radius: 0px !important;
}

.devtink-projects-wrapper * {
  box-sizing: border-box;
}

/* 1. Header Section */
.devtink-projects-wrapper .devtink-header-cols {
  background: transparent !important;
  padding: 16px 0 48px 0 !important;
  display: grid !important;
  grid-template-columns: 8fr 4fr !important;
  gap: 40px !important;
  align-items: start !important;
}

.devtink-projects-wrapper .devtink-header-cols h1 {
  font-size: 40px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  margin: 0 !important;
  color: #0f172a !important;
}

.devtink-projects-wrapper .devtink-header-cols p {
  font-size: 16px !important;
  line-height: 1.625 !important;
  color: #475569 !important;
  margin: 0 !important;
  padding-top: 8px !important;
}

/* 2. Bento Grid Section */
.devtink-projects-wrapper .devtink-bento-grid {
  background: transparent !important;
  padding: 16px 0 24px 0 !important;
  display: grid !important;
  grid-template-columns: 8fr 4fr !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.devtink-projects-wrapper .devtink-bento-grid-reverse {
  grid-template-columns: 4fr 8fr !important;
}

/* ── Bento cover blocks — shared base ── */
.devtink-projects-wrapper .devtink-bento-cover {
  border-radius: 16px !important;
  overflow: hidden !important;
  margin: 0 !important;
  width: 100% !important;
  display: block !important;
}

/* Gradient overlay via the cover background span */
.devtink-projects-wrapper .devtink-bento-cover .wp-block-cover__background {
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 55%, transparent 100%) !important;
  opacity: 1 !important;
}

/* Cover block must stretch so inner container can fill full height */
.devtink-projects-wrapper .devtink-bento-cover {
  align-items: stretch !important;
}

/* Inner container — text anchored to bottom left */
.devtink-projects-wrapper .devtink-bento-cover .wp-block-cover__inner-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  width: 100% !important;
  height: 100% !important;
  padding: 20px !important;
  gap: 6px !important;
}

/* Title inside cover */
.devtink-projects-wrapper .devtink-bento-cover h3 {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
}

/* Description inside cover */
.devtink-projects-wrapper .devtink-bento-cover p {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.80) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Aspect ratios per type */
.devtink-projects-wrapper .large-wrapper {
  aspect-ratio: 1.4 !important;
  height: 100% !important;
}

.devtink-projects-wrapper .bento-small-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  justify-content: space-between !important;
}

.devtink-projects-wrapper .bento-small-col .small-wrapper {
  aspect-ratio: 1.75 !important;
  flex: 1 !important;
}

/* Small cells — tighter text */
.devtink-projects-wrapper .small-wrapper .wp-block-cover__inner-container {
  padding: 16px !important;
}
.devtink-projects-wrapper .small-wrapper h3 {
  font-size: 14px !important;
}
.devtink-projects-wrapper .small-wrapper p {
  font-size: 14px !important;
}

.devtink-projects-wrapper .dual-wrapper {
  aspect-ratio: 3/4 !important;
  width: 100% !important;
}

.devtink-projects-wrapper .wide-wrapper {
  aspect-ratio: 16/9 !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* ── Centered section ── */
.devtink-projects-wrapper .devtink-centered-section {
  background: transparent !important;
  text-align: center !important;
  max-width: 800px !important;
  margin: 80px auto 40px auto !important;
}

.devtink-projects-wrapper .devtink-centered-section h2 {
  font-size: 22px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.015em !important;
}

.devtink-projects-wrapper .devtink-centered-section p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* ── Dual grid ── */
.devtink-projects-wrapper .devtink-dual-grid {
  background: transparent !important;
  gap: 16px !important;
}

/* ── CTA Card — full image background, rounded, wide centered ── */
.devtink-projects-wrapper .devtink-cta-card {
  border-radius: 24px !important;
  overflow: hidden !important;
  margin-top: 80px !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100vw - 48px) !important;
  max-width: 1400px !important;
  box-sizing: border-box !important;
  min-height: 480px !important;
}

.devtink-projects-wrapper .devtink-cta-card .wp-block-cover__background {
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.20) 100%) !important;
  opacity: 1 !important;
}

.devtink-projects-wrapper .devtink-cta-card .wp-block-cover__inner-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  text-align: center !important;
  padding: 60px 32px 56px 32px !important;
  min-height: 480px !important;
  gap: 16px !important;
}

.devtink-projects-wrapper .devtink-cta-card h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
  max-width: 520px !important;
}

.devtink-projects-wrapper .devtink-cta-card p {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.80) !important;
  margin: 0 0 8px 0 !important;
  max-width: 400px !important;
}

.devtink-cta-pill a.wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.30) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 14px 28px !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.devtink-cta-pill a.wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.50) !important;
}

@media (max-width: 782px) {
  .devtink-projects-wrapper .devtink-cta-card {
    border-radius: 16px !important;
    min-height: 380px !important;
    margin-top: 48px !important;
    width: calc(100vw - 32px) !important;
  }
  .devtink-projects-wrapper .devtink-cta-card .wp-block-cover__inner-container {
    padding: 40px 24px 40px 24px !important;
    min-height: 380px !important;
  }
  .devtink-projects-wrapper .devtink-cta-card h2 {
    font-size: 26px !important;
  }
}

/* --- FORCE LAYOUT DESKTOP PADA WP EDITOR --- */
.editor-styles-wrapper .devtink-projects-wrapper .devtink-header-cols,
.is-root-container .devtink-projects-wrapper .devtink-header-cols {
  grid-template-columns: 8fr 4fr !important;
}

.editor-styles-wrapper .devtink-projects-wrapper .devtink-bento-grid,
.is-root-container .devtink-projects-wrapper .devtink-bento-grid {
  grid-template-columns: 8fr 4fr !important;
}

.editor-styles-wrapper .devtink-projects-wrapper .devtink-bento-grid-reverse,
.is-root-container .devtink-projects-wrapper .devtink-bento-grid-reverse {
  grid-template-columns: 4fr 8fr !important;
}

.editor-styles-wrapper .devtink-projects-wrapper .bento-small-col,
.is-root-container .devtink-projects-wrapper .bento-small-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.editor-styles-wrapper .devtink-projects-wrapper .bento-small-col .small-wrapper,
.is-root-container .devtink-projects-wrapper .bento-small-col .small-wrapper {
  aspect-ratio: 1.75 !important;
  flex: 1 !important;
}

.editor-styles-wrapper .devtink-projects-wrapper .large-wrapper,
.is-root-container .devtink-projects-wrapper .large-wrapper {
  aspect-ratio: 1.4 !important;
  height: 100% !important;
}

.editor-styles-wrapper .devtink-projects-wrapper .devtink-dual-grid,
.is-root-container .devtink-projects-wrapper .devtink-dual-grid {
  grid-template-columns: 1fr 1fr !important;
}

/* --- RESPONSIVE ADJUSTMENTS (Live Website Mobile) --- */
@container devtink-container (max-width: 700px) {
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper {
    padding: 40px 24px !important;
    /* Konsisten dengan halaman About dan Services (24px) */
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wp-block-columns,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wp-block-column,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wp-block-group,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wp-block-buttons {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-header-cols {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px 0px 12px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-header-cols h1 {
    font-size: 28px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-header-cols p {
    font-size: 14px !important;
    padding-top: 0 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-bento-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 4px 0px 12px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-bento-grid .wp-block-image {
    border-radius: 16px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .large-wrapper {
    aspect-ratio: 1.4 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wp-block-image figcaption {
    font-size: 8px !important;
    padding: 4px 8px !important;
    bottom: 8px !important;
    white-space: nowrap !important;
    max-width: 90% !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .bento-small-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding-bottom: 72px !important;
  }

  /* Small wrapper mobile: image fixed height, text flows below */
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .bento-small-col .small-wrapper {
    aspect-ratio: unset !important;
    height: auto !important;
    overflow: visible !important;
    border-radius: 12px !important;
    margin-bottom: 68px !important;
  }

  /* Pin image to a fixed height, hide gradient overlay */
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .small-wrapper .wp-block-cover__image-background {
    aspect-ratio: 4/3 !important;
    height: 130px !important;
    border-radius: 12px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .small-wrapper .wp-block-cover__background {
    display: none !important;
  }

  /* Pull inner container out below the image */
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .small-wrapper .wp-block-cover__inner-container {
    position: absolute !important;
    top: 130px !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
    padding: 10px 2px 0 2px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .small-wrapper h3 {
    color: #111827 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .small-wrapper p {
    color: #6b7280 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* Large, dual, wide — kurangi padding kiri dan bawah agar selaras */
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .large-wrapper .wp-block-cover__inner-container,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .dual-wrapper .wp-block-cover__inner-container,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wide-wrapper .wp-block-cover__inner-container {
    padding: 12px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .large-wrapper h3,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .dual-wrapper h3,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wide-wrapper h3 {
    font-size: 14px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .large-wrapper p,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .dual-wrapper p,
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .wide-wrapper p {
    font-size: 13px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-centered-section {
    margin: 40px auto 20px auto !important;
    padding: 0 8px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-centered-section h2 {
    font-size: 20px !important;
    font-weight: 500 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-dual-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 4px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-dual-grid .wp-block-image {
    border-radius: 16px !important;
    aspect-ratio: 3/4 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-single-wide-section .wp-block-image {
    border-radius: 16px !important;
    margin: 0 auto !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-booking-section {
    padding: 48px 0px 24px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-booking-section h2 {
    font-size: 26px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-projects-wrapper .devtink-booking-section p {
    font-size: 14px !important;
  }
}

/* ==================== ARTICLES PAGE STYLING ==================== */
/* Gradasi Level Main Container */
.entry-content.wp-block-post-content:has(.devtink-articles-wrapper),
.entry-content:has(.devtink-articles-wrapper),
.site-content:has(.devtink-articles-wrapper),
main:has(.devtink-articles-wrapper) {
  background: linear-gradient(to bottom, #cbd5e1 0%, #e2e8f0 350px, #ffffff 800px, #ffffff 100%) !important;
}

/* Styling Utama Halaman Articles */
.devtink-articles-wrapper {
  container-type: inline-size;
  container-name: devtink-container;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0f172a;
  background: transparent !important;
  padding: 60px 32px !important;
  box-sizing: border-box;
  border-radius: 0px !important;
}

.devtink-articles-wrapper * {
  box-sizing: border-box;
}

/* 1. Header Section */
.devtink-articles-wrapper .devtink-header-cols {
  background: transparent !important;
  padding: 16px 0 48px 0 !important;
  display: grid !important;
  grid-template-columns: 8fr 4fr !important;
  gap: 40px !important;
  align-items: start !important;
}

.devtink-articles-wrapper .devtink-header-cols h1 {
  font-size: 40px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  margin: 0 !important;
  color: #0f172a !important;
}

.devtink-articles-wrapper .devtink-header-cols p {
  font-size: 16px !important;
  line-height: 1.625 !important;
  color: #475569 !important;
  margin: 0 !important;
  padding-top: 8px !important;
}

/* 2. Grid Articles */
.devtink-articles-wrapper .devtink-articles-grid {
  background: transparent !important;
  padding: 16px 0 !important;
}

.devtink-articles-wrapper .devtink-articles-grid .wp-block-post-template {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 32px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.devtink-articles-wrapper .devtink-articles-grid .wp-block-post {
  background: linear-gradient(180deg, #e2e8f0 0%, rgba(255, 255, 255, 0) 100%) !important;
  border: none !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: none !important;
}

.devtink-articles-wrapper .devtink-articles-grid .wp-block-post:hover {
  transform: translateY(-6px) !important;
}

/* Image Article */
.devtink-articles-wrapper .article-card-image {
  margin: 0 !important;
  width: 100% !important;
  overflow: hidden !important;
  aspect-ratio: 16/10 !important;
  background-color: #f8fafc !important;
}

.devtink-articles-wrapper .article-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.devtink-articles-wrapper .devtink-articles-grid .wp-block-post:hover .article-card-image img {
  transform: scale(1.04) !important;
}

/* Content Article */
.devtink-articles-wrapper .article-card-content {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

/* Date */
.devtink-articles-wrapper .wp-block-post-date {
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #9b51e0 !important;
  margin: 0 0 10px 0 !important;
}

/* Title */
.devtink-articles-wrapper .article-card-title {
  margin: 0 0 12px 0 !important;
}

.devtink-articles-wrapper .article-card-title a {
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.devtink-articles-wrapper .article-card-title a:hover {
  color: #9b51e0 !important;
}

/* Excerpt */
.devtink-articles-wrapper .article-card-excerpt {
  margin: 0 !important;
}

.devtink-articles-wrapper .article-card-excerpt p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Pagination */
.devtink-articles-wrapper .articles-pagination {
  margin: 48px auto 0 auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.devtink-articles-wrapper .articles-pagination a,
.devtink-articles-wrapper .articles-pagination span {
  padding: 10px 18px !important;
  border-radius: 9999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
}

.devtink-articles-wrapper .articles-pagination a {
  background: #f1f5f9 !important;
  color: #475569 !important;
}

.devtink-articles-wrapper .articles-pagination a:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.devtink-articles-wrapper .articles-pagination .current,
.devtink-articles-wrapper .articles-pagination .page-numbers.current {
  background: #9b51e0 !important;
  color: #ffffff !important;
}

/* 3. Booking Section */
.devtink-articles-wrapper .devtink-booking-section {
  background: transparent !important;
  padding: 100px 0 40px 0 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.devtink-articles-wrapper .devtink-booking-section h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
}

.devtink-articles-wrapper .devtink-booking-section p {
  font-size: 16px !important;
  color: #64748b !important;
  margin-bottom: 32px !important;
}

.devtink-articles-wrapper .story-cta-btn a {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #9b51e0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 16px 32px !important;
  border-radius: 9999px !important;
  border: none !important;
  transition: background-color 0.2s ease !important;
}

.devtink-articles-wrapper .story-cta-btn a:hover {
  background-color: #853fd0 !important;
}

/* --- FORCE LAYOUT DESKTOP PADA WP EDITOR --- */
.editor-styles-wrapper .devtink-articles-wrapper .devtink-header-cols,
.is-root-container .devtink-articles-wrapper .devtink-header-cols {
  grid-template-columns: 8fr 4fr !important;
}

.editor-styles-wrapper .devtink-articles-wrapper .wp-block-post-template,
.is-root-container .devtink-articles-wrapper .wp-block-post-template {
  grid-template-columns: 1fr 1fr 1fr !important;
}

/* --- RESPONSIVE ADJUSTMENTS (Live Website Mobile) --- */
@container devtink-container (max-width: 700px) {
  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper {
    padding: 40px 24px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-columns,
  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-column,
  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-group,
  :not(.editor-styles-wrapper):not(.is-root-container) .wp-block-buttons {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper .devtink-header-cols {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px 0px 12px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper .devtink-header-cols h1 {
    font-size: 28px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper .devtink-header-cols p {
    font-size: 14px !important;
    padding-top: 0 !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper .wp-block-post-template {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper .devtink-booking-section {
    padding: 48px 0px 24px 0px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper .devtink-booking-section h2 {
    font-size: 26px !important;
  }

  :not(.editor-styles-wrapper):not(.is-root-container) .devtink-articles-wrapper .devtink-booking-section p {
    font-size: 14px !important;
  }
}

/* ==================== WHAT WE INSTALL SECTION ==================== */
.devtink-what-we-install-section {
  position: relative !important;
  margin-top: 0 !important; /* Ensure no spacing between hero and this section */
  margin-bottom: 0 !important; /* Ensure no spacing between this and the section below */
  /* Starts with black to match hero, and ends with deep slate #0b1329 to connect seamlessly with Real Solutions section */
  background: linear-gradient(to bottom, #000000 0%, #060c1c 50%, #0b1329 100%) !important;
  padding: 32px 20px 140px 20px !important; /* Mobile: Increased bottom padding to 140px for smoother transition */
  box-sizing: border-box !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: 100vw !important;
}

@media (min-width: 768px) {
  .devtink-what-we-install-section {
    padding: 48px 40px 200px 40px !important; /* Tablet/Desktop: Increased bottom padding to 200px for smoother transition */
  }
}

.devtink-what-we-install-header {
  text-align: center !important;
  margin-bottom: 48px !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.devtink-what-we-install-header .devtink-eyebrow {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #9b51e0 !important; /* Web's purple highlight color instead of green */
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}

.devtink-what-we-install-header h2.wp-block-heading {
  font-size: 32px !important;
  font-weight: 600 !important;
  color: #ffffff !important; /* White text on dark section */
  letter-spacing: -0.025em !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

@media (min-width: 768px) {
  .devtink-what-we-install-header h2.wp-block-heading {
    font-size: 40px !important;
  }
}

.devtink-what-we-install-header .devtink-subheading {
  font-size: 15px !important;
  line-height: 1.625 !important;
  color: #94a3b8 !important; /* Muted slate text */
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 680px !important;
  display: block !important;
}

@media (min-width: 768px) {
  .devtink-what-we-install-header .devtink-subheading {
    font-size: 17px !important;
  }
}

/* 2x2 Grid Layout */
.devtink-install-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .devtink-install-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
}

/* Card Styling: Premium Glassmorphic */
.devtink-install-card {
  position: relative !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.devtink-install-card:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(155, 81, 224, 0.3) !important; /* Purple hover border glow */
  transform: translateY(-4px) !important;
}

/* Icon Container: Web Purple Style */
.devtink-install-card .devtink-icon-container {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background-color: rgba(155, 81, 224, 0.1) !important;
  border: 1px solid rgba(155, 81, 224, 0.2) !important;
  margin-bottom: 24px !important;
  color: #9b51e0 !important;
  transition: all 0.3s ease !important;
}

.devtink-install-card:hover .devtink-icon-container {
  background-color: #9b51e0 !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
}

.devtink-install-card:hover .devtink-icon-container .devtink-icon {
  stroke: #ffffff !important;
}

.devtink-icon-container .devtink-icon {
  width: 24px !important;
  height: 24px !important;
}

.devtink-install-card h3.wp-block-heading {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.devtink-install-card p {
  font-size: 14px !important;
  line-height: 1.625 !important;
  color: #cbd5e1 !important; /* Slate-300 color for body text */
  margin: 0 0 24px 0 !important;
  text-align: left !important;
}

/* Tech Tags Capsules - Borderless Frosted Glass */
.devtink-tech-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: auto !important; /* Push tags to bottom of card */
}

.devtink-tag {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: none !important;
  padding: 4px 12px !important;
  border-radius: 9999px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.devtink-install-card:hover .devtink-tag {
  background-color: rgba(155, 81, 224, 0.2) !important;
  color: #ffffff !important;
}

/* ==================== SERVICE PAGE HERO & MODULES ==================== */
.devtink-service-modules-section .devtink-hero-eyebrow {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #9b51e0 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.devtink-service-modules-section .devtink-hero-title {
  font-size: 28px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  margin: 0 auto 20px auto !important;
  color: #ffffff !important;
  max-width: 900px !important;
  text-align: center !important;
  width: 100% !important;
}

.devtink-service-modules-section .devtink-hero-description {
  font-size: 16px !important;
  line-height: 1.625 !important;
  color: #cbd5e1 !important;
  margin: 0 auto !important;
  max-width: 680px !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

.devtink-service-modules-section {
  width: 100vw !important;
  max-width: 100vw !important;
  /* Include the horizontal padding inside the 100vw width. Without this the
     default content-box sizing adds the padding on top of 100vw, making the
     section ~150px wider than the viewport and pushing a blank strip off the
     right edge (visible as excess right padding on the sections below). */
  box-sizing: border-box !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: linear-gradient(to bottom, #000000 0%, #0b1329 80%, #ffffff 100%) !important;
  padding: 120px max(32px, 6%) 80px max(32px, 6%) !important;
  color: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.devtink-service-module-row {
  max-width: 1200px !important;
  width: 100% !important;
  margin-bottom: 80px !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 64px !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
}

.devtink-service-module-row:last-child {
  margin-bottom: 0 !important;
}

.devtink-service-module-row > .wp-block-column {
  flex: 1 !important;
  width: 50% !important;
  max-width: 50% !important;
}

/* Wrap figure in relative container via the wp-block-column parent */
.devtink-service-module-row .wp-block-column:has(.devtink-module-image) {
  position: relative !important;
}

.devtink-module-image {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.devtink-module-image img {
  border-radius: 24px !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4/3 !important;
  object-fit: cover !important;
  box-shadow: none !important;
  border: none !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

.devtink-module-image img:hover {
  transform: translateY(-5px) !important;
  box-shadow: none !important;
}

/* Frosted glass badge centered at the bottom of the image */
.devtink-module-badge {
  position: absolute !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 6px 20px !important;
  border-radius: 100px !important;
  border: none !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}

.devtink-module-content {
  padding: 40px 0 !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
}

/* DOM order: icon-container, eyebrow, h2, p, features-list
   Desired visual order: eyebrow (1), [icon + h2] (2), p (3), features (4)
   Use flex order to reposition icon next to h2 */
.devtink-module-content .devtink-icon-container {
  order: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 0 0 !important;
  align-self: flex-start !important;
  /* Pull icon up to overlap with h2 row using negative margin */
  margin-bottom: -40px !important;
}

/* eyebrow moved into image — no longer in module-content */

/* h2: left padding makes room for the icon that overlaps from above */
.devtink-module-content h2,
.devtink-module-content h2.wp-block-heading {
  order: 3 !important;
  padding-left: 52px !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.devtink-module-content > p {
  order: 4 !important;
}

.devtink-module-content .devtink-features-list {
  order: 5 !important;
}

.devtink-icon-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(155, 81, 224, 0.18) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  border: none !important;
  flex-shrink: 0 !important;
  margin-bottom: 0 !important;
}

.devtink-icon {
  width: 28px !important;
  height: 28px !important;
  stroke: #9b51e0 !important;
}

.devtink-service-modules-section .devtink-eyebrow {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #9b51e0 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  margin: 0 !important;
  /* Grid placement: eyebrow shares row with icon (col 2) */
  grid-column: 2 !important;
  align-self: center !important;
  display: block !important;
}

.devtink-module-content h2,
.devtink-module-content h2.wp-block-heading {
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: -0.025em !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

.devtink-module-content p {
  font-size: 16px !important;
  line-height: 1.625 !important;
  color: #cbd5e1 !important;
  margin-bottom: 32px !important;
  text-align: left !important;
}

.devtink-features-list {
  display: flex !important;
  gap: 24px !important;
  text-align: left !important;
}

.devtink-feature-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  flex: 1 !important;
}

.devtink-feature-item {
  position: relative !important;
  padding-left: 24px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #e2e8f0 !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

.devtink-feature-item::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0px !important;
  color: #9b51e0 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

/* Dark style text for Central Integration module to contrast with light gradient background */
.devtink-central-integration-row .devtink-module-content h2,
.devtink-central-integration-row .devtink-module-content h2.wp-block-heading {
  color: #0f172a !important;
}

.devtink-central-integration-row .devtink-module-content p {
  color: #334155 !important;
}

.devtink-central-integration-row .devtink-feature-item {
  color: #1e293b !important;
}

.devtink-central-integration-row .devtink-icon-container {
  background-color: rgba(107, 33, 168, 0.18) !important;
}

.devtink-central-integration-row .devtink-icon {
  stroke: #6b21a8 !important;
}

@media (max-width: 782px) {
  /* ── Unified 24px horizontal padding on mobile for all three service sections ── */

  /* Hero (WHAT WE DO) */
  .devtink-services-wrapper.devtink-services-hero {
    padding: 72px 24px 56px 24px !important;
  }

  /* Modules section (Climate Control etc) */
  .devtink-service-modules-section {
    padding: 90px 24px 60px 24px !important;
  }

  /* Lower section (Our Process → bottom) */
  .devtink-services-wrapper.devtink-services-lower {
    padding: 56px 24px 48px 24px !important;
  }

  /* ── Inner resets so WordPress block margins don't add extra horizontal space ── */
  .devtink-service-modules-section .devtink-hero-eyebrow,
  .devtink-service-modules-section .devtink-hero-title,
  .devtink-service-modules-section .devtink-hero-description {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .devtink-service-module-row {
    margin-bottom: 60px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 32px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
  .devtink-service-module-row > .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }

  /* Image always on top, text always below — regardless of DOM order */
  .devtink-service-module-row > .wp-block-column:has(.devtink-module-image) {
    order: -1 !important;
  }
  .devtink-service-module-row > .devtink-module-content {
    order: 1 !important;
  }
  .devtink-module-content {
    padding: 24px 0 !important;
  }
  .devtink-features-list {
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Process grid stacks to 1 column */
  .devtink-services-lower .devtink-process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
  }
  .devtink-services-lower .process-stack-col {
    gap: 16px !important;
  }
  .devtink-services-lower .devtink-process-grid .wp-block-image {
    border-radius: 24px !important;
    aspect-ratio: 1 !important;
  }
  .devtink-services-lower .devtink-process-grid .wp-block-image::before {
    top: 12px !important;
    left: 16px !important;
    font-size: 11px !important;
    padding: 4px 10px !important;
  }
  .devtink-services-lower .wp-block-image figcaption {
    font-size: 8px !important;
    padding: 4px 8px !important;
    bottom: 8px !important;
    white-space: nowrap !important;
    max-width: 90% !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
  }

  /* Centered heading */
  .devtink-services-lower .devtink-centered-section {
    margin: 40px auto 20px auto !important;
    padding: 0 !important;
  }
  .devtink-services-lower .devtink-centered-section h2 {
    font-size: 20px !important;
    font-weight: 500 !important;
  }

  /* Benefits grid stacks */
  .devtink-services-lower .devtink-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .devtink-services-lower .devtink-benefits-grid .wp-block-column {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  /* Discover grid stacks */
  .devtink-services-lower .devtink-discover-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px 0 !important;
    margin-top: 40px !important;
  }
  .devtink-services-lower .devtink-discover-grid .wp-block-image {
    border-radius: 24px !important;
    aspect-ratio: 1 !important;
  }
  .devtink-services-lower .discover-content h1,
  .devtink-services-lower .discover-content h2 {
    font-size: 22px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
  }
  .devtink-services-lower .discover-content p {
    font-size: 14px !important;
    margin-bottom: 24px !important;
  }

  /* Booking section */
  .devtink-services-lower .devtink-booking-section {
    padding: 48px 0 24px 0 !important;
  }
  .devtink-services-lower .devtink-booking-section h2 {
    font-size: 26px !important;
  }
}

/* ==================== CONTACT PAGE ==================== */

.devtink-contact-page {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  padding: 60px max(32px, 6%) !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.devtink-contact-page > .wp-block-heading,
.devtink-contact-page > .wp-block-paragraph {
  max-width: 100% !important;
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.devtink-contact-page h1.wp-block-heading {
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

.devtink-contact-page > .wp-block-paragraph {
  font-size: 16px !important;
  color: #6b7280 !important;
  margin: 0 0 40px 0 !important;
  line-height: 1.6 !important;
  max-width: 560px !important;
}

/* ── Two-column grid ── */
.ez-contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ez-contact-left,
.ez-contact-right {
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
}

/* ── Section titles inside html block ── */
.ez-section-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.2 !important;
  font-family: inherit !important;
}

.ez-section-desc {
  font-size: 14px !important;
  color: #6b7280 !important;
  margin: 0 0 24px 0 !important;
  line-height: 1.5 !important;
  font-family: inherit !important;
}

/* ── Contact cards ── */
.ez-cards-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.ez-card-link {
  display: flex !important;
  gap: 16px !important;
  padding: 18px !important;
  border-radius: 16px !important;
  background-color: #f8fafc !important;
  text-decoration: none !important;
  color: #111827 !important;
  transition: background-color 0.2s ease !important;
  box-sizing: border-box !important;
  align-items: center !important;
  border: none !important;
  width: 100% !important;
}

.ez-card-link:not(.ez-card-static):hover {
  background-color: #f1f5f9 !important;
}

.ez-card-static {
  cursor: default !important;
}

.ez-card-icon {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  background-color: #f1f5f9 !important;
  color: #374151 !important;
  flex-shrink: 0 !important;
}

.ez-card-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  text-align: left !important;
}

.ez-card-title {
  display: block !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.2 !important;
  font-family: inherit !important;
}

.ez-card-sub {
  display: block !important;
  font-size: 13px !important;
  color: #6b7280 !important;
  line-height: 1.4 !important;
  font-family: inherit !important;
}

.ez-card-cta {
  display: block !important;
  font-size: 12px !important;
  color: #9b51e0 !important;
  font-weight: 600 !important;
  margin-top: 2px !important;
  font-family: inherit !important;
}

/* ── Form ── */
.ez-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ez-form-row {
  display: flex !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ez-form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ez-label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin: 0 !important;
  font-family: inherit !important;
}

.ez-field-input,
.ez-field-textarea {
  display: block !important;
  width: 100% !important;
  background-color: #f1f5f9 !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  border: 1px solid transparent !important;
  outline: none !important;
  color: #111827 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  box-shadow: none !important;
  font-family: inherit !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.ez-field-input:focus,
.ez-field-textarea:focus {
  background-color: #ffffff !important;
  border-color: #9b51e0 !important;
  outline: none !important;
}

.ez-field-textarea {
  resize: none !important;
  height: 110px !important;
}

.ez-radio-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  width: 100% !important;
}

.ez-radio-wrapper {
  cursor: pointer !important;
  display: block !important;
  margin: 0 !important;
}

.ez-radio-wrapper input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.ez-radio-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 11px 8px !important;
  border-radius: 12px !important;
  text-align: center !important;
  background-color: #f1f5f9 !important;
  color: #4b5563 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: all 0.15s ease !important;
  font-family: inherit !important;
  cursor: pointer !important;
  border: 1.5px solid transparent !important;
}

.ez-radio-btn.ez-radio-active {
  background-color: rgba(243, 232, 255, 0.6) !important;
  color: #9b51e0 !important;
  font-weight: 600 !important;
  border-color: rgba(155, 81, 224, 0.3) !important;
}

.ez-radio-wrapper:hover .ez-radio-btn:not(.ez-radio-active) {
  background-color: #e9eef5 !important;
}

.ez-btn-submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  border-radius: 9999px !important;
  background-color: #9b51e0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 15px 24px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
  box-shadow: none !important;
  font-family: inherit !important;
  margin-top: 4px !important;
  -webkit-appearance: none !important;
}

.ez-btn-submit:hover {
  background-color: #853fd0 !important;
}

@media (max-width: 782px) {
  .devtink-contact-page {
    padding: 40px 24px !important;
  }
  .devtink-contact-page h1.wp-block-heading {
    font-size: 28px !important;
  }
  .devtink-contact-page > .wp-block-paragraph {
    margin-bottom: 28px !important;
  }
  .ez-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .ez-form-row {
    flex-direction: column !important;
    gap: 16px !important;
  }
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */

.devtink-wa-fab {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background-color: #25d366 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 14px 20px 14px 16px !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40), 0 2px 8px rgba(0,0,0,0.15) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.3s ease !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  max-width: 220px !important;
}

.devtink-wa-fab:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50), 0 4px 12px rgba(0,0,0,0.15) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.devtink-wa-fab svg {
  flex-shrink: 0 !important;
  display: block !important;
  color: #ffffff !important;
  fill: #ffffff !important;
}

.devtink-wa-fab-label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

@media (max-width: 782px) {
  .devtink-wa-fab {
    bottom: 20px !important;
    right: 20px !important;
    padding: 14px !important;
    max-width: 56px !important;
  }
  .devtink-wa-fab-label {
    display: none !important;
  }
}