/* =========================================================
   MAIN STYLESHEET
   Organized by section/function. Duplicate selectors merged.
========================================================= */


/* =========================================================
   VARIABLES & THEME
========================================================= */

:root {
  --primary: #5b5df0;
  --primary-dark: #4345d8;
  --secondary: #21c7d9;
  --accent: #ffb84d;
  --bg: #ffffff;
  --bg-soft: #f7f9ff;
  --card: #ffffff;
  --text: #18202f;
  --muted: #667085;
  --border: #e4e7ec;
  --shadow: 0 20px 60px rgba(46, 61, 125, 0.12);
  --radius: 10px;
  --surface: #fff;
  --surface-soft: #f5f6f8;
  --surface-raised: #fff;
  --footer-bg: #f4f5f7;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --article-text: #344054;
  --shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.06);
}

html[data-theme="dark"] {
  --bg: #101318;
  --bg-soft: #171b22;
  --surface: #14181e;
  --surface-soft: #1b2028;
  --surface-raised: #1c2129;
  --card: #171b22;
  --text: #f2f4f7;
  --muted: #aab2c0;
  --border: #303641;
  --footer-bg: #171b22;
  --nav-bg: rgba(16, 19, 24, 0.94);
  --article-text: #d0d5dd;
  --shadow-sm: none;
}

html[data-theme="dark"] .theme-icon-dark {
  display: none;
}

html[data-theme="dark"] .theme-icon-light {
  display: inline;
}

html[data-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(180%);
}

