:root {
  --blue: #0061ca;
  --deep: #004a9e;
  --dark: #002f68;
  --navy: #021f48;
  --ink: #071f3d;
  --white: #fff;
  --soft: #eef6ff;
  --muted: #c5d9f2;
  --muted2: #8fb0d8;
  --line: rgba(255, 255, 255, .16);
  --glass: rgba(255, 255, 255, .08);
  --glass2: rgba(255, 255, 255, .13);
  --shadow: 0 24px 80px rgba(0, 0, 0, .30);
  --good: #4ade80;
  --warn: #fbbf24;
  --bad: #fb7185;
  --radius: 24px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--blue);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

body.protect-select {
  user-select: none
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
textarea,
select {
  font: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1200px, calc(100% - 36px));
  margin: auto
}

.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #000B1A 0%, #00122A 50%, #000000 100%);
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.8s;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Background floating ambient orbs */
.loader-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.loader-bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  mix-blend-mode: screen;
}

.loader-bg-orbs .orb-1 {
  width: 400px;
  height: 400px;
  background: #0057C2;
  top: -10%;
  left: -10%;
  animation: orbFloatOne 20s infinite alternate ease-in-out;
}

.loader-bg-orbs .orb-2 {
  width: 500px;
  height: 500px;
  background: #00c6ff;
  bottom: -15%;
  right: -10%;
  animation: orbFloatTwo 25s infinite alternate ease-in-out;
}

@keyframes orbFloatOne {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 80px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.9); }
}

@keyframes orbFloatTwo {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -40px) scale(1.15); }
  100% { transform: translate(40px, 20px) scale(0.95); }
}

/* Loader content container */
.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Glassmorphic Logo Chamber */
.logo-chamber {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 36px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: chamberFloat 4s ease-in-out infinite alternate;
}

.logo-chamber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 3s infinite;
}

.logo-chamber img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes chamberFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes shimmerSweep {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* Luxury Branding Text */
.loader-title {
  background: linear-gradient(135deg, #ffffff 0%, #a5c3e8 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  margin: 24px 0 16px 0;
  text-align: center;
  animation: letterSpread 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes letterSpread {
  0% {
    letter-spacing: 0.1em;
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    letter-spacing: 0.3em;
    opacity: 1;
    transform: scale(1);
  }
}

/* Linear Progress Bar */
.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00c6ff 0%, #0057C2 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 198, 255, 0.5);
  animation: loadProgress 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 74, 158, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 44px)
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 3px
}

.brand b {
  font-size: 1.25rem;
  letter-spacing: .4px
}

.brand small {
  display: block;
  font-size: .69rem;
  letter-spacing: 1.5px;
  color: var(--muted)
}

.main-nav {
  display: flex;
  gap: 6px;
  align-items: center
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--soft);
  font-size: .94rem
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--glass2)
}

.nav-toggle {
  display: none;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  padding: 9px 12px
}

.section {
  padding: 88px 0
}

.content {
  padding: 70px 0
}

.page-hero {
  padding: 120px 0 62px;
  background: linear-gradient(135deg, var(--deep), var(--blue));
  position: relative;
  overflow: hidden
}

.page-hero:after,
.hero:after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 25% 35%, rgba(255, 255, 255, .12), transparent 20%), radial-gradient(circle at 75% 65%, rgba(255, 255, 255, .08), transparent 22%);
  pointer-events: none
}

.page-hero>.container,
.hero .container {
  position: relative;
  z-index: 2
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 999px;
  color: var(--soft);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--deep) 52%, var(--dark) 100%);
  position: relative;
  overflow: hidden
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
  padding: 80px 0
}

.hero h1,
.page-title {
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 1.03;
  margin: 22px 0 22px;
  font-weight: 900;
  letter-spacing: -2px
}

.page-title {
  font-size: clamp(2.1rem, 4vw, 4rem)
}

.lead,
.hero p {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 760px
}

.hero p {
  max-width: 620px
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s;
  color: #fff
}

.btn.primary {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 34px rgba(255, 255, 255, .18)
}

.btn.secondary {
  background: var(--glass);
  color: #fff
}

.btn.small {
  padding: 8px 13px;
  border-radius: 12px;
  font-size: .86rem
}

.btn.danger {
  background: rgba(251, 113, 133, .13);
  color: #ffd9df
}

.btn:hover {
  transform: translateY(-2px)
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow)
}

.hero-card img {
  width: min(330px, 80%);
  margin: 0 auto 30px;
  border-radius: 30px;
  background: #fff;
  padding: 12px
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.stat {
  background: rgba(255, 255, 255, .10);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  text-align: center
}

.stat strong {
  font-size: 1.85rem;
  display: block
}

.stat span {
  color: var(--muted);
  font-size: .9rem
}

.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 850px
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  margin: 16px 0 12px
}

.grid {
  display: grid;
  gap: 24px
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, .12);
  backdrop-filter: blur(10px)
}

.card.soft {
  background: rgba(255, 255, 255, .06)
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem
}

.muted {
  color: var(--muted)
}

.muted2 {
  color: var(--muted2)
}

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

.list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--muted)
}

.list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%
}

.line-icon {
  width: 42px;
  height: 42px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column
}

.service-top {
  display: flex;
  gap: 17px;
  align-items: flex-start
}

.icon-box {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .05));
  display: grid;
  place-items: center
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.founder-avatar {
  width: 160px;
  height: 160px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 auto 22px
}

.method-steps {
  counter-reset: steps
}

.method-step {
  position: relative;
  padding-left: 72px
}

.method-step:before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900
}

.partners-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, .08);
  padding: 18px 0
}

.partners-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 42s linear infinite
}

.partner-pill {
  width: 190px;
  height: 82px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px
}

.partner-pill img {
  max-height: 45px;
  filter: brightness(0) invert(1);
  opacity: .94
}

.partner-card img {
  height: 62px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px
}

.partner-card {
  min-height: 180px
}

.partner-category {
  margin: 34px 0 16px;
  color: #fff;
  font-size: 1.55rem
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px
}

.filter-chip {
  border: 1px solid var(--line);
  background: var(--glass);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer
}

.filter-chip.active {
  background: #fff;
  color: var(--blue)
}

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

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

.blog-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column
}

.blog-img {
  height: 230px;
  background: rgba(255, 255, 255, .07);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center
}

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

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted2);
  font-size: .85rem
}

.article-cover {
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  margin: 25px 0
}

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

.article-body {
  max-width: 920px;
  margin: auto
}

.article-body p {
  color: var(--muted);
  font-size: 1.06rem
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden
}

.faq-q {
  padding: 22px 24px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between
}

.faq-q:after {
  content: "+"
}

.faq-item.open .faq-q:after {
  content: "−"
}

.faq-a {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted)
}

.faq-item.open .faq-a {
  display: block
}

.form {
  display: grid;
  gap: 16px
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .93rem
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-radius: 14px;
  padding: 13px 15px;
  outline: none
}

.form textarea {
  min-height: 130px;
  resize: vertical
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, .11)
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0
}

.notice {
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid var(--line)
}

.notice.good {
  background: rgba(74, 222, 128, .13);
  color: #bbf7d0
}

.notice.bad {
  background: rgba(251, 113, 133, .14);
  color: #ffe4e6
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: .25s
}

.social svg {
  width: 22px;
  height: 22px;
  fill: #fff
}

.social:hover {
  background: #fff;
  transform: translateY(-3px)
}

.social:hover svg {
  fill: var(--blue)
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  z-index: 995;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .4)
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 30px
}

.site-footer h3 {
  margin-top: 0
}

.site-footer p {
  color: var(--muted);
  margin: .45rem 0
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted2);
  font-size: .92rem
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 78px);
  background: #07172e
}

.admin-side {
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #073a7d, #061d3f);
  padding: 22px;
  position: sticky;
  top: 78px;
  height: calc(100vh - 78px);
  overflow: auto
}

.admin-user {
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 18px
}

.admin-menu {
  display: grid;
  gap: 8px
}

.admin-menu a {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted)
}

.admin-menu a.active,
.admin-menu a:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff
}

.admin-main {
  padding: 28px
}

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px
}

.admin-head h1 {
  margin: 0
}

.stats-admin {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top
}

.admin-table th {
  color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .78rem
}

.admin-table td {
  color: var(--muted)
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, .04)
}

.status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: .8rem
}

.status.good {
  color: #bbf7d0;
  background: rgba(74, 222, 128, .12)
}

.status.warn {
  color: #fde68a;
  background: rgba(251, 191, 36, .12)
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px
}

.modal-box {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #052654;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow)
}

.seo-meter {
  height: 12px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  overflow: hidden
}

.seo-meter span {
  display: block;
  height: 100%;
  background: #4ade80
}

.secure-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #bbf7d0
}

.hidden {
  display: none !important
}

@media(max-width:1050px) {

  .hero-inner,
  .split {
    grid-template-columns: 1fr
  }

  .hero-card {
    order: -1
  }

  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-admin {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:760px) {
  .site-header {
    padding: 10px 16px
  }

  .nav-toggle {
    display: block
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 61, 133, .98);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--line)
  }

  .main-nav.open {
    display: flex
  }

  .main-nav a {
    padding: 12px 16px
  }

  .hero-inner {
    padding: 42px 0
  }

  .hero h1,
  .page-title {
    letter-spacing: -1px
  }

  .section {
    padding: 62px 0
  }

  .content {
    padding: 45px 0
  }

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .admin-shell {
    grid-template-columns: 1fr
  }

  .admin-side {
    position: relative;
    top: 0;
    height: auto
  }

  .admin-main {
    padding: 18px
  }

  .stats-admin {
    grid-template-columns: 1fr
  }

  .article-cover {
    height: 240px
  }

  .partner-pill {
    width: 155px
  }

  .brand small {
    font-size: .6rem
  }

  .brand b {
    font-size: 1.05rem
  }
}

/* ===== V8 CREATIVE RESPONSIVE POLISH ===== */
:root {
  --blue: #0061ca;
  --deep: #004fae;
  --dark: #002d66;
  --electric: #35a6ff;
  --cyan: #77d9ff;
  --ice: #f7fbff;
  --soft: #eaf5ff;
  --muted: #cfe2fb;
  --muted2: #9fbee4;
  --line: rgba(255, 255, 255, .18);
  --glass: rgba(255, 255, 255, .09);
  --glass2: rgba(255, 255, 255, .15);
  --card: rgba(255, 255, 255, .105);
  --shadow: 0 26px 90px rgba(0, 21, 70, .36);
  --radius: 28px
}

body {
  background: radial-gradient(circle at 80% 0%, rgba(72, 167, 255, .28), transparent 33%), linear-gradient(180deg, #005fc6 0%, #0061ca 35%, #004a9e 100%);
  font-size: 16px
}

.container {
  width: min(1320px, calc(100% - clamp(28px, 6vw, 88px)))
}

.site-header {
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(0, 70, 154, .82);
  box-shadow: 0 16px 50px rgba(0, 20, 60, .18)
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px
}

.main-nav {
  gap: 8px
}

.main-nav a {
  font-weight: 800;
  letter-spacing: .1px
}

.main-nav a.active {
  background: #fff;
  color: var(--blue)
}

.section {
  padding: clamp(72px, 9vw, 128px) 0
}

.content {
  padding: clamp(58px, 7vw, 96px) 0
}

.page-hero {
  padding: clamp(112px, 13vw, 168px) 0 76px;
  background: radial-gradient(circle at 72% 25%, rgba(255, 255, 255, .16), transparent 25%), linear-gradient(135deg, #004896, #0067d8 60%, #00428f)
}

.page-title {
  max-width: 920px
}

.lead,
.hero p {
  color: #d7eaff
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .065));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 22px 70px rgba(0, 25, 78, .18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .32);
  box-shadow: 0 26px 90px rgba(0, 25, 78, .28)
}

.eyebrow,
.badge {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: .73rem;
  letter-spacing: 1.9px
}

.btn {
  min-height: 46px
}

.btn.primary {
  box-shadow: 0 18px 45px rgba(255, 255, 255, .25)
}

.btn.secondary {
  background: rgba(255, 255, 255, .10)
}

.v8-hero {
  min-height: auto;
  padding: clamp(112px, 12vw, 170px) 0 clamp(70px, 8vw, 110px);
  background: radial-gradient(circle at 84% 24%, rgba(111, 207, 255, .25), transparent 23%), radial-gradient(circle at 8% 16%, rgba(255, 255, 255, .13), transparent 23%), linear-gradient(135deg, #0067d8 0%, #0055b7 45%, #00387e 100%)
}

.v8-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%)
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .45;
  pointer-events: none
}

.orb-one {
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, .16);
  right: 8%;
  top: 15%
}

.orb-two {
  width: 240px;
  height: 240px;
  background: rgba(83, 188, 255, .25);
  left: 4%;
  bottom: 8%
}

.v8-hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(36px, 6vw, 90px);
  padding: 0
}

.hero-copy {
  max-width: 800px
}

.v8-hero h1 {
  font-size: clamp(3rem, 7.2vw, 6.7rem);
  letter-spacing: -3.2px;
  text-wrap: balance
}

.v8-hero p {
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  max-width: 720px
}

.hero-badge {
  margin-bottom: 10px
}

.hero-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px
}

.hero-service-chips a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .09);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  font-weight: 800;
  color: #fff
}

.hero-service-chips .line-icon {
  width: 26px;
  height: 26px
}

.hero-visual-v8 {
  position: relative;
  min-height: 520px;
  border-radius: 40px;
  display: grid;
  place-items: center
}

.hero-visual-v8:before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow)
}

.logo-plaque {
  position: relative;
  z-index: 2;
  width: min(390px, 86%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 34px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(16px);
  text-align: center
}

.logo-plaque img {
  width: 240px;
  margin: 0 auto 18px;
  border-radius: 30px;
  background: #fff;
  padding: 10px
}

.logo-plaque span {
  font-weight: 900;
  color: #fff
}

.hero-stat-wall {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.hero-stat-wall .stat {
  padding: 14px 10px;
  background: rgba(0, 80, 180, .52);
  backdrop-filter: blur(14px)
}

.hero-stat-wall .stat strong {
  font-size: 1.55rem
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 11px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 12px 35px rgba(0, 25, 80, .20)
}

.note-a {
  top: 74px;
  left: 10px
}

.note-b {
  right: 6px;
  bottom: 126px
}

.about-home {
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(255, 255, 255, .04))
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 28px
}

.about-main,
.founder-card {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  padding: clamp(28px, 4vw, 54px);
  box-shadow: var(--shadow)
}

.about-main h2,
.section-head h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.06;
  margin: 18px 0;
  text-wrap: balance
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0
}

.mission-vision article {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08)
}

.mission-vision b {
  font-size: 1.05rem
}

.mission-vision p {
  color: var(--muted);
  margin-bottom: 0
}

.founder-card {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.founder-card .founder-avatar {
  width: 132px;
  height: 132px;
  border-radius: 34px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 18px 55px rgba(255, 255, 255, .12)
}

.services-home {
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .12), transparent 28%), linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .10))
}

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px
}

.mosaic-item.featured {
  grid-column: span 2;
  grid-row: span 2
}

.service-card {
  height: 100%;
  min-height: 260px;
  padding: 28px;
  position: relative;
  overflow: hidden
}

.service-card:before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09)
}

.mosaic-item.featured .service-card {
  min-height: 540px;
  justify-content: space-between
}

.mosaic-item.featured .icon-box {
  width: 98px;
  height: 98px;
  border-radius: 30px
}

.mosaic-item.featured h3 {
  font-size: 1.8rem
}

.icon-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18)
}

.line-icon {
  stroke: #fff;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .18))
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  font-weight: 900;
  color: #fff
}

.service-more span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--blue);
  border-radius: 50%
}

.timeline-v8 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative
}

.timeline-v8:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: .45
}

.timeline-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07));
  padding: 28px;
  min-height: 260px
}

.timeline-card span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 24px
}

.timeline-card h3 {
  font-size: 1.25rem
}

.timeline-card p {
  color: var(--muted)
}

.v8-partners {
  padding: 70px 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .10), rgba(255, 255, 255, .06), rgba(0, 0, 0, .10))
}

.partners-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px
}

.partners-title h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem)
}

.partner-pill {
  width: 220px;
  height: 104px;
  border-radius: 24px;
  gap: 8px;
  background: rgba(255, 255, 255, .10)
}

.partner-pill img {
  max-height: 42px;
  max-width: 150px
}

.partner-pill small {
  color: #fff;
  font-weight: 900;
  font-size: .76rem;
  text-align: center;
  opacity: .88
}

.partner-card {
  text-align: center
}

.partner-card img {
  margin-inline: auto;
  max-width: 160px
}

.blog-feature-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px
}

.blog-side {
  display: grid;
  gap: 24px
}

.blog-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 20, 70, .18);
  min-height: 100%
}

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

.blog-feature {
  display: grid;
  grid-template-columns: 1fr .88fr
}

.blog-feature .blog-img {
  height: auto;
  min-height: 430px;
  border-bottom: 0;
  border-right: 1px solid var(--line)
}

.blog-feature .blog-content {
  padding: 34px;
  justify-content: center
}

.blog-feature h3 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  line-height: 1.05
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px
}

.blog-img {
  height: 245px;
  border-radius: 28px 28px 0 0;
  overflow: hidden
}

.blog-content h3 {
  font-size: 1.35rem;
  line-height: 1.25
}

.blog-meta span {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
  color: #eaf5ff
}

.testimonial-card .stars {
  color: #ffd166;
  letter-spacing: 3px;
  font-size: 1.05rem
}

.cta-panel {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(34px, 6vw, 70px);
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .18), transparent 36%), linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  box-shadow: var(--shadow)
}

.cta-panel .lead {
  margin: 0 auto
}