html[data-theme="dark"] .hero {
  background: radial-gradient(
      circle at 10% 20%,
      rgba(33, 199, 217, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(123, 92, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(180deg, #101318, #141922);
}

html[data-theme="dark"] .hero-badge,
html[data-theme="dark"] .float-card,
html[data-theme="dark"] .stats-box,
html[data-theme="dark"] .why-content-card,
html[data-theme="dark"] .seo-chart,
html[data-theme="dark"] .desktop-navigation .submenu,
html[data-theme="dark"] .portfolio-btn {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

html[data-theme="dark"] .desktop-navigation .submenu .nav-link:hover {
  background: var(--surface-soft);
}

html[data-theme="dark"] .form-control {
  color: var(--text);
  background-color: var(--surface);
  border-color: var(--border);
}

html[data-theme="dark"] .form-control::placeholder {
  color: var(--muted);
}

html[data-theme="dark"] .accordion-button::after {
  filter: invert(1);
}


/* =========================================================
   BASE & GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background-color 0.2s,
    color 0.2s;
  min-width: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
  height: auto;
}


/* =========================================================
   COMMON UTILITIES
========================================================= */

.section-padding {
  padding: 95px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.text-muted-custom {
  color: var(--muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border-radius: 0;
  color: var(--primary);
  background: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(90deg, #0d6efd, #6f5cff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
}

.btn-primary-custom {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #7b5cff);
  border: none;
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(91, 93, 240, 0.25);
}

.btn-close {
  filter: none;
}


/* =========================================================
   NAVBAR & NAVIGATION
========================================================= */

.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 16px 0;
  transition: 0.3s ease;
}

.main-navbar.scrolled {
  padding: 9px 0;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  box-shadow: none;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-size: 1.25rem;
}

.nav-link {
  color: var(--text) !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 13px !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.nav-icon {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3fb;
  color: var(--text);
  font-size: 1.1rem;
}

.nav-item {
  position: relative;
}

.submenu .submenu {
  top: 0;
  left: 100%;
  margin-left: 2px;
}

.submenu .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  white-space: nowrap;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list .mobile-menu-list {
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.mobile-menu-list .mobile-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  color: var(--text);
  background: none;
  border: 0;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.desktop-navigation .nav-item {
  position: relative;
}

.desktop-navigation .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1080;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(42, 55, 110, 0.14);
  transition: 0.2s ease;
}

.desktop-navigation .nav-item:hover > .submenu,
.desktop-navigation .nav-item:focus-within > .submenu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.desktop-navigation .submenu .nav-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 9px;
  white-space: nowrap;
}

.desktop-navigation .submenu .nav-link:hover {
  background: var(--bg-soft);
}

.desktop-navigation .submenu .submenu {
  top: 0;
  left: calc(100% + 8px);
}

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

.theme-toggle,
.nav-icon {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.05rem;
}

.theme-toggle:hover,
.nav-icon:hover {
  color: var(--primary);
  background: var(--surface-soft);
}

.theme-icon-light {
  display: none;
}

.offcanvas.mobile-offcanvas {
  top: 0 !important;
  bottom: 0 !important;
  height: 100dvh !important;
  z-index: 1100;
  background: var(--surface);
  color: var(--text);
  border: 0;
}

.offcanvas-backdrop {
  z-index: 1040;
}

.offcanvas-header {
  min-height: 76px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.offcanvas-header strong,
.offcanvas-eyebrow {
  display: block;
}

.offcanvas-eyebrow {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offcanvas-body {
  padding: 12px 20px 28px;
  overflow-y: auto;
}

body.offcanvas-open,
body:has(.offcanvas.show) {
  overflow: hidden !important;
  padding-right: 0 !important;
}

.nav-actions,
.article-byline,
.author-box,
.publish-info,
.reading-toolbar,
.share-list {
  min-width: 0;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  padding: 90px 0 70px;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(13, 110, 253, 0.08),
      transparent 30%
    ),
    radial-gradient(circle at 85% 30%, rgba(111, 92, 255, 0.1), transparent 32%);
}

.hero-badge {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-primary);
  background: rgba(13, 110, 253, 0.08);
  border-radius: 8px;
}

.hero-title {
  max-width: 700px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.hero-desc {
  max-width: 650px;
  font-size: 17px;
  line-height: 29px;
  color: var(--bs-secondary-color);
}

.hero-feature {
  height: 100%;
}

.hero-feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--bs-primary);
  font-size: 21px;
}

.hero-feature span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-body-color);
}

.hero-visual {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 580px;
  object-fit: contain;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.1);
  filter: blur(70px);
}

.hero-floating {
  position: absolute;
  z-index: 3;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
}

.hero-floating i {
  font-size: 20px;
  color: var(--bs-primary);
}

.hero-floating small {
  display: block;
  font-size: 11px;
  color: var(--bs-secondary-color);
}

.hero-floating strong {
  display: block;
  font-size: 13px;
}

.hero-floating-top {
  top: 55px;
  left: 10px;
}

.hero-floating-bottom {
  right: 0;
  bottom: 80px;
}

.float-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.float-card.one {
  left: -35px;
  top: 110px;
}

.float-card.two {
  right: -30px;
  bottom: 90px;
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 93, 240, 0.09);
  color: var(--primary);
  font-size: 1.2rem;
}


/* =========================================================
   STATS
========================================================= */

.stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.stats-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  color: var(--muted);
  font-size: 0.8rem;
}


/* =========================================================
   SERVICES
========================================================= */

.service-intro {
  max-width: 650px;
  font-size: 16px;
  line-height: 27px;
}

.service-card-new {
  overflow: hidden;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
  transition: border-color 0.25s ease,
    transform 0.25s ease;
}

.service-card-new:hover {
  border-color: rgba(13, 110, 253, 0.45);
  transform: translateY(-4px);
}

.service-thumb {
  overflow: hidden;
}

.service-thumb img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card-new:hover .service-thumb img {
  transform: scale(1.025);
}

.service-icon-new {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 24px 24px 0;
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--bs-primary);
  font-size: 26px;
}