.cta-panel .actions {
  justify-content: center
}

.social-row {
  gap: 12px
}

.social {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .11)
}

.social svg {
  width: 24px;
  height: 24px;
  display: block
}

.social-fallback {
  position: absolute;
  inset: auto 0 3px;
  text-align: center;
  font-size: .48rem;
  font-weight: 900;
  color: #fff;
  opacity: .0;
  line-height: 1
}

.social:hover .social-fallback {
  color: var(--blue)
}

.social:empty:after {
  content: "•";
  font-size: 1.6rem
}

.whatsapp-float {
  width: 64px;
  height: 64px
}

.site-footer {
  background: linear-gradient(180deg, #003875, #02214a)
}

@media(max-width:1180px) {

  .v8-hero-inner,
  .about-showcase,
  .blog-feature-layout {
    grid-template-columns: 1fr
  }

  .hero-visual-v8 {
    min-height: 450px;
    max-width: 680px;
    margin: auto
  }

  .services-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .timeline-v8 {
    grid-template-columns: repeat(2, 1fr)
  }

  .timeline-v8:before {
    display: none
  }

  .blog-feature {
    grid-template-columns: 1fr
  }

  .blog-feature .blog-img {
    height: 360px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .blog-page-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:760px) {
  .container {
    width: min(100% - 28px, 1320px)
  }

  .site-header {
    padding: 10px 14px
  }

  .brand img {
    width: 48px;
    height: 48px
  }

  .v8-hero {
    padding-top: 92px
  }

  .v8-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
    letter-spacing: -1.8px
  }

  .hero-copy {
    text-align: left
  }

  .actions {
    width: 100%
  }

  .actions .btn {
    flex: 1 1 auto
  }

  .hero-service-chips a {
    width: 100%;
    justify-content: flex-start
  }

  .hero-visual-v8 {
    min-height: 390px
  }

  .logo-plaque {
    width: 92%;
    padding: 22px
  }

  .logo-plaque img {
    width: 190px
  }

  .hero-stat-wall {
    grid-template-columns: repeat(2, 1fr);
    bottom: 0
  }

  .floating-note {
    display: none
  }

  .mission-vision,
  .services-mosaic,
  .timeline-v8,
  .blog-page-grid {
    grid-template-columns: 1fr
  }

  .mosaic-item.featured {
    grid-column: auto;
    grid-row: auto
  }

  .mosaic-item.featured .service-card {
    min-height: 280px
  }

  .partners-title {
    align-items: flex-start;
    flex-direction: column
  }

  .partner-pill {
    width: 180px
  }

  .blog-feature .blog-img {
    height: 260px
  }

  .footer-grid {
    gap: 22px
  }

  .social {
    width: 44px;
    height: 44px
  }
}

/* ===== V9 REFINED CREATIVE RESPONSIVE SYSTEM ===== */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: #fff;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin-left: 10px
}

.theme-toggle:hover {
  background: #fff;
  color: var(--blue)
}

body.visitor-dark {
  --blue: #061a38;
  --deep: #08244c;
  --dark: #031126;
  --navy: #020b18;
  --soft: #f8fbff;
  --muted: #d2e3f6;
  --muted2: #9db8d7;
  --glass: rgba(255, 255, 255, .075);
  --glass2: rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, #061a38, #031126)
}

body.visitor-dark .v9-hero {
  background: radial-gradient(circle at 80% 20%, rgba(0, 122, 255, .23), transparent 25%), linear-gradient(135deg, #061a38, #08244c 52%, #031126)
}

.site-header {
  gap: 10px
}

.main-nav {
  margin-left: auto
}

.site-header .theme-toggle {
  flex: 0 0 auto
}

.v9-hero {
  min-height: calc(100vh - 78px);
  padding: clamp(72px, 7vw, 115px) 0;
  background: radial-gradient(circle at 85% 22%, rgba(150, 215, 255, .22), transparent 24%), radial-gradient(circle at 10% 16%, rgba(255, 255, 255, .13), transparent 25%), linear-gradient(135deg, var(--blue) 0%, var(--deep) 52%, var(--dark) 100%)
}

.hero-v9-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(36px, 7vw, 90px);
  align-items: center
}

.hero-copy-v9 {
  max-width: 790px
}

.hero-copy-v9 h1 {
  font-size: clamp(2.7rem, 5.5vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -2.6px;
  margin: 20px 0;
  text-wrap: balance
}

.hero-copy-v9 p {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  max-width: 650px;
  color: var(--muted)
}

.hero-panel-v9 {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .06));
  box-shadow: var(--shadow);
  border-radius: 38px;
  padding: 36px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden
}

.hero-panel-v9:before {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 60%)
}

.hero-logo-ring {
  position: relative;
  z-index: 1;
  width: min(310px, 78%);
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 36px;
  background: rgba(255, 255, 255, .12);
  padding: 20px
}

.hero-logo-ring img {
  border-radius: 28px;
  background: #fff;
  padding: 10px;
  width: 100%
}

.v9-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.v9-stats .stat {
  padding: 18px 12px;
  background: rgba(0, 0, 0, .10)
}

.hero-panel-note {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem
}

.hero-mini-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 660px
}

.hero-mini-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .09);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10)
}

.hero-mini-services .line-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto
}

.hero-mini-services span {
  font-size: .93rem;
  line-height: 1.25
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: stretch
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px
}

.mission-vision article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .07)
}

.founder-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  display: grid;
  align-content: center
}

.services-mosaic {
  align-items: stretch
}

.service-card {
  min-height: 230px
}

.mosaic-item.featured .service-card {
  min-height: 480px
}

.service-card h3 {
  line-height: 1.22
}

.service-card p {
  font-size: .96rem
}

.line-icon path {
  vector-effect: non-scaling-stroke
}

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

.process-card {
  position: relative;
  min-height: 280px;
  padding: 74px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .065));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .12)
}

.process-number {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900
}

.process-card h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 14px
}

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

.partners-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px
}

.partner-pill {
  grid-template-rows: 1fr auto;
  gap: 8px
}

.partner-pill small {
  font-size: .72rem;
  text-align: center;
  color: var(--soft);
  line-height: 1.15
}

.partner-card {
  text-align: center;
  display: grid;
  place-items: center
}

.partner-card h3 {
  font-size: 1rem
}

.partner-card img {
  margin-inline: auto
}

.blog-v9-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px
}

.blog-feature-v9 {
  display: grid;
  grid-template-columns: 1.1fr .9fr
}

.blog-feature-v9 .blog-img {
  height: auto;
  min-height: 360px;
  border-bottom: 0;
  border-right: 1px solid var(--line)
}

.blog-stack-v9 {
  display: grid;
  gap: 18px
}

.blog-stack-v9 .blog-card {
  display: grid;
  grid-template-columns: 150px 1fr
}

.blog-stack-v9 .blog-img {
  height: 100%;
  min-height: 160px;
  border-bottom: 0;
  border-right: 1px solid var(--line)
}

.v9-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px
}

.blog-card h3 {
  line-height: 1.3
}

.blog-card {
  min-width: 0
}

.blog-img {
  background: linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04))
}

.testimonial-card {
  min-height: 230px
}

.cta-panel {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  padding: 48px;
  box-shadow: var(--shadow)
}

.cta-panel .actions {
  justify-content: center
}

.final-cta {
  padding-top: 40px
}

.social {
  color: #fff
}

.social svg {
  fill: currentColor
}

.social svg [fill="none"] {
  fill: none !important
}

.social:hover {
  color: var(--blue)
}

.social-fallback {
  display: none !important
}

.social-instagram svg {
  fill: none !important
}

.social-instagram svg circle[fill="currentColor"] {
  fill: currentColor !important
}

.social-instagram:hover svg {
  color: var(--blue)
}

.v9-admin-shell {
  background: linear-gradient(135deg, #061a38, #08244c)
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 20px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .07)
}

.admin-topbar span {
  display: block;
  font-size: .88rem
}

.admin-head {
  padding: 0 0 4px
}

.admin-head .actions {
  margin: 0
}

.admin-side {
  border-radius: 0 28px 28px 0
}

.admin-menu a {
  font-weight: 800
}

.admin-table {
  table-layout: auto
}

.admin-table td {
  max-width: 360px
}

.message-cell {
  max-width: 420px;
  white-space: normal
}

.admin-help {
  margin-bottom: 18px
}

.theme-preview {
  min-height: 360px;
  display: grid;
  align-content: center
}

.theme-form input[type="color"] {
  height: 48px;
  padding: 4px
}

.form input::placeholder {
  color: var(--muted2)
}

@media(max-width:1180px) {

  .hero-v9-grid,
  .about-showcase,
  .blog-v9-layout {
    grid-template-columns: 1fr
  }

  .hero-panel-v9 {
    min-height: auto;
    max-width: 620px;
    margin: auto
  }

  .blog-feature-v9 {
    grid-template-columns: 1fr
  }

  .blog-feature-v9 .blog-img {
    height: 320px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .blog-stack-v9 .blog-card {
    grid-template-columns: 190px 1fr
  }

  .process-v9 {
    grid-template-columns: repeat(2, 1fr)
  }

  .v9-blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:860px) {
  .site-header {
    flex-wrap: wrap
  }

  .theme-toggle {
    order: 2;
    margin-left: auto
  }

  .nav-toggle {
    order: 3
  }

  .main-nav {
    order: 4
  }

  .hero-mini-services,
  .mission-vision {
    grid-template-columns: 1fr
  }

  .process-v9,
  .v9-blog-grid {
    grid-template-columns: 1fr
  }

  .blog-stack-v9 .blog-card {
    grid-template-columns: 1fr
  }

  .blog-stack-v9 .blog-img {
    height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .hero-copy-v9 h1 {
    font-size: clamp(2.25rem, 12vw, 4rem)
  }

  .hero-panel-v9 {
    padding: 24px;
    border-radius: 28px
  }

  .hero-logo-ring {
    width: min(260px, 88%)
  }

  .v9-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .process-card {
    min-height: auto
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column
  }

  .admin-head {
    align-items: flex-start;
    flex-direction: column
  }

  .admin-head .actions {
    width: 100%
  }

  .admin-head .actions .btn {
    flex: 1
  }

  .table-wrap {
    border-radius: 16px
  }

  .admin-table th,
  .admin-table td {
    padding: 11px
  }

  .cta-panel {
    padding: 30px 18px
  }

  .footer-bottom {
    font-size: .82rem
  }
}

@media(max-width:520px) {
  .container {
    width: min(100% - 24px, 1200px)
  }

  .brand b {
    font-size: 1rem
  }

  .brand img {
    width: 44px;
    height: 44px
  }

  .theme-toggle {
    width: 40px;
    height: 40px
  }

  .v9-hero {
    padding-top: 56px
  }

  .hero-copy-v9 h1 {
    letter-spacing: -1.2px
  }

  .actions .btn {
    width: 100%
  }

  .v9-stats {
    grid-template-columns: 1fr 1fr
  }

  .stat strong {
    font-size: 1.35rem
  }

  .stat span {
    font-size: .78rem
  }

  .service-card {
    padding: 22px
  }

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr
  }

  .blog-feature-v9 .blog-img {
    height: 230px
  }

  .social {
    width: 44px;
    height: 44px
  }

  .process-card {
    padding: 70px 20px 22px
  }

  .modal-box {
    padding: 18px;
    border-radius: 22px
  }
}


/* ===== V10 APPROVED HOMEPAGE DESIGN SYSTEM ===== */
:root {
  --blue: #0a58ca;
  --deep: #073f94;
  --dark: #06214e;
  --navy: #031633;
  --soft: #f7fbff;
  --ink: #0a1b3f;
  --ink2: #38557d;
  --muted: #dbeafe;
  --muted2: #9bb7dc;
  --glass: rgba(255, 255, 255, .10);
  --glass2: rgba(255, 255, 255, .16);
  --line: rgba(255, 255, 255, .20);
  --shadow: 0 24px 70px rgba(3, 20, 50, .28);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

body {
  background: var(--navy);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body.visitor-dark {
  --blue: #061a38;
  --deep: #082a5a;
  --dark: #03152f;
  --navy: #020a18;
  --soft: #eef5ff;
  --ink: #eaf3ff;
  --ink2: #b8cae4;
  --muted: #dcecff;
  background: #020a18
}

.site-header {
  height: 78px;
  padding: 0 6vw;
  background: rgba(5, 34, 84, .80);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .16);
  align-items: center
}

.brand {
  gap: 14px
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
  background: #0a58ca;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 0
}

.brand b {
  font-size: 1.45rem;
  letter-spacing: .04em
}

.brand small {
  font-size: .72rem;
  letter-spacing: .24em;
  color: #c9ddff
}

.main-nav {
  gap: 6px
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 13px;
  font-weight: 800
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(255, 255, 255, .12)
}

.theme-toggle {
  border-radius: 999px;
  width: 58px;
  height: 34px
}

.site-header:after {
  display: none
}

.header-cta {
  height: 42px;
  padding: 0 22px;
  border-radius: 12px;
  background: #1777ff;
  color: #fff !important;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(23, 119, 255, .28);
  white-space: nowrap
}

.container {
  width: min(100% - 9vw, 1320px);
  margin-inline: auto
}

.section {
  padding: 74px 0
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 88, 202, .10);
  border: 1px solid rgba(10, 88, 202, .18);
  color: #0a58ca;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 950
}

.section-head {
  margin-bottom: 28px
}

.section-head.left {
  text-align: left;
  max-width: 900px;
  margin-inline: 0
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px
}

.section-head h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
  margin: 12px 0 0;
  color: inherit;
  letter-spacing: -.04em
}

.section-head .lead,
.lead {
  color: inherit;
  opacity: .82;
  line-height: 1.75
}

.btn {
  border-radius: 13px;
  font-weight: 950;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.btn.primary {
  background: #fff;
  color: #0a58ca;
  box-shadow: 0 16px 40px rgba(255, 255, 255, .16)
}

.btn.secondary,
.btn.ghost {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff
}

.btn.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: .85rem
}

.v10-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 148px 0 68px;
  background: radial-gradient(circle at 80% 22%, rgba(26, 128, 255, .35), transparent 28%), linear-gradient(135deg, #062b6a 0%, #0a58ca 52%, #06214e 100%)
}

.hero-skyline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 14, 37, .25), rgba(3, 22, 51, .75)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='430' viewBox='0 0 1600 430'%3E%3Cg fill='%23ffffff' opacity='.12'%3E%3Cpath d='M0 330h80V220h35v110h70V250h55v80h50V180h40v150h80V230h65v100h60V120h34v210h95V205h55v125h80V245h52v85h55V160h45v170h70V80h35v250h80V210h60v120h80V248h55v82h85V190h42v140h70V260h70v70h115v100H0z'/%3E%3C/g%3E%3C/svg%3E") center bottom/100% auto no-repeat
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: repeating-linear-gradient(165deg, rgba(255, 255, 255, .10) 0 1px, transparent 1px 12px);
  opacity: .34;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%)
}

.hero-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .72fr);
  gap: min(8vw, 104px);
  align-items: center
}

.hero-copy-v10 h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(3.1rem, 5.8vw, 6.25rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  text-wrap: balance
}

.hero-copy-v10 p {
  max-width: 620px;
  color: #dcecff;
  font-size: 1.06rem;
  line-height: 1.75
}

.hero-copy-v10 .actions {
  margin-top: 24px
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 32px;
  color: #dcecff;
  font-weight: 850
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px
}

.trust-row .line-icon {
  width: 22px;
  height: 22px
}

.hero-card-v10 {
  position: relative;
  justify-self: end;
  width: min(440px, 100%);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 28px 90px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .22);
  padding: 28px;
  overflow: hidden
}

.hero-card-v10:before {
  content: '';
  position: absolute;
  inset: -45% -25% auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(101, 184, 255, .30);
  filter: blur(22px)
}

.logo-display {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .50);
  border-radius: 24px;
  background: rgba(255, 255, 255, .13);
  padding: 18px;
  margin-bottom: 18px
}

.logo-display img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55/1;
  object-fit: contain;
  background: #0a58ca;
  border-radius: 18px
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.stat-tile {
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  background: rgba(255, 255, 255, .11);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px
}

.stat-tile strong {
  font-size: 1.9rem
}

.stat-tile span {
  font-size: .82rem;
  color: #dcecff;
  font-weight: 800
}

.about-v10 {
  background: var(--soft);
  color: var(--ink)
}

.about-v10-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 30px;
  align-items: stretch
}

.about-copy-v10 h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  margin: 12px 0
}

.about-copy-v10 .lead {
  color: var(--ink2);
  max-width: 720px
}

.value-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px
}

.value-mini-grid article {
  border: 1px solid rgba(10, 88, 202, .12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(6, 33, 78, .08);
  padding: 20px
}

.value-mini-grid .line-icon {
  width: 34px;
  height: 34px;
  color: #0a58ca;
  margin-bottom: 10px
}

.value-mini-grid b {
  display: block;
  font-size: 1rem
}

.value-mini-grid p {
  margin: 8px 0 0;
  color: var(--ink2);
  font-size: .88rem;
  line-height: 1.55
}

.founder-v10 {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(10, 88, 202, .12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 24px 64px rgba(6, 33, 78, .10)
}

.founder-initials {
  aspect-ratio: 1;
  border-radius: 22px;
  background: linear-gradient(135deg, #0a58ca, #1b6ff2);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 3.8rem;
  font-weight: 950
}

.founder-v10 h3 {
  font-size: 1.6rem;
  margin: 8px 0
}

.founder-v10 p {
  color: var(--ink2);
  line-height: 1.6
}

.founder-v10 .btn.primary {
  background: #0a58ca;
  color: #fff;
  box-shadow: 0 16px 32px rgba(10, 88, 202, .20)
}

.services-v10 {
  background: linear-gradient(135deg, #0a58ca, #073f94);
  color: #fff
}

.services-grid-v10 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}

.service-card-v10 {
  display: flex;
  flex-direction: column;
  min-height: 278px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .07));
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
  transition: .25s ease
}

.service-card-v10:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .16)
}