.service-body {
  padding: 24px;
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.service-arrow {
  font-size: 20px;
  color: var(--bs-secondary-color);
  transition: transform 0.25s ease,
    color 0.25s ease;
}

.service-card-new:hover .service-arrow {
  color: var(--bs-primary);
  transform: translate(2px, -2px);
}

.service-title-new {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 29px;
  font-weight: 700;
}

.service-description {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
  color: var(--bs-secondary-color);
}

.service-feature-list {
  display: grid;
  gap: 9px;
}

.service-feature-list li {
  font-size: 14px;
  line-height: 21px;
  color: var(--bs-secondary-color);
}

.service-feature-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--bs-success);
  font-size: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-primary);
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.accordion-item,
.service-card,
.process-card,
.testimonial-card,
.seo-chart {
  background: var(--surface);
  border-color: var(--border);
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-visual {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-image {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.why-highlight {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 330px;
  padding: 16px 18px;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
}

.why-highlight-number {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: var(--bs-primary);
}

.why-description {
  max-width: 650px;
  font-size: 16px;
  line-height: 27px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
}

.why-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: rgba(13, 110, 253, 0.08);
  color: var(--bs-primary);
  border-radius: 10px;
  font-size: 21px;
}

.why-item-title {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.why-item-desc {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--bs-secondary-color);
}

.seo-box,
.seo-chart,
.why-visual,
.portfolio-card,
.blog-card,
.article-detail,
.article-body {
  min-width: 0;
  max-width: 100%;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-intro {
  max-width: 680px;
  font-size: 16px;
  line-height: 27px;
}

.portfolio-card-new {
  overflow: hidden;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
  transition: transform 0.25s ease,
    border-color 0.25s ease;
}

.portfolio-card-new:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 110, 253, 0.4);
}

.portfolio-thumb {
  overflow: hidden;
  background: var(--bs-tertiary-bg);
}

.portfolio-thumb img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-card-new:hover .portfolio-thumb img {
  transform: scale(1.025);
}

.portfolio-no-image {
  height: 250px;
  display: grid;
  place-items: center;
  background: var(--bs-tertiary-bg);
  color: var(--bs-secondary-color);
  font-size: 42px;
}

.portfolio-body {
  padding: 22px 24px 24px;
}

.portfolio-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.portfolio-title-new {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.portfolio-open {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bs-border-color);
  border-radius: 50%;
  color: var(--bs-body-color);
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.portfolio-open:hover {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  transform: translate(2px, -2px);
}

.portfolio-empty i {
  font-size: 42px;
  color: var(--bs-secondary-color);
}


/* =========================================================
   PROCESS
========================================================= */

.process-card {
  position: relative;
  padding: 28px;
  height: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
}

.process-number {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.process-card h4 {
  font-size: 1rem;
  font-weight: 800;
}

.process-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 0;
}


/* =========================================================
   BLOG
========================================================= */

.blog-intro {
  max-width: 680px;
  font-size: 16px;
  line-height: 27px;
}

.blog-card-new {
  overflow: hidden;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
  transition: transform 0.25s ease,
    border-color 0.25s ease;
}

.blog-card-new:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 110, 253, 0.4);
}

.blog-thumb {
  overflow: hidden;
}

.blog-thumb img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card-new:hover .blog-thumb img {
  transform: scale(1.03);
}

.blog-body {
  padding: 24px;
}

.blog-meta-new {
  font-size: 12px;
  color: var(--bs-secondary-color);
}

.blog-title-new {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 29px;
  font-weight: 700;
}

.blog-title-new a {
  transition: color 0.2s ease;
}

.blog-title-new a:hover {
  color: var(--bs-primary) !important;
}

.blog-excerpt-new {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
  color: var(--bs-secondary-color);
}

.blog-read-more-new {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-primary);
  text-decoration: none;
}

.blog-read-more-new:hover {
  text-decoration: underline;
}

.blog-empty i {
  font-size: 42px;
  color: var(--bs-secondary-color);
}

.blog-page {
  padding-top: 130px;
  padding-bottom: 80px;
}

.blog-hero-compact {
  margin-bottom: 36px;
  padding: 0;
  border-radius: 0;
  background: none;
}

.blog-search {
  max-width: 680px;
  width: 100%;
  display: flex;
}

.blog-search .form-control {
  min-height: 48px;
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
  border-radius: 8px 0 0 8px;
  min-width: 0;
}

.blog-search .btn {
  display: flex;
  align-items: center;
  padding-inline: 24px;
  border-radius: 0 8px 8px 0;
  flex: 0 0 auto;
}