.service-icon-v10 {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 16px
}

.service-icon-v10 .line-icon {
  width: 52px;
  height: 52px;
  color: #fff
}

.line-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.service-card-v10 h3 {
  font-size: 1.06rem;
  line-height: 1.25;
  margin: 0 0 10px
}

.service-card-v10 p {
  margin: 0;
  color: #dcecff;
  line-height: 1.55;
  font-size: .92rem
}

.service-card-v10 a {
  margin-top: auto;
  color: #fff;
  font-weight: 950;
  font-size: .88rem;
  text-decoration: none
}

.process-section-v10 {
  background: #fff;
  color: var(--ink)
}

.process-grid-v10 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative
}

.step-v10 {
  position: relative;
  min-height: 210px;
  padding: 32px 28px 24px;
  border: 1px solid rgba(10, 88, 202, .10);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(6, 33, 78, .08);
  text-align: center
}

.step-v10 span {
  position: absolute;
  left: 24px;
  top: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0a58ca;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950
}

.step-icon .line-icon {
  width: 50px;
  height: 50px;
  color: #0a58ca;
  margin-top: 2px
}

.step-v10 h3 {
  font-size: 1.15rem;
  margin: 12px 0 8px
}

.step-v10 p {
  color: var(--ink2);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0
}

.step-v10:not(:last-child):after {
  content: '';
  position: absolute;
  right: -28px;
  top: 50%;
  width: 28px;
  border-top: 2px dashed rgba(10, 88, 202, .32)
}

.partners-v10 {
  background: #031633;
  color: #fff;
  padding: 32px 0;
  overflow: hidden
}

.partners-head-v10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px
}

.partners-head-v10 a {
  color: #dcecff;
  font-weight: 900
}

.partners-marquee-v10 {
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  overflow: hidden
}

.partners-track-v10 {
  display: flex;
  gap: 42px;
  align-items: center;
  width: max-content;
  animation: marquee-v10 42s linear infinite;
  padding: 22px 0
}

.partner-logo-v10 {
  min-width: 150px;
  display: grid;
  place-items: center;
  gap: 6px;
  color: #fff;
  opacity: .92
}

.partner-logo-v10 img {
  max-width: 120px;
  max-height: 42px;
  filter: brightness(0) invert(1);
  opacity: .95
}

.partner-logo-v10 small {
  text-align: center;
  font-size: .72rem;
  line-height: 1.1;
  color: #dcecff;
  font-weight: 800
}

@keyframes marquee-v10 {
  to {
    transform: translateX(-50%)
  }
}

.insights-v10 {
  background: var(--soft);
  color: var(--ink)
}

.insights-grid-v10 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.insight-card-v10 {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 226px;
  border: 1px solid rgba(10, 88, 202, .10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 54px rgba(6, 33, 78, .08)
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.insight-body {
  padding: 20px
}

.tag {
  display: inline-block;
  background: #edf4ff;
  color: #0a58ca;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase
}

.insight-body small {
  display: block;
  margin-top: 8px;
  color: #7184a4;
  font-weight: 800
}

.insight-body h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 10px 0
}

.insight-body h3 a {
  color: var(--ink);
  text-decoration: none
}

.insight-body p {
  color: var(--ink2);
  font-size: .88rem;
  line-height: 1.5
}

.read-more {
  color: #0a58ca;
  text-decoration: none;
  font-weight: 950
}

.section-head.split .btn.secondary {
  color: #0a58ca;
  border-color: rgba(10, 88, 202, .20);
  background: #fff
}

.testimonials-v10 {
  background: linear-gradient(135deg, #0a58ca, #073f94);
  color: #fff
}

.testimonial-grid-v10 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.testimonial-v10 {
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  padding: 24px
}

.testimonial-v10>b {
  font-size: 3rem;
  line-height: 1;
  color: #fff
}

.testimonial-v10 p {
  color: #dcecff;
  line-height: 1.65
}

.person-v10 {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px
}

.person-v10>span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #0a58ca;
  display: grid;
  place-items: center;
  font-weight: 950
}

.person-v10 h3 {
  margin: 0;
  font-size: 1rem
}

.person-v10 small {
  display: block;
  color: #dcecff
}

.person-v10 em {
  display: block;
  color: #fbbf24;
  font-style: normal;
  letter-spacing: .12em
}

.cta-v10 {
  background: linear-gradient(135deg, #0a58ca, #06214e);
  padding-top: 48px
}

.cta-panel-v10 {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
  box-shadow: var(--shadow);
  padding: 28px 34px
}

.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center
}

.cta-icon .line-icon {
  width: 42px;
  height: 42px
}

.cta-panel-v10 h2 {
  font-size: 1.75rem;
  margin: 0 0 6px
}

.cta-panel-v10 p {
  margin: 0;
  color: #dcecff
}

.site-footer {
  background: #031633;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

.footer-v10 {
  padding-top: 46px
}

.footer-grid {
  grid-template-columns: 1.5fr .75fr 1fr .9fr;
  gap: 52px
}

.footer-grid p,
.footer-grid a {
  color: #c8dbf8
}

.footer-grid h3 {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 20px 0;
  color: #c8dbf8
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
  color: #fff
}

.social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor
}

.social-instagram svg {
  fill: none
}

.social-instagram svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8
}

.social-instagram svg circle {
  stroke: currentColor
}

.whatsapp-float {
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #31d366;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 50px rgba(49, 211, 102, .30);
  z-index: 60
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: #fff
}

/* Dashboard polish */
.v9-admin-shell .admin-main,
.admin-main {
  font-size: 15px
}

.admin-topbar,
.admin-head,
.page-card,
.stat-box {
  border-radius: 22px
}

.admin-table td,
.admin-table th {
  vertical-align: top
}

.table-wrap {
  overflow: auto
}

.message-cell {
  min-width: 280px
}

.admin-menu a {
  border-radius: 14px
}

.form label {
  font-weight: 900
}

.form input,
.form textarea,
.form select {
  border-radius: 14px
}

@media(max-width:1260px) {
  .services-grid-v10 {
    grid-template-columns: repeat(3, 1fr)
  }

  .hero-v10-grid,
  .about-v10-grid {
    grid-template-columns: 1fr
  }

  .hero-card-v10 {
    justify-self: start
  }

  .insights-grid-v10 {
    grid-template-columns: 1fr
  }

  .insight-card-v10 {
    grid-template-columns: 240px 1fr
  }
}

@media(max-width:980px) {
  .site-header {
    padding: 0 20px
  }

  .header-cta {
    display: none
  }

  .main-nav {
    top: 78px
  }

  .value-mini-grid,
  .process-grid-v10,
  .testimonial-grid-v10 {
    grid-template-columns: 1fr 1fr
  }

  .step-v10:not(:last-child):after {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-panel-v10 {
    grid-template-columns: 1fr;
    text-align: center
  }

  .cta-icon {
    margin: auto
  }

  .cta-panel-v10 .btn {
    margin: auto
  }

  .services-grid-v10 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:680px) {
  .container {
    width: min(100% - 28px, 1320px)
  }

  .v10-hero {
    padding-top: 116px;
    min-height: auto
  }

  .hero-copy-v10 h1 {
    font-size: clamp(2.35rem, 12vw, 4.1rem)
  }

  .hero-copy-v10 .actions,
  .trust-row {
    width: 100%
  }

  .hero-copy-v10 .actions .btn {
    width: 100%
  }

  .hero-card-v10 {
    padding: 20px;
    border-radius: 24px
  }

  .hero-stat-grid,
  .value-mini-grid,
  .process-grid-v10,
  .testimonial-grid-v10,
  .services-grid-v10 {
    grid-template-columns: 1fr
  }

  .founder-v10 {
    grid-template-columns: 1fr
  }

  .founder-initials {
    width: 130px
  }

  .insight-card-v10 {
    grid-template-columns: 1fr
  }

  .insight-image {
    height: 220px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .section-head.split {
    display: block
  }

  .partners-track-v10 {
    gap: 28px
  }

  .brand b {
    font-size: 1.05rem
  }

  .brand small {
    font-size: .58rem
  }

  .brand img {
    width: 48px;
    height: 48px
  }

  .theme-toggle {
    width: 44px
  }

  .section {
    padding: 56px 0
  }
}


/* ===== V11 Rich Editor & Dashboard Refinements ===== */
.admin-main {
  color: #f8fbff
}

.admin-main .muted,
.admin-main label {
  color: #dbeafe
}

.admin-main h1,
.admin-main h2,
.admin-main h3 {
  color: #fff
}

.admin-head {
  align-items: center
}

.modal-box.wide-editor {
  width: min(1040px, 96vw);
  background: linear-gradient(180deg, #062b5f, #051f46);
  color: #fff
}

.editor-actions {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(5, 31, 70, .25), #051f46);
  padding-top: 14px;
  z-index: 3
}

.rich-field {
  display: grid;
  gap: 10px
}

.rich-label {
  font-weight: 900;
  color: #fff;
  letter-spacing: .2px
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 16px;
  position: sticky;
  top: 0;
  z-index: 2
}

.rich-toolbar span {
  width: 1px;
  height: 26px;
  background: var(--line);
  margin: 0 3px
}

.rich-toolbar button {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .09);
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer
}

.rich-toolbar button:hover {
  background: #fff;
  color: var(--blue)
}

.rich-editor {
  min-height: 360px;
  max-height: 60vh;
  overflow: auto;
  background: #ffffff;
  color: #0b1b35;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 18px;
  padding: 24px;
  outline: none;
  line-height: 1.8;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5)
}

.rich-editor:focus {
  box-shadow: 0 0 0 4px rgba(96, 165, 250, .28), inset 0 1px 0 rgba(255, 255, 255, .5)
}

.rich-editor h1,
.rich-editor h2,
.rich-editor h3 {
  color: #0b2b61;
  line-height: 1.18;
  margin: 1.2em 0 .55em
}

.rich-editor h1 {
  font-size: 2rem
}

.rich-editor h2 {
  font-size: 1.55rem
}

.rich-editor h3 {
  font-size: 1.25rem
}

.rich-editor p {
  margin: .7em 0
}

.rich-editor ul,
.rich-editor ol {
  padding-left: 24px
}

.rich-editor blockquote {
  border-left: 4px solid var(--blue);
  background: #eef5ff;
  margin: 18px 0;
  padding: 12px 16px;
  border-radius: 0 12px 12px 0
}

.rich-editor img {
  max-width: 100%;
  border-radius: 16px;
  margin: 14px 0
}

.rich-editor table,
.rich-output table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: #fff;
  color: #0b1b35;
  border-radius: 14px;
  overflow: hidden
}