.blog-pagination {
  margin-top: 42px;
}

.blog-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-card:hover {
  transform: none;
  box-shadow: none;
}

.blog-image {
  border-radius: 8px;
}

.blog-card:hover .blog-image img {
  transform: scale(1.025);
}

.blog-content {
  padding: 20px 0 0;
}

.blog-meta {
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.14rem;
  line-height: 1.42;
}

.blog-excerpt {
  font-size: 0.9rem;
}

.blog-read-more,
.blog-all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-read-more i,
.blog-all-link i {
  transition: transform 0.2s;
}

.blog-read-more:hover i,
.blog-all-link:hover i {
  transform: translateX(4px);
}

.blog-page-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.blog-page-heading h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.blog-page-heading p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.75;
}

.blog-list-title {
  margin-bottom: 28px;
  font-size: 1.45rem;
  font-weight: 800;
}

.section-title,
.detail-title,
.blog-title,
.popular-title {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}


/* =========================================================
   CTA
========================================================= */

.cta-box-new {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background: linear-gradient(135deg, #0d6efd, #5947d8);
  color: #fff;
  border-radius: 12px;
}

.cta-box-new::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-box-new > .row {
  position: relative;
  z-index: 2;
}

.cta-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.cta-title {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
}

.cta-title span {
  color: #dce8ff;
}

.cta-description {
  max-width: 680px;
  font-size: 16px;
  line-height: 27px;
  opacity: 0.85;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 55px;
  border-radius: 30px;
  color: #fff;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #5759ee, #865cff);
}

.btn,
.cta-box .btn,
.seo-content .btn {
  white-space: normal;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-card {
  height: 100%;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
}

.stars {
  color: #fbbf24;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.88rem;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef1ff;
  color: var(--primary);
  font-weight: 800;
}


/* =========================================================
   FAQ
========================================================= */

.accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
}

.accordion-button {
  padding: 20px;
  font-weight: 800;
  color: var(--text);
  box-shadow: none !important;
  background: var(--surface);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--surface-soft);
}

.accordion-body {
  color: var(--muted);
  line-height: 1.8;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-card {
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
}

.pricing-card-featured {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 4%, var(--bs-body-bg));
}

.pricing-name {
  font-size: 1rem;
  font-weight: 800;
}

.pricing-price {
  color: var(--bs-emphasis-color);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-check {
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 800;
}

.pricing-card li {
  color: var(--bs-secondary-color);
  font-size: 0.9rem;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  padding: 70px 0 90px;
  background: #11162a;
  color: #fff;
}

footer p,
footer a {
  color: #9aa4bd;
}

footer a:hover {
  color: #fff;
}

.wa-footer {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 10px;
  background: #f5f5f5;
}

.site-footer {
  padding: 64px 0 32px;
  background: var(--footer-bg);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.site-footer p,
.site-footer a,
.footer-copyright {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-divider {
  border-color: var(--border) !important;
  opacity: 1;
}


/* =========================================================
   WHATSAPP
========================================================= */

.wa-floating {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1080;
}

.wa-main {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25d366;
  font-size: 1.8rem;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.4);
}

.wa-chat {
  position: absolute;
  right: 0;
  bottom: 75px;
  width: min(350px, calc(100vw - 32px));
  max-width: calc(100vw - 35px);
  display: none;
  overflow: hidden;
  border-radius: 18px;
  background: #efeae2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.wa-chat.show {
  display: block;
  animation: waShow 0.25s ease;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: #fff;
  background: #075e54;
}

.wa-avatar {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #075e54;
  font-weight: 800;
}

.wa-info {
  flex: 1;
}

.wa-info strong {
  display: block;
  font-size: 0.87rem;
}

.wa-info small {
  opacity: 0.8;
  font-size: 0.68rem;
}

.wa-body {
  min-height: 220px;
  padding: 20px 15px;
}

.wa-bubble {
  position: relative;
  max-width: 88%;
  padding: 11px 12px 18px;
  border-radius: 0 10px 10px 10px;
  background: #fff;
  color: #222;
  font-size: 0.79rem;
  line-height: 1.55;
}

.wa-time {
  position: absolute;
  bottom: 3px;
  right: 7px;
  font-size: 0.58rem;
  color: #aaa;
}

.wa-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.wa-send {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: none;
  border-radius: 50%;
  color: #fff;
  background: #075e54;
}


/* =========================================================
   ANIMATION
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.7s ease;
}

.revealed {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}


/* =========================================================
   CONTENT & EDITORIAL
========================================================= */

.content-page {
  padding-top: 120px;
}

.content-page .article-detail {
  max-width: 880px;
  margin-inline: auto;
}

.content-page .article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.content-page .article-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.content-page .article-header {
  margin-bottom: 2rem;
}

.content-page .detail-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.content-page .article-figure {
  margin: 0 0 2rem;
}

.content-page .article-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
}

.content-page .article-caption,
.content-page .article-body figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
}