.rich-editor th,
.rich-editor td,
.rich-output th,
.rich-output td {
  border: 1px solid #d8e5f7;
  padding: 12px;
  text-align: left
}

.rich-editor th,
.rich-output th {
  background: #eaf2ff;
  color: #073f94;
  font-weight: 900
}

.rich-help {
  margin: 0;
  color: #bfdbfe;
  font-size: .88rem
}

.rich-output {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  margin: 22px 0
}

.rich-output h1,
.rich-output h2,
.rich-output h3 {
  color: #fff;
  line-height: 1.25;
  margin: 1.1em 0 .55em
}

.rich-output h1 {
  font-size: 2.4rem
}

.rich-output h2 {
  font-size: 1.8rem
}

.rich-output h3 {
  font-size: 1.35rem
}

.rich-output p,
.rich-output li {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85
}

.rich-output a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px
}

.rich-output ul,
.rich-output ol {
  padding-left: 24px;
  margin: 16px 0
}

.rich-output blockquote {
  border-left: 4px solid #fff;
  background: rgba(255, 255, 255, .08);
  padding: 14px 18px;
  border-radius: 0 16px 16px 0;
  color: #fff
}

.rich-output img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  margin: 18px 0
}

.admin-social-preview {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 120px
}

.admin-social-preview svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex: none
}

.admin-social-preview small {
  color: #dbeafe;
  font-size: .82rem
}

.admin-table td .social svg,
.admin-table td svg {
  max-width: 24px;
  max-height: 24px
}

.admin-table td .line-icon {
  width: 28px;
  height: 28px
}

.admin-table th,
.admin-table td {
  font-size: .92rem
}

.admin-table td {
  color: #eaf2ff
}

.form input,
.form textarea,
.form select {
  font-size: .96rem
}

.modal-box .form input,
.modal-box .form textarea,
.modal-box .form select {
  background: rgba(255, 255, 255, .96);
  color: #061a38;
  border-color: rgba(255, 255, 255, .28)
}

.modal-box .form textarea {
  min-height: 150px
}

.modal-box .form select option {
  color: #061a38
}

.social-row {
  align-items: center
}

.social-fallback {
  display: none !important
}

.messages-table select {
  background: #fff;
  color: #052654;
  border-radius: 10px;
  padding: 8px
}

.theme-form input {
  background: #fff !important;
  color: #061a38 !important
}

.notice {
  line-height: 1.6
}

@media(max-width:760px) {
  .modal {
    padding: 8px
  }

  .modal-box.wide-editor {
    border-radius: 18px;
    padding: 16px
  }

  .rich-toolbar {
    position: relative
  }

  .rich-toolbar button {
    padding: 7px 8px;
    font-size: .82rem
  }

  .rich-editor {
    min-height: 300px;
    padding: 16px
  }

  .rich-output {
    padding: 18px
  }

  .rich-output h1 {
    font-size: 1.8rem
  }

  .rich-output h2 {
    font-size: 1.45rem
  }
}

/* ===== V12 Article Magazine Upgrade ===== */
.blog-magazine {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  color: #071f3d
}

.blog-magazine .container {
  width: min(1320px, calc(100% - 40px))
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 44px
}

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

.blog-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0 26px
}

.blog-section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 8px 0 0
}

.article-banner-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(6, 33, 78, .18);
  background: #004a9e;
  border: 1px solid rgba(10, 88, 202, .15);
  min-height: 360px
}

.article-banner-card.featured {
  min-height: 440px
}

.article-banner-image {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: #fff;
  overflow: hidden
}

.article-banner-image>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.article-banner-card:hover .article-banner-image>img {
  transform: scale(1.035)
}

.article-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 74, 158, .88) 0%, rgba(0, 74, 158, .58) 33%, rgba(0, 74, 158, .10) 68%, rgba(0, 74, 158, .05) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 74, 158, .06) 68%, #0061ca 100%)
}

.article-logo-mark {
  position: absolute;
  right: 34px;
  top: 24px;
  width: 120px;
  height: 88px;
  display: grid;
  place-items: center;
  background: #0061ca;
  mask-image: linear-gradient(#000, #000);
  border-radius: 14px 14px 40px 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .22)
}

.article-logo-mark:before {
  content: "";
  position: absolute;
  inset: -10px;
  background: rgba(0, 97, 202, .96);
  clip-path: polygon(0 22%, 100% 0, 92% 70%, 12% 100%);
  z-index: -1
}

.article-logo-mark img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  filter: brightness(0) invert(1)
}

.article-banner-text {
  position: absolute;
  left: 42px;
  top: 54px;
  width: min(680px, 64%);
  display: grid;
  gap: 18px
}

.article-banner-text small {
  align-self: start;
  width: max-content;
  max-width: 100%;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 1.5px;
  font-size: .72rem
}

.article-banner-text b {
  font-size: clamp(2rem, 4.7vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: .055em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  font-weight: 950;
  max-width: 900px
}

.article-banner-text em {
  margin-top: 16px;
  width: max-content;
  min-width: 220px;
  text-align: center;
  font-style: normal;
  font-weight: 950;
  font-size: 1.18rem;
  letter-spacing: .08em;
  padding: 18px 32px;
  border-radius: 999px;
  background: #0058c9;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 64, 160, .32)
}

.article-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: #0061ca;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  gap: 24px
}

.article-bottom-bar .social-row {
  margin: 0;
  gap: 16px
}

.article-bottom-bar .social {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  border-radius: 0
}

.article-bottom-bar .social svg {
  width: 27px;
  height: 27px;
  fill: #fff !important;
  color: #fff !important
}

.article-bottom-bar strong {
  font-size: 1.5rem;
  letter-spacing: .14em;
  font-weight: 950;
  color: #fff;
  white-space: nowrap
}

.article-detail-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #002b69 0%, #0058c9 55%, #002b69 100%);
  color: #fff;
  position: relative;
  overflow: hidden
}

.article-detail-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .15), transparent 28%), linear-gradient(90deg, rgba(0, 0, 0, .08), transparent);
  pointer-events: none
}

.article-detail-hero .container {
  position: relative;
  z-index: 1
}

.article-detail-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 1.03;
  max-width: 980px;
  margin: 20px 0 16px;
  letter-spacing: -.04em
}

.article-detail-hero p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 1.12rem
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: #eef6ff
}

.article-meta-line span {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800
}

.article-detail-page {
  background: #f7fbff;
  color: #071f3d
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start
}

.article-main {
  min-width: 0
}

.article-cover.styled {
  height: auto;
  aspect-ratio: 16/7;
  margin: 0 0 26px;
  border: 0;
  box-shadow: 0 28px 75px rgba(6, 33, 78, .14)
}

.article-rich {
  background: #fff;
  color: #071f3d;
  border: 1px solid rgba(10, 88, 202, .10);
  box-shadow: 0 18px 60px rgba(6, 33, 78, .08);
  padding: 38px;
  border-radius: 28px
}

.article-rich h1,
.article-rich h2,
.article-rich h3 {
  color: #073f94
}