.content-page .article-body {
  font-size: 1.075rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.content-page .article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.content-page .article-body figure {
  margin: 2rem 0;
}

.content-page .article-body h2,
.content-page .article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.content-page .content-extra {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.content-page .content-related {
  margin-top: 1rem;
}

.content-page .content-related.section-soft {
  padding-inline: 1.5rem;
  border-radius: 8px;
}

.pagination {
  gap: 6px;
}

.pagination .page-link {
  border-radius: 9px !important;
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

.post-page {
  padding: 130px 0 90px;
  background: linear-gradient(180deg, var(--surface-soft), var(--bg) 320px);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
  font-size: 0.84rem;
}

.article-header {
  margin-bottom: 28px;
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.author-box,
.publish-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.author-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-initial {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 800;
}

.author-name,
.author-role,
.publish-label,
.publish-date {
  display: block;
}

.author-name {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.author-role,
.publish-label {
  color: var(--muted);
  font-size: 0.7rem;
}

.publish-date {
  font-size: 0.78rem;
  font-weight: 700;
}

.article-figure {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 8px;
  box-shadow: none;
}

.article-main-image {
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-caption {
  padding: 10px 16px;
  color: var(--muted);
  font-size: 0.76rem;
}

.reading-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.font-size-btn {
  padding: 6px 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text);
}

.font-size-btn.active {
  color: var(--primary);
  background: rgba(91, 93, 240, 0.09);
}

.article-body {
  color: var(--article-text);
  font-size: 1.08rem;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.article-category {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(91, 93, 240, 0.09);
  font-size: 0.72rem;
  font-weight: 800;
}

.article-share,
.related-news {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.share-btn {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  object-fit: cover;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.popular-widget {
  padding: 0 0 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-left: 1px solid var(--border);
}

.popular-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.popular-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.popular-number {
  color: rgba(91, 93, 240, 0.35);
  font-size: 1.15rem;
  font-weight: 800;
}

.popular-title {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.popular-views {
  color: var(--muted);
  font-size: 0.7rem;
  display: block;
  margin-top: 5px;
}

.article-detail {
  min-width: 0;
}

.article-breadcrumb,
.article-breadcrumb a {
  color: var(--muted);
}

.article-breadcrumb a:hover {
  color: var(--primary);
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 2.15em 0 0.75em;
  color: var(--text);
  font-weight: 800;
  line-height: 1.3;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-bottom: 1.35em;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 2px 0 2px 22px;
  border-left: 4px solid var(--primary);
  color: var(--text);
  font-size: 1.12em;
}

.article-body table {
  display: block;
  width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 12px 14px;
  border: 1px solid var(--border);
}

.article-body th {
  background: var(--surface-soft);
  color: var(--text);
}

.share-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.copy-feedback {
  display: none;
}

.copy-link.copied .copy-label {
  display: none;
}

.copy-link.copied .copy-feedback {
  display: inline;
}

.popular-widget .section-title,
.widget-title {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 800;
}

.article-body.font-small {
  font-size: 0.96rem;
}

.article-body.font-normal {
  font-size: 1.08rem;
}

.article-body.font-big {
  font-size: 1.22rem;
}


/* =========================================================
   MISCELLANEOUS
========================================================= */

.empty-service-icon {
  font-size: 42px;
  color: var(--bs-secondary-color);
}

.mobile-link {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.detail-title {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.mobile-offcanvas {
  width: min(360px, 100%);
  max-width: 100%;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes waShow {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .hero {
    padding: 150px 0 110px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(42px, 8vw, 60px);
  }

  .hero-desc {
    font-size: 16px;
    line-height: 27px;
  }

  .hero-visual {
    max-width: 560px;
    margin-top: 30px;
    min-height: 480px;
  }

  .hero-image {
    max-height: 480px;
  }

  .service-thumb img {
    height: 220px;
  }

  .why-visual {
    max-width: 650px;
  }

  .why-image {
    min-height: auto;
  }

  .why-highlight {
    right: 20px;
    bottom: 20px;
  }

  .portfolio-thumb img,
  .portfolio-no-image {
    height: 230px;
  }

  .blog-thumb img {
    height: 220px;
  }

  .cta-box-new {
    padding: 40px;
  }

  .float-card.one {
    left: 0;
  }

  .float-card.two {
    right: 0;
  }

  .seo-content {
    padding: 40px;
  }

  .offcanvas {
    max-width: min(88vw, 360px);
  }

  .desktop-navigation .submenu {
    display: none;
  }

  .sidebar {
    position: static;
  }

  .popular-widget {
    margin-top: 16px;
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .main-navbar {
    z-index: 1030;
  }

  .desktop-navigation {
    display: none;
  }

}

@media (max-width: 575.98px) {

  .hero {
    padding: 50px 0 40px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-feature-icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .hero-image {
    max-height: 420px;
  }

  .service-body {
    padding: 20px;
  }

  .service-thumb img {
    height: 210px;
  }

  .service-title-new {
    font-size: 20px;
    line-height: 27px;
  }

  .service-icon-new {
    margin: 20px 20px 0;
  }

  .why-image {
    border-radius: 10px;
  }

  .why-highlight {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    max-width: 100%;
  }

  .why-highlight-number {
    font-size: 26px;
  }

  #portfolio {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  #portfolio .mb-5 {
    margin-bottom: 32px !important;
  }

  .portfolio-intro {
    font-size: 15px;
    line-height: 25px;
  }

  .portfolio-thumb img,
  .portfolio-no-image {
    height: 220px;
  }

  .portfolio-body {
    padding: 18px 18px 20px;
  }

  .portfolio-title-new {
    font-size: 18px;
    line-height: 25px;
  }

  .portfolio-open {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .blog-body {
    padding: 20px;
  }

  .blog-thumb img {
    height: 210px;
  }

  .blog-title-new {
    font-size: 20px;
    line-height: 27px;
  }

  .cta-box-new {
    padding: 30px 22px;
    border-radius: 10px;
  }

  .cta-title {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.1;
  }

  .cta-description {
    font-size: 15px;
    line-height: 25px;
  }

}

@media (max-width: 375px) {

  .portfolio-thumb img,
  .portfolio-no-image {
    height: 195px;
  }

  .portfolio-body {
    padding: 16px;
  }

  .portfolio-title-new {
    font-size: 17px;
    line-height: 24px;
  }

}

@media (max-width: 767.98px) {

  body {
    padding-bottom: 0;
  }

  .section-padding {
    padding: 64px 0;
  }

  .float-card {
    display: none !important;
  }

  .stats-wrap {
    margin-top: -20px;
    width: 100%;
  }

  .why-visual {
    min-height: 400px;
    width: 100%;
  }

  .why-content-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
    max-width: calc(100% - 36px);
  }

  .seo-content {
    padding: 32px 25px;
  }

  .seo-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-box {
    padding: 32px 20px;
    width: 100%;
    border-radius: 14px;
  }

  .content-page {
    padding-top: 96px;
  }

  .content-page .detail-title {
    font-size: 2rem;
  }

  .content-page .article-body {
    font-size: 1rem;
    line-height: 1.75;
  }

  .content-page .content-related.section-soft {
    padding-inline: 0.75rem;
  }

  .blog-page {
    padding-top: 105px;
  }

  .post-page {
    padding: 100px 0 65px;
  }

  .detail-title {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .article-byline,
  .reading-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-figure {
    margin-inline: -12px;
    border-radius: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

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

  .blog-page-heading {
    margin-bottom: 30px;
  }

  .blog-page-heading h1 {
    font-size: 2.35rem;
  }

  .blog-hero-compact {
    margin-bottom: 28px;
  }

  .blog-image {
    border-radius: 6px;
  }

  .article-body {
    font-size: 1rem;
    line-height: 1.82;
  }

  .share-list {
    gap: 7px;
  }

  .share-btn {
    min-width: 42px;
  }

  .site-footer {
    padding: 52px 0 26px;
  }

  .article-body.font-small {
    font-size: 0.92rem;
  }

  .article-body.font-normal {
    font-size: 1rem;
  }

  .article-body.font-big {
    font-size: 1.12rem;
  }

  .container,
  .container-sm {
    --bs-gutter-x: 2rem;
  }

  .main-navbar {
    width: 100%;
    max-width: 100%;
    padding: 4px 0;
  }

  .main-navbar .container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 100px);
  }

  .brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
  }

  .nav-actions {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .stats-box {
    padding: 16px 8px;
    border-radius: 12px;
  }

  .stat-item {
    padding: 10px 4px;
  }

  .seo-box {
    width: 100%;
    border-radius: 14px;
  }

  .seo-content,
  .seo-visual {
    width: 100%;
    padding: 28px 20px;
  }

  .seo-point {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .seo-chart {
    width: 100%;
    padding: 16px;
  }

  .cta-box .display-5,
  .seo-content .display-5 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    overflow-wrap: anywhere;
  }

  .portfolio-filter {
    width: 100%;
  }

  .portfolio-btn {
    max-width: 100%;
    white-space: normal;
  }

  .article-body pre {
    max-width: 100%;
    overflow-x: auto;
  }

  .reading-toolbar {
    width: 100%;
  }

  .font-size-options {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .pagination {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .blog-search {
    width: 100%;
  }

  .blog-search .btn {
    padding-inline: 16px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  .revealed {
    transform: none;
  }

  .offcanvas.mobile-offcanvas {
    width: min(100%, 360px);
  }

  .offcanvas-body {
    min-width: 0;
  }

  .wa-floating {
    right: 16px;
    max-width: calc(100% - 32px);
  }

}

@media (max-width: 359.98px) {

  .container {
    --bs-gutter-x: 1.5rem;
  }

  .theme-toggle,
  .nav-icon {
    width: 36px;
    height: 36px;
  }

  .offcanvas.mobile-offcanvas {
    width: 100%;
  }

  .detail-title {
    font-size: 1.85rem;
  }

  .article-byline {
    gap: 14px;
  }

  .blog-search .btn {
    padding-inline: 12px;
  }

  .wa-floating {
    right: 14px;
    bottom: 16px;
  }

  .container,
  .container-sm {
    --bs-gutter-x: 2rem;
  }

  .blog-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-actions {
    gap: 6px;
  }

}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

}
/* ==================================================
   SITE LOGO
================================================== */

.site-logo {
    display: block;
    width: auto;
    height: 44px;
    max-width: 200px;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 767.98px) {
    .site-logo {
        height: 36px;
        max-width: 160px;
    }
}

/* Mobile kecil */
@media (max-width: 375px) {
    .site-logo {
        height: 32px;
        max-width: 140px;
    }
}
/* ==============================
   RELATED NEWS
================================= */

.related-news {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #e9ecef;
}

/* Heading */
.related-heading {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.related-news .detail-subtitle {
    position: relative;
    margin: 0;
    padding-left: 14px;

    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;

    color: #172033;
}

.related-news .detail-subtitle::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;

    width: 4px;
    background: var(--bs-primary, #0d6efd);
    border-radius: 1px;
}

/* Card */
.related-card {
    height: 100%;
}

/* Image */
.related-image {
    display: block;
    position: relative;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 16 / 9;

    background: #f1f3f5;
    border-radius: 3px;
}

.related-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.025);
}

/* Content */
.related-content {
    padding-top: 14px;
}

/* Category */
.related-news .article-category {
    display: inline-block;
    margin-bottom: 7px;

    font-size: .75rem;
    font-weight: 700;
    line-height: 1.2;

    color: var(--bs-primary, #0d6efd);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.related-news .article-category:hover {
    text-decoration: underline;
}

/* Title */
.related-title {
    margin: 0 0 9px;

    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
}

.related-title a {
    color: #172033;
    text-decoration: none;

    transition: color .2s ease;
}

.related-title a:hover {
    color: var(--bs-primary, #0d6efd);
}

/* Date */
.related-date {
    display: block;

    font-size: .8rem;
    font-weight: 400;

    color: #868e96;
}

/* Mobile */
@media (max-width: 767.98px) {

    .related-news {
        margin-top: 36px;
        padding-top: 22px;
    }

    .related-heading {
        margin-bottom: 18px;
    }

    .related-news .detail-subtitle {
        font-size: 1.2rem;
    }

    .related-title {
        font-size: 1rem;
    }
}

/* ================================
   UNIVERSAL CONTENT BLOCKS
================================ */

.content-extra {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.extra-block {
    margin-bottom: 48px;
}

.extra-block:last-child {
    margin-bottom: 0;
}

.extra-block .detail-subtitle {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.extra-description {
    max-width: 800px;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
}


/* ================================
   COMPARISON TABLE
================================ */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    min-width: 720px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.6;
}

.comparison-table th {
    background: #f8fafc;
    color: #111827;
    font-weight: 700;
}

.comparison-table td {
    color: #4b5563;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 34%;
    color: #111827;
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}


/* ================================
   FEATURES
================================ */

.extra-features .row {
    row-gap: 24px;
}

.feature-item {
    height: 100%;
    padding: 22px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #ffffff;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 4px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 22px;
}

.feature-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}


/* ================================
   STATS
================================ */

.extra-stats .row {
    row-gap: 20px;
}

.stat-item {
    height: 100%;
    padding: 24px 18px;
    border-top: 2px solid #2563eb;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.stat-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.stat-item span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}


/* ================================
   STEPS
================================ */

.extra-steps {
    position: relative;
}

.step-item {
    display: flex;
    gap: 18px;
    position: relative;
    padding: 0 0 28px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-number {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 18px;
    width: 1px;
    height: calc(100% - 10px);
    background: #dbe3ee;
}

.step-item h3 {
    margin: 4px 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
}

.step-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}


/* ================================
   TEXT BLOCK
================================ */

.extra-text {
    max-width: 900px;
}

.extra-text-content {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
}

.extra-text-content p {
    margin: 0 0 16px;
}

.extra-text-content h3 {
    margin: 28px 0 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
}

.extra-text-content h4 {
    margin: 24px 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.extra-text-content ul,
.extra-text-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.extra-text-content li {
    margin-bottom: 8px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .extra-block .detail-subtitle {
        font-size: 25px;
    }

    .stat-item strong {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .content-extra {
        margin-top: 36px;
        padding-top: 24px;
    }

    .extra-block {
        margin-bottom: 36px;
    }

    .extra-block .detail-subtitle {
        font-size: 22px;
    }

    .extra-description {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .feature-item {
        padding: 18px 16px;
    }

    .feature-item h3 {
        font-size: 17px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .stat-item {
        padding: 18px 14px;
    }

    .stat-item strong {
        font-size: 24px;
    }

    .step-item {
        gap: 14px;
        padding-bottom: 24px;
    }

    .step-number {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .step-item:not(:last-child)::before {
        top: 34px;
        left: 16px;
    }

    .step-item h3 {
        font-size: 17px;
    }

    .extra-text-content {
        font-size: 14px;
    }
}