.article-rich p,
.article-rich li {
  color: #334b6d
}

.article-rich a {
  color: #0a58ca
}

.article-rich blockquote {
  border-left-color: #0a58ca;
  background: #eef6ff;
  color: #073f94
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px
}

.side-card {
  background: #fff;
  color: #071f3d;
  border: 1px solid rgba(10, 88, 202, .10);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 45px rgba(6, 33, 78, .08)
}

.side-card h3 {
  margin: 0 0 14px;
  color: #073f94
}

.side-card p,
.side-card li {
  color: #516680
}

.side-card .social {
  background: #eef6ff;
  border-color: #d8e9ff;
  color: #0a58ca
}

.side-card .social svg {
  fill: #0a58ca
}

.article-author-box {
  margin: 24px 0;
  background: #fff;
  color: #071f3d;
  border: 1px solid rgba(10, 88, 202, .10);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 14px 45px rgba(6, 33, 78, .07)
}

.author-badge {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  background: #0a58ca;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 950;
  flex: none
}

.related-heading {
  color: #073f94;
  margin: 36px 0 18px
}

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

.image-upload-field {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06)
}

.image-upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.image-upload-row small {
  color: #bfdbfe;
  line-height: 1.45
}

.image-upload-preview {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #fff
}

.modal-box .image-upload-field input {
  background: #fff !important;
  color: #061a38 !important
}

.admin-main .social-row {
  gap: 8px
}

.admin-main .social {
  width: 34px;
  height: 34px;
  border-radius: 10px
}

.admin-main .social svg {
  width: 18px;
  height: 18px
}

.blog-page .page-title {
  max-width: 900px
}

@media(max-width:1080px) {

  .blog-hero-grid,
  .blog-banner-grid {
    grid-template-columns: 1fr
  }

  .article-layout {
    grid-template-columns: 1fr
  }

  .article-sidebar {
    position: static
  }

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

  .article-banner-card.featured {
    min-height: 390px
  }

  .article-banner-text {
    width: 70%
  }

  .article-bottom-bar strong {
    font-size: 1.1rem
  }
}

@media(max-width:720px) {
  .blog-magazine .container {
    width: min(100% - 26px, 1320px)
  }

  .article-banner-card,
  .article-banner-card.featured {
    min-height: 430px;
    border-radius: 22px
  }

  .article-banner-text {
    left: 24px;
    top: 34px;
    width: 82%;
    gap: 12px
  }

  .article-banner-text b {
    font-size: clamp(2rem, 10vw, 3.2rem);
    letter-spacing: .03em
  }

  .article-logo-mark {
    right: 18px;
    top: 16px;
    width: 92px;
    height: 66px
  }

  .article-logo-mark img {
    width: 58px;
    height: 58px
  }

  .article-banner-text em {
    min-width: 170px;
    padding: 14px 20px;
    font-size: 1rem
  }

  .article-bottom-bar {
    height: 70px;
    padding: 0 22px
  }

  .article-bottom-bar strong {
    font-size: .72rem;
    letter-spacing: .08em
  }

  .article-bottom-bar .social-row {
    gap: 6px
  }

  .article-bottom-bar .social {
    width: 22px;
    height: 22px
  }

  .article-bottom-bar .social svg {
    width: 20px;
    height: 20px
  }

  .article-detail-hero {
    padding: 96px 0 56px
  }

  .article-rich {
    padding: 22px
  }

  .article-cover.styled {
    aspect-ratio: 16/10
  }

  .article-author-box {
    align-items: flex-start;
    flex-direction: column
  }
}


/* ===== V13 BLOG LISTING + HIDDEN ADMIN ACCESS ===== */
.blog-v13 {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  color: #071f3d
}

.blog-v13 .container {
  width: min(1320px, calc(100% - 36px))
}

.blog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px
}

.blog-toolbar h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  margin: 12px 0 8px;
  color: #071f3d
}

.blog-toolbar p {
  margin: 0;
  color: #516680
}

.blog-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 520px
}

.blog-category-pills span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #d7e6fa;
  background: #fff;
  color: #073f94;
  font-weight: 900;
  font-size: .82rem;
  box-shadow: 0 8px 25px rgba(6, 33, 78, .06)
}

.blog-v13-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch
}

.blog-v13-grid.layout-featured .blog-display-card:first-child {
  grid-column: span 2
}

.blog-v13-grid.layout-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.blog-display-card {
  background: #fff;
  border: 1px solid rgba(10, 88, 202, .10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 33, 78, .10);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: .25s
}

.blog-display-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(6, 33, 78, .16)
}

.blog-display-image {
  position: relative;
  display: block;
  background: #0058c9;
  aspect-ratio: 16/9;
  overflow: hidden
}

.blog-display-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.blog-display-card:hover .blog-display-image img {
  transform: scale(1.035)
}

.blog-image-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #073f94;
  font-weight: 950;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .16)
}

.blog-display-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.blog-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #647d9f;
  font-size: .84rem;
  font-weight: 800
}

.blog-display-body h3 {
  font-size: 1.32rem;
  line-height: 1.25;
  color: #071f3d;
  margin: 0
}

.blog-display-body p {
  color: #516680;
  margin: 0;
  line-height: 1.7
}

.blog-read {
  margin-top: auto;
  color: #0a58ca;
  font-weight: 950;
  display: inline-flex;
  gap: 7px;
  align-items: center
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 44px 0 0;
  flex-wrap: wrap
}

.blog-pagination a {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 13px;
  border: 1px solid #d7e6fa;
  background: #fff;
  color: #073f94;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(6, 33, 78, .06)
}

.blog-pagination a.active {
  background: #0a58ca;
  color: #fff;
  border-color: #0a58ca
}

.blog-pagination a.disabled {
  opacity: .45;
  pointer-events: none
}

.admin-menu a[href*="blogDisplay"] {
  background: rgba(255, 255, 255, .07)
}

.admin-secret-note {
  font-size: .86rem;
  color: #bfdbfe
}

.footer-bottom a[href*="admin"] {
  display: none !important
}

@media(max-width:1100px) {

  .blog-v13-grid,
  .blog-v13-grid.layout-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .blog-v13-grid.layout-featured .blog-display-card:first-child {
    grid-column: span 2
  }

  .blog-toolbar {
    grid-template-columns: 1fr
  }

  .blog-category-pills {
    justify-content: flex-start;
    max-width: none
  }
}

@media(max-width:720px) {
  .blog-v13 .container {
    width: min(100% - 24px, 1320px)
  }

  .blog-v13-grid,
  .blog-v13-grid.layout-compact {
    grid-template-columns: 1fr
  }

  .blog-v13-grid.layout-featured .blog-display-card:first-child {
    grid-column: auto
  }

  .blog-display-card {
    border-radius: 22px
  }

  .blog-display-body {
    padding: 20px
  }

  .blog-toolbar h2 {
    font-size: 2rem
  }

  .blog-category-pills span {
    font-size: .74rem;
    padding: 8px 11px
  }
}

/* ===== V14 Blog polish, category filtering, reading-time clarity, and security wording fixes ===== */
.insights-v10 {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%) !important;
  color: #071f3d !important
}

.insights-v10 .section-head h2,
.insights-v10 .section-head p {
  color: #071f3d !important
}

.insights-v10 .section-head p {
  color: #516680 !important;
  margin-top: 6px
}

.insights-grid-v10 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important
}

.insight-card-v10 {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(10, 88, 202, .11) !important;
  box-shadow: 0 24px 70px rgba(6, 33, 78, .10) !important
}

.insight-image {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16/9 !important;
  background: #0061ca !important;
  overflow: hidden !important
}

.insight-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important
}

.insight-body {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 11px !important;
  flex: 1 !important
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.insight-body h3 {
  font-size: 1.22rem !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  color: #071f3d !important;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.insight-body h3 a {
  color: #071f3d !important
}

.insight-body p {
  color: #516680 !important;
  margin: 0 !important;
  line-height: 1.65 !important;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.insight-body .read-more {
  margin-top: auto !important;
  color: #0a58ca !important
}

.blog-category-pills a {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid #d7e6fa;
  background: #fff;
  color: #073f94;
  font-weight: 950;
  font-size: .82rem;
  box-shadow: 0 8px 25px rgba(6, 33, 78, .06);
  transition: .22s;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.blog-category-pills a:hover,
.blog-category-pills a.active {
  background: #0a58ca;
  color: #fff;
  border-color: #0a58ca;
  transform: translateY(-2px)
}

.blog-category-pills span {
  display: none !important
}

.blog-v13 .eyebrow,
.insights-v10 .eyebrow {
  background: #eaf3ff !important;
  color: #0a58ca !important;
  border-color: #d5e8ff !important
}

.blog-display-card {
  background: #fff !important;
  color: #071f3d !important
}

.blog-display-body h3,
.blog-display-body h3 a {
  color: #071f3d !important
}

.blog-display-body p,
.blog-card-meta {
  color: #516680 !important
}

.blog-card-meta span {
  background: #f0f6ff;
  border: 1px solid #dcecff;
  border-radius: 999px;
  padding: 5px 9px;
  color: #385b82 !important
}

.blog-display-image img {
  object-fit: cover !important;
  object-position: center !important
}

.blog-read,
.service-more,
.read-more {
  color: #0a58ca !important
}

.empty-state {
  background: #fff !important;
  color: #071f3d !important;
  border: 1px solid rgba(10, 88, 202, .14) !important
}

.empty-state .muted {
  color: #516680 !important
}

.article-detail-page .blog-card {
  background: #fff !important;
  color: #071f3d !important;
  border: 1px solid rgba(10, 88, 202, .10) !important;
  box-shadow: 0 16px 45px rgba(6, 33, 78, .08) !important
}

.article-detail-page .blog-content h3,
.article-detail-page .blog-content h3 a,
.related-grid .blog-content h3,
.related-grid .blog-content h3 a {
  color: #071f3d !important
}

.article-detail-page .blog-content .muted,
.related-grid .blog-content .muted {
  color: #516680 !important
}

.related-grid .blog-meta span {
  color: #385b82 !important;
  background: #f0f6ff;
  border-radius: 999px;
  padding: 4px 8px
}

.related-grid .blog-img {
  background: #0061ca !important;
  aspect-ratio: 16/9 !important;
  height: auto !important
}

.related-grid .blog-img img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important
}

.article-final-cta {
  background: #f7fbff !important;
  color: #071f3d !important
}

.article-final-cta .cta-panel {
  background: linear-gradient(135deg, #06214e, #0a58ca) !important;
  color: #fff !important;
  border: 0 !important
}

.article-final-cta .cta-panel p {
  color: #dbeafe !important
}

.secure-badge {
  font-size: .92rem;
  color: #cfe4ff !important;
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px
}

.secure-badge .line-icon {
  width: 22px;
  height: 22px;
  flex: none
}

@media(max-width:1100px) {
  .insights-grid-v10 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

@media(max-width:720px) {
  .insights-grid-v10 {
    grid-template-columns: 1fr !important
  }

  .blog-category-pills {
    justify-content: flex-start !important
  }

  .blog-category-pills a {
    font-size: .75rem;
    padding: 8px 11px
  }

  .insight-body {
    padding: 20px !important
  }

  .blog-toolbar h2 {
    font-size: 1.85rem !important
  }
}


/* ===== V15 SECURITY & TECHNICAL ENHANCEMENTS ===== */

/* Hide admin links ONLY in public nav and footer - NOT inside the dashboard sidebar */
.site-header a[href*="admin"],
.site-footer a[href*="admin"],
.main-nav a[href*="admin"],
.footer-bottom a[href*="admin"],
.site-header a[href*="dashboard"],
.site-footer a[href*="dashboard"] {
  display: none !important;
}

/* Theme color picker improvements */
.theme-form input[type="color"] {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .25) !important;
  background: transparent !important;
  color: transparent !important;
}

.theme-form input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.theme-form input[type="color"]::-webkit-color-swatch {
  border-radius: 6px;
  border: none;
}

/* Login security improvements */
#loginStatus .notice {
  margin-top: 12px;
}

/* Contact form improvements */
#formStatus .notice {
  margin-top: 14px;
  font-weight: 700;
}

/* Blog improvements - equal height cards, clamped text */
.blog-display-body h3 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-display-body p {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Related articles - ensure dark text on light background */
.related-grid .insight-card-v10 h3 a,
.related-grid .blog-display-body h3 {
  color: #071f3d !important;
}

.related-grid .insight-card-v10 p,
.related-grid .blog-display-body p {
  color: #516680 !important;
}

/* Article reading time - clear visibility */
.reading-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(10, 88, 202, .10);
  color: #0a58ca;
  font-weight: 800;
  font-size: .82rem;
}

/* SEO score bar improvements */
.seo-meter {
  height: 14px;
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
  overflow: hidden;
  margin: 8px 0;
}

.seo-meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4ade80, #86efac);
  transition: width .4s ease;
}

/* Color scheme improvements */
:root {
  --blue: #0057C2;
  --deep: #0B74E5;
  --dark: #061B36;
  --navy: #031225;
  --soft: #F4F8FF;
  --muted: #A9BDD6;
  --muted2: #64748B;
  --glass: rgba(255, 255, 255, .10);
  --line: #1B3F68;
  --radius: 24px;
}

/* Dashboard - responsive tables */
@media (max-width: 900px) {
  .table-wrap {
    border-radius: 16px;
  }

  .admin-table {
    min-width: 600px;
  }

  .admin-table th,
  .admin-table td {
    padding: 10px;
    font-size: .86rem;
  }
}

/* Accessibility improvements */
:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 3px;
  border-radius: 6px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Lazy loading images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Performance: preload critical resources hint in CSS */
.site-header .brand img {
  content-visibility: auto;
}

/* Blog pagination improvements */
.blog-pagination {
  gap: 8px;
  margin-top: 48px;
}

.blog-pagination a {
  transition: .2s;
  font-size: .92rem;
}

/* Contact form - security badge */
.secure-badge {
  font-size: .88rem;
  margin-top: 12px;
}

/* Dashboard - save confirmation feedback */
.save-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(74, 222, 128, .15);
  color: #bbf7d0;
  border: 1px solid rgba(74, 222, 128, .25);
  font-weight: 800;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Unsaved changes indicator */
.admin-main form.dirty::before {
  content: "● Unsaved changes";
  display: block;
  color: #fbbf24;
  font-size: .84rem;
  font-weight: 900;
  margin-bottom: 12px;
}

/* Dark mode: maintain contrast */
body.visitor-dark .blog-magazine,
body.visitor-dark .about-v10,
body.visitor-dark .process-section-v10,
body.visitor-dark .insights-v10 {
  background: #06193a !important;
  color: #f0f7ff !important;
}

body.visitor-dark .value-mini-grid article,
body.visitor-dark .step-v10,
body.visitor-dark .insight-card-v10,
body.visitor-dark .blog-display-card {
  background: #0e2746 !important;
  border-color: #1B3F68 !important;
  color: #e8f2ff !important;
}

body.visitor-dark .value-mini-grid b,
body.visitor-dark .step-v10 h3,
body.visitor-dark .insight-body h3,
body.visitor-dark .insight-body h3 a,
body.visitor-dark .blog-display-body h3 {
  color: #f0f7ff !important;
}

body.visitor-dark .value-mini-grid p,
body.visitor-dark .step-v10 p,
body.visitor-dark .insight-body p,
body.visitor-dark .blog-display-body p {
  color: #A9BDD6 !important;
}

/* Footer - no license expiry date shown */
.license-expiry {
  display: none !important;
}

/* WhatsApp float accessible label */
.whatsapp-float[aria-label] {
  display: none !important;
}


/* V17 dashboard visibility and usability fixes */
.admin-shell.v9-admin-shell {
  min-height: calc(100vh - 78px);
  align-items: stretch;
  background: linear-gradient(135deg, #061b36, #031225) !important;
}

.admin-side {
  max-height: calc(100vh - 78px);
  overflow-y: auto;
  position: sticky;
  top: 78px;
  padding-bottom: 22px;
}

.admin-main {
  min-height: calc(100vh - 78px);
  overflow: visible;
  padding-bottom: 80px;
}

.admin-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
}

.admin-secret-note {
  margin: 18px 18px 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  line-height: 1.45;
}

.admin-visible-note {
  margin-bottom: 22px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 24px;
  margin: 24px 0;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.module-grid.compact {
  grid-template-columns: 1fr;
}

.module-tile {
  display: block;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  padding: 16px 17px;
  transition: .2s;
  color: #fff;
}

.module-tile:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
}

.module-tile b {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.module-tile span {
  display: block;
  color: #c5d9f2;
  font-size: .86rem;
  line-height: 1.35;
}

.stats-admin .card h3 {
  font-size: 2rem;
  margin: 0;
  color: #fff;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 27, 54, .88);
  backdrop-filter: blur(14px);
}

@media(max-width:980px) {
  .admin-shell.v9-admin-shell {
    display: block
  }

  .admin-side {
    position: relative;
    top: 0;
    max-height: none
  }

  .admin-main {
    padding: 22px
  }

  .admin-dashboard-grid {
    grid-template-columns: 1fr
  }

  .module-grid {
    grid-template-columns: 1fr
  }

  .admin-topbar {
    position: relative
  }
}

/* Animated Skeleton Loader & Shimmer Styles for Premium UI Experience */
.skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 18px 0;
}

.skeleton-header {
  height: 38px;
  width: 40%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.skeleton-line {
  height: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.skeleton-line:last-child {
  width: 75%;
}

.animate-shimmer {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.08) 25%,
      rgba(255, 255, 255, 0.16) 37%,
      rgba(255, 255, 255, 0.08) 63%);
  background-size: 400% 100%;
  animation: shimmer-animation 1.4s ease infinite;
}

@keyframes shimmer-animation {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}