/* ==========================================================================
   Storieus Solutions — Global Design System
   Colors: primary #f37221, secondary #174795, bg #ffffff
   Fonts:  Poppins (display), Manrope (headings), Inter (body)
   ========================================================================== */

:root {
  --primary: #f37221;
  --primary-600: #e0631a;
  --primary-50: #fff2e9;
  --secondary: #174795;
  --secondary-700: #0f3573;
  --secondary-50: #eaf0fb;
  --bg: #ffffff;
  --surface: #f7f9fc;
  --ink: #0b1220;
  --ink-2: #39435a;
  --muted: #6b7590;
  --line: #e6ebf3;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 20px rgba(15, 30, 60, .06);
  --shadow-md: 0 20px 45px rgba(15, 30, 60, .10);
  --shadow-lg: 0 30px 80px rgba(15, 30, 60, .14);
  --grad-primary: linear-gradient(135deg, #ff8a3d 0%, #f37221 55%, #e0631a 100%);
  --grad-secondary: linear-gradient(135deg, #2a63c4 0%, #174795 55%, #0f3573 100%);
  --grad-hero: radial-gradient(1200px 600px at 10% 10%, #eaf0fb 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 20%, #fff2e9 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  --container: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color .2s
}

a:hover {
  color: var(--primary)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--secondary);
  margin: 0 0 .6em;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 700
}

h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  letter-spacing: -.025em;
  text-transform: none
}

h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  letter-spacing: -.02em
}

h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  letter-spacing: -.015em
}

p {
  margin: 0 0 1em;
  color: var(--ink-2)
}

::selection {
  background: var(--primary);
  color: #fff
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .25s;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn i {
  transition: transform .25s
}

.btn:hover i {
  transform: translateX(3px)
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(243, 114, 33, .35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(243, 114, 33, .45);
  color: #fff
}

.btn-outline {
  background: #fff;
  color: var(--secondary);
  border: 1.5px solid var(--line)
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary)
}

.btn-ghost {
  background: transparent;
  color: var(--secondary)
}

.btn-sm {
  padding: .65rem 1.05rem;
  font-size: .85rem
}

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

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-primary);
  z-index: 200;
  transition: width .1s linear;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(15, 30, 60, .06);
  padding: 10px 0
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(243, 114, 33, .4);
}

.brand-accent {
  color: var(--primary)
}

.brand-light,
.brand-light .brand-text {
  color: #fff
}

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

.main-nav .menu {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center
}

.menu>li>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .55rem .95rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
  transition: background .2s, color .2s;
}

.menu>li>a:hover,
.menu>li>a.active {
  background: var(--secondary-50);
  color: var(--secondary)
}

.menu>li>a i {
  font-size: .7rem;
  transition: transform .25s
}

.has-mega:hover>a i {
  transform: rotate(180deg)
}

/* Premium dropdown chevron */
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.mega-trigger {
  gap: 8px
}

.mega-trigger .mega-chev-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(23, 71, 149, .06);
  transition: background .25s ease, transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s ease;
  margin-left: 2px
}

.mega-trigger .mega-chev {
  width: 18px;
  height: 18px;
  display: block;
  color: var(--secondary, #174795);
  opacity: .85;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), opacity .25s ease, color .25s ease;
  transform-origin: 50% 55%;
  will-change: transform;
  shape-rendering: geometricPrecision
}

.mega-trigger:hover .mega-chev-wrap {
  background: rgba(243, 114, 33, .12);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -8px rgba(243, 114, 33, .45)
}

.mega-trigger:hover .mega-chev {
  opacity: 1;
  color: var(--primary, #F37221);
  transform: scale(1.05)
}

.has-mega:hover>.mega-trigger .mega-chev,
.has-mega.open>.mega-trigger .mega-chev,
.mega-trigger[aria-expanded="true"] .mega-chev {
  transform: rotate(180deg) scale(1.05);
  opacity: 1;
  color: var(--primary, #F37221)
}

.has-mega.open>.mega-trigger .mega-chev-wrap,
.mega-trigger[aria-expanded="true"] .mega-chev-wrap {
  background: rgba(243, 114, 33, .14)
}

/* Mega menu */
.has-mega {
  position: static
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 36px 0;
}

.has-mega:hover .mega-menu,
.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.mega-col h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  color: var(--secondary);
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.mega-col h4.mt {
  margin-top: 22px
}

.mega-col h4 i {
  color: var(--primary)
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mega-col a {
  color: var(--ink-2);
  font-size: .9rem;
  padding: 6px 10px;
  border-radius: 10px;
  display: block;
  transition: all .2s
}

.mega-col a:hover {
  background: var(--primary-50);
  color: var(--primary);
  transform: translateX(3px)
}

.mega-cta {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: var(--grad-secondary);
  color: #fff
}

.mega-cta p {
  color: #dbe4f7;
  margin: 0 0 10px;
  font-size: .9rem
}

/* Nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all .3s
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ===== Sections ===== */
section {
  padding: 50px 0
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--secondary-50);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary)
}

/* ===== Hero ===== */
.hero {
  padding: 160px 0 100px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  z-index: 0;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  opacity: .15
}

.hero::after {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -200px;
  left: -150px;
  opacity: .12
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

.hero h1 span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 560px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px
}

.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap
}

.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: .9rem
}

.hero-trust i {
  color: var(--primary)
}

/* Hero illustration (glass cards stack) */
.hero-illus {
  position: relative;
  height: 460px
}

.glass {
  position: absolute;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.glass.card-1 {
  top: 0;
  left: 10%;
  width: 260px;
  animation: float 6s ease-in-out infinite
}

.glass.card-2 {
  top: 120px;
  right: 0;
  width: 230px;
  animation: float 6s ease-in-out infinite .8s
}

.glass.card-3 {
  bottom: 0;
  left: 0;
  width: 280px;
  animation: float 6s ease-in-out infinite 1.6s
}

.glass .g-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-head)
}

.glass .g-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  color: #fff
}

.glass .bar {
  height: 6px;
  border-radius: 6px;
  background: var(--secondary-50);
  margin-top: 12px;
  overflow: hidden;
  position: relative
}

.glass .bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background: var(--grad-primary);
  border-radius: 6px
}

.glass .stat {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--secondary);
  font-size: 1.6rem
}

.glass .sub {
  color: var(--muted);
  font-size: .8rem
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* ===== Stats ===== */
.stats {
  padding: 60px 0;
  background: var(--surface)
}

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

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--secondary);
  line-height: 1
}

.stat-num .plus {
  color: var(--primary)
}

.stat-label {
  color: var(--muted);
  margin-top: 6px;
  font-size: .9rem
}

/* ===== Trusted by ===== */
.trusted {
  padding: 60px 0
}

.trusted p.center {
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 30px
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  opacity: .75
}

.logos .logo {
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
  transition: all .25s;
}

.logos .logo:hover {
  background: #fff;
  color: var(--secondary);
  box-shadow: var(--shadow-sm)
}

/* ===== About preview ===== */
.about-preview .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: var(--grad-secondary);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .25), transparent 50%)
}

.about-visual .tile {
  position: absolute;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  color: #fff;
  padding: 16px 20px;
}

.about-visual .tile.t1 {
  top: 12%;
  left: 10%;
  font-weight: 700
}

.about-visual .tile.t2 {
  bottom: 14%;
  right: 10%;
  font-weight: 700
}

.about-visual .tile.t3 {
  top: 44%;
  right: 14%;
  font-weight: 700
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  display: grid;
  gap: 12px
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2)
}

.about-list i {
  color: var(--primary);
  margin-top: 4px
}

/* ===== Services ===== */
.services {
  background: var(--surface)
}

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

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.svc-card>* {
  position: relative;
  z-index: 1
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: all .3s;
}

.svc-card:hover .svc-icon {
  background: #fff;
  color: var(--primary)
}

.svc-card h3 {
  transition: color .3s
}

.svc-card p {
  transition: color .3s
}

.svc-card:hover h3,
.svc-card:hover p {
  color: #fff
}

.svc-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  margin-top: 10px;
  font-size: .9rem;
  transition: color .3s
}

.svc-card:hover .arrow {
  color: #fff
}

.svc-card:hover .arrow i {
  transform: translateX(4px)
}

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.why-card {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfcff);
  border: 1px solid var(--line);
  transition: all .3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.why-card .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--primary-50);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px
}

.why-card p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0
}

/* ===== Industries ===== */
.industries {
  background: var(--surface)
}

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

.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: all .3s;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary)
}

.industry-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px
}

.industry-card p {
  margin: 0;
  font-weight: 600;
  color: var(--secondary);
  font-size: .9rem
}

/* ===== Portfolio ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.port-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--grad-secondary);
  color: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.port-card:nth-child(2) {
  background: linear-gradient(135deg, #f37221, #e0631a)
}

.port-card:nth-child(3) {
  background: linear-gradient(135deg, #0f3573, #174795)
}

.port-card:nth-child(4) {
  background: linear-gradient(135deg, #2a63c4, #174795)
}

.port-card:nth-child(5) {
  background: linear-gradient(135deg, #ff8a3d, #f37221)
}

.port-card:nth-child(6) {
  background: linear-gradient(135deg, #1f4fa8, #0f3573)
}

.port-card .p-inner {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .35));
  transition: transform .4s;
}

.port-card:hover .p-inner {
  transform: translateY(-6px)
}

.port-card .tag {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85
}

.port-card h4 {
  color: #fff;
  font-size: 1.25rem;
  margin: 6px 0 0
}

/* ===== Case studies ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.case-card {
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  transition: all .3s;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.case-card .kpi {
  display: flex;
  gap: 20px;
  margin: 14px 0 18px
}

.case-card .kpi div {
  flex: 1
}

.case-card .kpi .k {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1
}

.case-card .kpi .l {
  color: var(--muted);
  font-size: .8rem;
  margin-top: 4px
}

.case-card .industry {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em
}

/* ===== Testimonials — premium redesign ===== */
.testimonials {
  background: var(--surface);
  position: relative;
  overflow: hidden
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 300px at 15% 10%, rgba(23, 71, 149, .08), transparent 60%),
    radial-gradient(500px 260px at 85% 90%, rgba(23, 71, 149, .06), transparent 60%);
}

.testimonials .container {
  position: relative
}

.test-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(23, 71, 149, .10);
  border-radius: 22px;
  padding: 34px 30px 26px;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 28px -22px rgba(15, 23, 42, .18);
  overflow: hidden;
}

.test-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .35s ease;
}

.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -28px rgba(23, 71, 149, .35);
  border-color: rgba(23, 71, 149, .22)
}

.test-card:hover::after {
  opacity: 1
}

.test-card .test-quote {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.05rem;
  background: var(--grad-primary);
  box-shadow: 0 14px 26px -14px rgba(23, 71, 149, .55);
}

.test-card .stars {
  color: #f5b400;
  letter-spacing: 3px;
  font-size: .95rem;
  margin: 2px 0 2px
}

.test-card .test-quote-text {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-weight: 450
}

.test-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(23, 71, 149, .18)
}

.test-user .av-ring {
  padding: 2px;
  border-radius: 50%;
  background: var(--grad-primary);
  flex: 0 0 auto;
  box-shadow: 0 10px 20px -10px rgba(23, 71, 149, .55);
}

.test-user .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  border: 2px solid #fff;
}

.test-user .test-meta {
  flex: 1;
  min-width: 0
}

.test-user .name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  font-size: .98rem;
  line-height: 1.2
}

.test-user .role {
  color: var(--muted);
  font-size: .83rem;
  margin-top: 3px
}

.test-user .test-verified {
  color: #1a8a5a;
  font-size: 1.05rem;
  line-height: 1
}

/* ===== Tech stack ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px
}

.tech-chip {
  aspect-ratio: 1/1;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--secondary);
  transition: all .3s;
}

.tech-chip:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
  color: var(--primary)
}

/* ===== FAQ ===== */
.faq,
.faq-section {
  background: var(--surface)
}

/* ===== Blogs ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.blog-thumb {
  aspect-ratio: 16/10;
  background: var(--grad-secondary);
  position: relative
}

.blog-card:nth-child(2) .blog-thumb {
  background: var(--grad-primary)
}

.blog-card:nth-child(3) .blog-thumb {
  background: linear-gradient(135deg, #2a63c4, #0f3573)
}

.blog-body {
  padding: 22px
}

.blog-body .meta {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em
}

.blog-body h4 {
  margin: 8px 0 10px;
  font-size: 1.1rem
}

.blog-body p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0
}

/* ===== CTA banner — premium, compact, conversion-focused ===== */
/* ===== Let's Talk CTA — compact premium ===== */
.cta-banner {
  padding: 40px 0;
  background: transparent
}

.cta-inner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #174795;
  color: #fff;
  border-radius: 22px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 30px 60px -28px rgba(23, 71, 149, .55), 0 6px 18px -8px rgba(0, 0, 0, .2);
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .08);
  animation: ctaRise .7s cubic-bezier(.2, .7, .2, 1) both;
}

.cta-inner .cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(600px 220px at 15% 0%, rgba(243, 114, 33, .18), transparent 60%),
    radial-gradient(520px 200px at 100% 100%, rgba(255, 255, 255, .08), transparent 65%);
}

@keyframes ctaRise {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}

.cta-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F37221;
  box-shadow: 0 0 0 0 rgba(243, 114, 33, .6);
  animation: ctaPulse 1.8s ease-out infinite
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 114, 33, .65)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(243, 114, 33, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(243, 114, 33, 0)
  }
}

.cta-title {
  color: #fff;
  max-width: 720px;
  margin: 2px auto 0;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 800
}

.cta-sub {
  color: rgba(255, 255, 255, .78);
  max-width: 560px;
  margin: 0 auto;
  font-size: .98rem;
  line-height: 1.55
}

.cta-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  width: 100%;
}

/* Primary hero button */
.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F37221, #ff8a45);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px -14px rgba(243, 114, 33, .7), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -14px rgba(243, 114, 33, .85), inset 0 1px 0 rgba(255, 255, 255, .3)
}

.cta-primary-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}

.cta-primary-btn:hover {
  background: rgba(243, 114, 33, .7);
  color: #fff !important;
}

.cta-primary-btn:hover .cta-primary-title,
.cta-primary-btn:hover .cta-primary-sub,
.cta-primary-btn:hover .cta-primary-icon-wrap,
.cta-primary-btn:hover .cta-primary-arrow {
  color: #fff !important;
}

.cta-primary-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15
}

.cta-primary-title {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em
}

.cta-primary-sub {
  font-size: .72rem;
  font-weight: 500;
  opacity: .9;
  margin-top: 2px;
  letter-spacing: .02em
}

.cta-primary-arrow {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .15);
  color: #fff;
  font-size: .85rem;
  transition: transform .3s ease, background .3s ease;
}

.cta-primary-btn:hover .cta-primary-arrow {
  transform: translateX(4px);
  background: rgba(0, 0, 0, .25)
}

/* Split quick-actions panel */
.cta-quick-actions {
  display: inline-flex;
  align-items: stretch;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  padding: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-quick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}

.cta-quick:hover {
  background: rgba(255, 255, 255, .12)
}

.cta-quick-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}

.cta-quick-whatsapp .cta-quick-icon {
  background: rgba(37, 211, 102, .2);
  color: #4ade80
}

.cta-quick-call .cta-quick-icon {
  background: rgba(255, 255, 255, .15);
  color: #fff
}

.cta-quick-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15
}

.cta-quick-label {
  font-weight: 700;
  font-size: .9rem
}

.cta-quick-meta {
  font-size: .7rem;
  opacity: .75;
  margin-top: 1px
}

.cta-quick-divider {
  width: 1px;
  background: rgba(255, 255, 255, .14);
  margin: 6px 0
}

/* Trust strip */
.cta-trust {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 500;
}

.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.cta-trust i {
  color: #F37221;
  font-size: .78rem
}

/* ===== Footer — compact premium ===== */
.site-footer {
  background: #0b1220;
  color: #c8d1e5;
  padding: 48px 0 0;
  margin-top: 20px;
  position: relative
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 71, 149, .6), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 36px
}

.site-footer h5 {
  color: #fff;
  font-family: var(--font-head);
  margin: 0 0 16px;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.foot-col ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px
}

.foot-col ul a {
  color: #b6c1d8;
  font-size: .88rem;
  transition: color .2s, transform .2s, padding .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.foot-col ul a i {
  font-size: .62rem;
  color: var(--primary);
  opacity: .7;
  transition: transform .2s
}

.foot-col ul a:hover {
  color: #fff
}

.foot-col ul a:hover i {
  transform: translateX(3px);
  opacity: 1
}

.foot-brand .brand {
  margin-bottom: 14px
}

.foot-brand p {
  color: #8f9ab5;
  margin: 12px 0 18px;
  font-size: .9rem;
  line-height: 1.65;
  max-width: 360px
}

.foot-news {
  margin-bottom: 18px
}

.foot-news-row {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 12px;
  padding: 5px 5px 5px 12px;
  transition: border-color .25s, background .25s;
}

.foot-news-row:focus-within {
  border-color: var(--primary);
  background: rgba(255, 255, 255, .07)
}

.foot-news-ico {
  color: #7a869f;
  font-size: .85rem
}

.foot-news-row input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 9px 4px;
  font: inherit;
  font-size: .88rem
}

.foot-news-row input::placeholder {
  color: #7a869f
}

.foot-news-row .btn {
  padding: 9px 14px;
  border-radius: 9px;
  font-size: .85rem
}

.foot-news-msg {
  display: block;
  color: #8fe3a8;
  font-size: .78rem;
  margin-top: 8px;
  min-height: 1em
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  display: grid;
  place-items: center;
  color: #c8d1e5;
  font-size: .9rem;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .25s;
}

.socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(23, 71, 149, .7)
}

.contact-list li {
  display: flex;
  gap: 12px;
  color: #b6c1d8;
  font-size: .88rem;
  align-items: center;
  line-height: 1.5
}

.contact-list .ci-ico {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 9px;
  background: rgba(23, 71, 149, .15);
  border: 1px solid rgba(23, 71, 149, .28);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: .82rem;
}

.contact-list a {
  color: #b6c1d8;
  transition: color .2s
}

.contact-list a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 0;
  background: rgba(0, 0, 0, .25)
}

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

.fb-inner p {
  margin: 0;
  color: #8f9ab5;
  font-size: .82rem
}

.fb-inner p strong {
  color: #e6ecf8;
  font-weight: 600
}

.legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center
}

.legal li+li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4a556e;
  margin: 0 8px 3px 2px;
  vertical-align: middle
}

.legal a {
  color: #8f9ab5;
  font-size: .82rem;
  transition: color .2s
}

.legal a:hover {
  color: var(--primary)
}

@media(max-width:960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px
  }

  .foot-brand {
    grid-column: 1/-1
  }

  .foot-brand p {
    max-width: none
  }
}

@media(max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .fb-inner {
    justify-content: center;
    text-align: center
  }

  .legal {
    justify-content: center
  }

  .cta-inner {
    padding: 28px 20px;
    border-radius: 20px
  }

  .cta-banner {
    padding: 32px 0
  }

  .cta-title {
    font-size: 1.4rem
  }

  .cta-sub {
    font-size: .9rem
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px
  }

  .cta-primary-btn {
    justify-content: space-between;
    width: 100%
  }

  .cta-quick-actions {
    width: 100%;
    justify-content: space-between
  }

  .cta-quick {
    flex: 1;
    justify-content: center
  }

  .cta-quick-meta {
    display: none
  }

  .cta-trust {
    gap: 6px 14px;
    font-size: .76rem
  }

  .test-card {
    padding: 30px 22px 22px
  }

  .test-card .test-quote {
    width: 38px;
    height: 38px;
    top: 16px;
    right: 16px
  }
}

/* ===== Floating buttons ===== */
.fab {
  position: fixed;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  z-index: 90;
  border: 0;
  cursor: pointer;
  transition: all .3s;
}

.fab.whatsapp {
  bottom: 22px;
  background: #25d366;
  color: #fff
}

.fab.whatsapp:hover {
  transform: scale(1.1)
}

.fab.back-top {
  bottom: 86px;
  background: var(--secondary);
  color: #fff;
  opacity: 0;
  pointer-events: none
}

.fab.back-top.show {
  opacity: 1;
  pointer-events: auto
}

.fab.back-top:hover {
  background: var(--primary)
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* ===== Responsive ===== */
@media (max-width:1100px) {
  .mega-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-illus {
    height: 380px;
    max-width: 520px;
    margin: 0 auto
  }

  .about-preview .row {
    grid-template-columns: 1fr
  }

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

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

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

  .industry-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .logos {
    grid-template-columns: repeat(3, 1fr)
  }

  .tech-grid {
    grid-template-columns: repeat(6, 1fr)
  }

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

@media (max-width:820px) {
  section {
    padding: 70px 0
  }

  .header-cta {
    display: none
  }

  .nav-toggle {
    display: flex
  }

  .main-nav .menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }

  .main-nav .menu.open {
    max-height: 80vh;
    overflow-y: auto
  }

  .menu>li {
    border-bottom: 1px solid var(--line)
  }

  .menu>li>a {
    border-radius: 0;
    padding: 14px 10px
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: var(--surface);
  }

  .has-mega.open .mega-menu {
    max-height: 1400px;
    padding: 16px 0
  }

  .has-mega:hover .mega-menu {
    max-height: 0
  }

  .has-mega.open .mega-menu {
    max-height: 1400px
  }

  .mega-inner {
    grid-template-columns: 1fr;
    padding: 0 16px
  }

  .hero {
    padding: 130px 0 70px
  }

  .portfolio-grid,
  .case-grid,
  .blog-grid,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

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

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

  .tech-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .cta-inner {
    padding: 40px 24px
  }

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

@media (max-width:480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  h1 {
    font-size: 2rem
  }

  .hero .lead {
    font-size: 1.02rem
  }

  .btn {
    padding: .8rem 1.2rem;
    font-size: .9rem
  }
}

/* Focus for accessibility */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 8px
}

/* ==========================================================================
   About Page — extends the global design system (no overrides)
   ========================================================================== */

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 90px;
  background: var(--grad-hero);
}

.page-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.page-hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35
}

.page-hero-shapes .s1 {
  width: 380px;
  height: 380px;
  background: var(--primary);
  top: -120px;
  right: -80px;
  opacity: .18
}

.page-hero-shapes .s2 {
  width: 460px;
  height: 460px;
  background: var(--secondary);
  bottom: -180px;
  left: -140px;
  opacity: .14
}

.page-hero-shapes .s3 {
  width: 220px;
  height: 220px;
  background: #ff8a3d;
  top: 40%;
  left: 8%;
  opacity: .12
}

.page-hero-shapes .s4 {
  width: 180px;
  height: 180px;
  background: #2a63c4;
  top: 20%;
  right: 22%;
  opacity: .10
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px
}

.page-hero-inner h1 span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.page-hero-inner .lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 660px
}

.page-hero-inner .hero-cta {
  margin-top: 26px
}

/* Breadcrumbs */
.crumbs {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .9);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink-2);
  margin-bottom: 22px;
}

.crumbs a {
  color: var(--secondary)
}

.crumbs a:hover {
  color: var(--primary)
}

.crumbs i {
  color: var(--muted);
  font-size: .7rem
}

.crumbs span {
  color: var(--primary)
}

/* Utility */
.mt-lg {
  margin-top: 60px
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 0
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  position: relative;
  width: 50%;
  padding: 22px 40px;
  box-sizing: border-box
}

.tl-item:nth-child(odd) {
  left: 0;
  text-align: right
}

.tl-item:nth-child(even) {
  left: 50%
}

.tl-dot {
  position: absolute;
  top: 34px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(243, 114, 33, .35);
  z-index: 2;
  font-size: 1rem;
}

.tl-item:nth-child(odd) .tl-dot {
  right: -22px
}

.tl-item:nth-child(even) .tl-dot {
  left: -22px
}

.tl-card {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.tl-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-50);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  margin-bottom: 10px;
}

.tl-card h4 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--secondary)
}

.tl-card p {
  color: var(--ink-2);
  margin: 0;
  font-size: .95rem
}

/* ===== Mission & Vision (glass cards) ===== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.mv-card {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(243, 114, 33, .10), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(23, 71, 149, .10), transparent 60%);
  z-index: 0;
}

.mv-card>* {
  position: relative;
  z-index: 1
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(243, 114, 33, .35);
}

.mv-card:nth-child(2) .mv-icon {
  background: var(--grad-secondary);
  box-shadow: 0 12px 28px rgba(23, 71, 149, .35)
}

.mv-card h3 {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 10px
}

.mv-card p {
  color: var(--ink-2);
  margin: 0
}

/* ===== Core Values ===== */
.values {
  background: var(--surface)
}

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

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--grad-primary);
  transition: width .35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.value-card:hover::after {
  width: 100%
}

.v-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--secondary-50);
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: all .3s;
}

.value-card:hover .v-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.06)
}

.value-card h4 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--secondary)
}

.value-card p {
  color: var(--muted);
  font-size: .94rem;
  margin: 0
}

/* ===== Why us — extend cards with icon look ===== */
.why-us .why-card .n {
  font-size: 1.15rem;
  color: #fff;
  background: var(--grad-primary);
  box-shadow: 0 10px 22px rgba(243, 114, 33, .35);
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.team-photo {
  aspect-ratio: 1/1;
  background: var(--grad-secondary);
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: .04em;
}

.team-card:nth-child(2) .team-photo {
  background: var(--grad-primary)
}

.team-card:nth-child(3) .team-photo {
  background: linear-gradient(135deg, #2a63c4, #0f3573)
}

.team-card:nth-child(4) .team-photo {
  background: linear-gradient(135deg, #ff8a3d, #f37221)
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .25), transparent 55%);
}

.team-body {
  padding: 20px 18px
}

.team-body h4 {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--secondary)
}

.team-body .role {
  color: var(--muted);
  font-size: .88rem;
  margin: 0 0 14px
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--secondary);
  transition: all .25s;
  font-size: .85rem;
}

.team-socials a:hover {
  background: var(--grad-primary);
  color: #fff;
  transform: translateY(-3px)
}

/* ===== Tech chips extend (labels under icons) ===== */
.tech .tech-chip {
  aspect-ratio: auto;
  padding: 22px 10px;
  flex-direction: column;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech .tech-chip i {
  font-size: 1.9rem
}

.tech-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  color: var(--muted);
  transition: color .3s
}

.tech .tech-chip:hover .tech-label {
  color: var(--secondary)
}

/* ===== Process (zig-zag) ===== */
.process {
  background: var(--surface)
}

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

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: all .3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.step-card:nth-child(even) {
  transform: translateY(24px)
}

.step-card:nth-child(even):hover {
  transform: translateY(18px)
}

.step-num {
  position: absolute;
  top: -14px;
  right: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  color: #fff;
  background: var(--grad-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  box-shadow: 0 8px 18px rgba(23, 71, 149, .3);
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: all .3s;
}

.step-card:hover .step-icon {
  background: var(--grad-primary);
  color: #fff
}

.step-card h4 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--secondary)
}

.step-card p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0
}

/* ===== Testimonials slider ===== */
.slider {
  position: relative;
  overflow: hidden
}

.testimonial-slider {
  touch-action: pan-y;
  outline: none
}

.testimonial-slider:focus-visible {
  box-shadow: 0 0 0 4px rgba(243, 114, 33, .16);
  border-radius: 24px
}

.slider-track {
  display: flex;
  align-items: stretch;
  transition: transform .62s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.slider-track.no-transition {
  transition: none !important
}

.slide {
  flex: 0 0 100%;
  padding: 6px 12px;
  box-sizing: border-box;
  display: flex;
  min-width: 0
}

.slide>.test-card {
  width: 100%
}

@media (min-width:820px) {
  .slide {
    flex: 0 0 50%
  }
}

@media (min-width:1100px) {
  .slide {
    flex: 0 0 33.333%
  }
}

.glass-card {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--secondary);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .25s;
  flex: 0 0 44px;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 12px 26px rgba(243, 114, 33, .26)
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 14px
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--line);
  transition: all .25s;
}

.slider-dots button.active {
  background: var(--grad-primary);
  width: 26px;
  border-radius: 999px
}

.slider-dots button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px
}

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

  .slider-track,
  .test-card,
  .slider-btn,
  .slider-dots button {
    transition: none !important
  }
}

/* ===== Responsive additions ===== */
@media (max-width:1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

  .step-card:nth-child(even) {
    transform: none
  }

  .step-card:nth-child(even):hover {
    transform: translateY(-6px)
  }
}

@media (max-width:820px) {
  .page-hero {
    padding: 130px 0 60px
  }

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

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

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

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

  /* Timeline single column */
  .timeline::before {
    left: 22px
  }

  .tl-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding: 18px 10px 18px 60px
  }

  .tl-item:nth-child(odd),
  .tl-item:nth-child(even) {
    left: 0;
    text-align: left
  }

  .tl-dot {
    left: 0 !important;
    right: auto !important;
    top: 22px
  }
}

@media (max-width:480px) {
  .team-grid {
    grid-template-columns: 1fr
  }

  .mv-card {
    padding: 28px
  }
}

/* ==========================================================================
   Blog Page + Blog Details — extends the global design system
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

/* Reusable gradient tokens for blog media */
.blog-primary,
.mini-primary,
.trend-primary,
.feat-primary {
  background: var(--grad-primary)
}

.blog-secondary,
.mini-secondary,
.trend-secondary,
.feat-secondary {
  background: var(--grad-secondary)
}

.blog-orange,
.mini-orange,
.trend-orange,
.feat-orange {
  background: linear-gradient(135deg, #ff8a3d, #f37221)
}

.blog-blue,
.mini-blue,
.trend-blue,
.feat-blue {
  background: linear-gradient(135deg, #2a63c4, #0f3573)
}

/* ===== Featured blog ===== */
.featured-blog {
  padding: 60px 0 20px
}

.feat-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  color: inherit;
  text-decoration: none;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit
}

.feat-media {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.feat-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .28), transparent 60%)
}

.feat-icon {
  font-size: 5rem;
  opacity: .95;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .25));
  transition: transform .5s ease
}

.feat-card:hover .feat-icon {
  transform: scale(1.08) rotate(-4deg)
}

.feat-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, .9);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}

.feat-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px
}

.feat-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin: 0;
  color: var(--secondary);
  line-height: 1.2
}

.feat-body p {
  color: var(--ink-2);
  margin: 0
}

.feat-body .btn {
  align-self: flex-start;
  margin-top: 10px
}

.feat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: .85rem
}

.feat-meta i {
  color: var(--primary);
  margin-right: 6px
}

/* ===== Toolbar (search + sort) ===== */
.blog-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted)
}

.search-box input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(243, 114, 33, .15)
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 10px
}

.sort-box label {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  font-size: .9rem
}

.sort-box select {
  padding: 12px 40px 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23174795'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center/18px;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  font-size: .9rem;
}

.sort-box select:focus {
  outline: none;
  border-color: var(--primary)
}

/* ===== Category pills ===== */
.cat-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 0;
  padding: 6px 0 2px;
}

.pill {
  padding: .6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: all .25s;
}

.pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px)
}

.pill.active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(243, 114, 33, .3)
}

/* ===== Blog layout (grid + sidebar) ===== */
.blog-main {
  padding: 50px 0 100px
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start
}

.blog-col {
  min-width: 0
}

.blog-side {
  min-width: 0
}

.side-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

/* ===== Blog cards (extended) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

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

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.blog-thumb {
  display: block;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .28), transparent 60%);
  pointer-events: none
}

.blog-thumb-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 3rem;
  transition: transform .5s ease;
  opacity: .95;
}

.blog-card:hover .blog-thumb-icon {
  transform: scale(1.12) rotate(-4deg)
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .9);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}

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

.blog-body .meta {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: .78rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.blog-body .meta i {
  color: var(--primary);
  margin-right: 4px
}

.blog-body h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3
}

.blog-body h4 a {
  color: var(--secondary)
}

.blog-body h4 a:hover {
  color: var(--primary)
}

.blog-body p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
  flex: 1
}

.blog-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.blog-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: .85rem;
  font-weight: 600
}

.av-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
}

.read-more {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: .85rem;
  display: inline-flex;
  gap: 6px;
  align-items: center
}

.read-more i {
  transition: transform .25s
}

.read-more:hover i {
  transform: translateX(4px)
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  margin-top: 20px;
}

.empty-state i {
  font-size: 2.4rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: block
}

.empty-state h4 {
  margin: 0 0 4px;
  color: var(--secondary)
}

.empty-state p {
  color: var(--muted);
  margin: 0
}

/* Load more + pagination */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.page-link {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  transition: all .25s;
}

.page-link:hover {
  background: var(--primary-50);
  color: var(--primary);
  border-color: var(--primary)
}

.page-link.active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(243, 114, 33, .3)
}

.page-link.disabled {
  opacity: .4;
  pointer-events: none
}

/* ===== Sidebar cards ===== */
.side-card {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.side-card h5 {
  margin: 0 0 14px;
  color: var(--secondary);
  font-family: var(--font-head);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-card h5 i {
  color: var(--primary)
}

.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.mini-list a {
  display: flex;
  gap: 12px;
  color: var(--ink-2);
  align-items: flex-start;
  transition: transform .25s
}

.mini-list a:hover {
  transform: translateX(3px);
  color: var(--ink)
}

.mini-thumb {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
}

.mini-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}

.mini-cat {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

.mini-title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  font-size: .92rem;
  line-height: 1.35
}

.mini-meta {
  color: var(--muted);
  font-size: .75rem
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.rank-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.rank-list .rank {
  flex: 0 0 34px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  line-height: 1;
  padding-top: 2px;
}

.rank-list a {
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.35
}

.rank-list a:hover {
  color: var(--primary)
}

.cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.cat-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink-2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s;
}

.cat-link em {
  font-style: normal;
  background: var(--secondary-50);
  color: var(--secondary);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}

.cat-link:hover {
  background: var(--primary-50);
  color: var(--primary);
  transform: translateX(3px)
}

.cat-link:hover em {
  background: #fff;
  color: var(--primary)
}

.side-newsletter {
  background: var(--grad-secondary);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.side-newsletter::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .3;
  filter: blur(50px)
}

.side-newsletter>* {
  position: relative;
  z-index: 1
}

.side-newsletter h5 {
  color: #fff;
  font-size: 1.1rem
}

.side-newsletter p {
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  margin: 0 0 14px
}

.side-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-family: var(--font-body);
  margin-bottom: 10px;
}

.side-newsletter input::placeholder {
  color: rgba(255, 255, 255, .65)
}

.side-newsletter input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, .16)
}

/* ===== Trending slider ===== */
.trending {
  background: var(--surface);
  padding: 80px 0
}

.trend-slider {
  overflow: hidden
}

.trend-track {
  display: flex;
  gap: 22px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform
}

.trend-card {
  flex: 0 0 calc(33.333% - 15px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.trend-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: inherit
}

.trend-media {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.4rem;
  position: relative;
  overflow: hidden
}

.trend-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .28), transparent 60%)
}

.trend-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.trend-body h4 {
  color: var(--secondary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.35
}

.trend-nav {
  display: flex;
  gap: 10px
}

@media (max-width:1100px) {
  .trend-card {
    flex-basis: calc(50% - 11px)
  }
}

@media (max-width:640px) {
  .trend-card {
    flex-basis: 85%
  }
}

/* ===== Newsletter band ===== */
.newsletter-band {
  padding: 80px 0
}

.news-inner {
  background: var(--grad-secondary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.news-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .28;
  filter: blur(70px)
}

.news-inner::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #fff;
  opacity: .1;
  filter: blur(70px)
}

.news-inner>* {
  position: relative;
  z-index: 1
}

.news-inner h2 {
  color: #fff;
  margin: 8px 0
}

.news-inner p {
  color: rgba(255, 255, 255, .85);
  margin: 0
}

.news-form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  flex-wrap: wrap;
}

.news-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
}

.news-form input::placeholder {
  color: rgba(255, 255, 255, .7)
}

.news-form .btn {
  padding: .85rem 1.4rem
}

@media (max-width:820px) {
  .news-inner {
    grid-template-columns: 1fr;
    padding: 36px 24px
  }
}

/* ===== Tag cloud ===== */
.tags-section {
  padding: 80px 0;
  background: var(--surface)
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center
}

.tag-cloud.small {
  justify-content: flex-start
}

.tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  transition: all .25s;
}

.tag:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 114, 33, .3)
}

/* ==========================================================================
   Blog Details Page
   ========================================================================== */

.post-hero {
  padding: 150px 0 40px
}

.post-meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: .9rem;
  align-items: center;
}

.post-meta-row i {
  color: var(--primary);
  margin-right: 6px
}

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
  font-family: var(--font-head)
}

.post-cover {
  height: clamp(240px, 40vw, 460px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: 0 0 20px;
}

.post-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .25), transparent 60%)
}

.post-cover-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 6rem;
  opacity: .95
}

.post-wrap {
  padding: 60px 0
}

.post-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: flex-start
}

.toc-sticky {
  position: sticky;
  top: 100px;
  padding: 24px
}

.toc-sticky ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--line);
  padding-left: 14px
}

.toc-sticky li a {
  color: var(--ink-2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 4px 0;
  display: block;
  transition: all .2s;
}

.toc-sticky li a:hover,
.toc-sticky li a.active {
  color: var(--primary);
  transform: translateX(3px)
}

.share-inline {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-inline span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase
}

.share-inline a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--secondary);
  transition: all .25s;
}

.share-inline a:hover {
  background: var(--grad-primary);
  color: #fff;
  transform: translateY(-2px)
}

.post-content {
  font-family: var(--font-body);
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.8;
  min-width: 0
}

.post-content h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--secondary);
  margin: 44px 0 14px
}

.post-content h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin: 30px 0 10px
}

.post-content p {
  margin: 0 0 18px;
  color: var(--ink-2)
}

.post-content ul,
.post-content ol {
  padding-left: 22px;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.post-content li::marker {
  color: var(--primary);
  font-weight: 700
}

.post-content strong {
  color: var(--secondary)
}

.post-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px
}

.callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  margin: 22px 0;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.callout i {
  font-size: 1.2rem;
  flex: 0 0 auto;
  margin-top: 3px
}

.callout div {
  color: var(--ink-2);
  font-size: .98rem
}

.callout-info {
  background: var(--secondary-50);
  border-color: transparent
}

.callout-info i {
  color: var(--secondary)
}

.callout-warn {
  background: var(--primary-50);
  border-color: transparent
}

.callout-warn i {
  color: var(--primary)
}

blockquote {
  margin: 26px 0;
  padding: 26px 30px;
  border-radius: var(--radius);
  background: var(--grad-hero);
  border-left: 5px solid var(--primary);
  position: relative;
  box-shadow: var(--shadow-sm);
}

blockquote i {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block
}

blockquote p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--secondary);
  margin: 0 0 10px;
  line-height: 1.5
}

blockquote cite {
  font-style: normal;
  color: var(--muted);
  font-size: .9rem
}

.code-block {
  background: #0b1220;
  color: #e6ebf3;
  padding: 22px 24px;
  border-radius: 16px;
  overflow-x: auto;
  margin: 22px 0;
  font-family: "JetBrains Mono", "Fira Code", Menlo, monospace;
  font-size: .9rem;
  line-height: 1.7;
  box-shadow: var(--shadow-md);
}

.code-block code {
  color: inherit;
  font-family: inherit;
  background: transparent;
  padding: 0
}

.post-cta {
  margin: 40px 0 0;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--grad-secondary);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .28;
  filter: blur(60px)
}

.post-cta>* {
  position: relative;
  z-index: 1
}

@media (max-width:820px) {
  .post-cta {
    grid-template-columns: 1fr;
    padding: 28px
  }
}

/* ===== Prev / Next ===== */
.prev-next {
  padding: 20px 0 60px
}

.pn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.pn-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s;
  color: inherit;
}

.pn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: inherit
}

.pn-card.right {
  text-align: right
}

.pn-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.pn-card.right .pn-label {
  justify-content: flex-end
}

.pn-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.02rem;
  line-height: 1.35
}

/* ===== Related ===== */
.related {
  padding: 80px 0;
  background: var(--surface)
}

.related .blog-grid {
  grid-template-columns: repeat(3, 1fr)
}

/* ===== Comment form ===== */
.comments {
  padding: 20px 0 100px
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.comment-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  font-size: .9rem
}

.comment-form input,
.comment-form textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(243, 114, 33, .15)
}

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

.comment-form .btn {
  align-self: flex-start
}

/* ==========================================================================
   Blog Responsive
   ========================================================================== */

@media (max-width:1100px) {
  .feat-card {
    grid-template-columns: 1fr
  }

  .feat-media {
    min-height: 260px
  }

  .feat-body {
    padding: 30px
  }

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

  .side-sticky {
    position: static
  }

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

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

  .toc-sticky {
    position: static
  }

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

@media (max-width:820px) {

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

  .blog-toolbar {
    flex-direction: column;
    align-items: stretch
  }

  .sort-box {
    justify-content: space-between
  }

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

  .pn-card.right {
    text-align: left
  }

  .pn-card.right .pn-label {
    justify-content: flex-start
  }

  .cf-row {
    grid-template-columns: 1fr
  }

  .post-hero {
    padding: 130px 0 30px
  }

  .featured-blog {
    padding: 40px 0 10px
  }
}

@media (max-width:480px) {
  .feat-body {
    padding: 24px
  }

  .news-inner {
    padding: 28px 20px
  }

  .post-cover-inner {
    font-size: 4rem
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
  align-items: stretch
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 100%
}

.contact-info .mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 22px rgba(243, 114, 33, .28);
  flex-shrink: 0
}

.contact-info h3 {
  margin: 6px 0 0;
  font-size: 1.05rem;
  min-width: 0
}

.contact-info p {
  margin: 0;
  color: var(--ink-2);
  font-weight: 600;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  line-height: 1.45
}

.contact-info .email-text {
  font-size: 15px;
  letter-spacing: -.01em
}

.contact-info .tag {
  font-size: .78rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 6px;
  font-weight: 500
}

.contact-info:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

@media(max-width:960px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .contact-info-grid {
    grid-template-columns: 1fr
  }

  .contact-info .email-text {
    font-size: 14px
  }
}

/* Contact grid: form + aside */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: start
}

@media(max-width:960px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

/* Premium form */
.premium-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-top: 18px;
  position: relative
}

.premium-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

@media(max-width:640px) {
  .premium-form .form-row {
    grid-template-columns: 1fr
  }
}

.premium-form .field {
  position: relative;
  margin: 14px 0
}

.premium-form .field input,
.premium-form .field select,
.premium-form .field textarea {
  width: 100%;
  padding: 18px 16px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font: 500 .95rem/1.4 var(--font-body);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}

.premium-form .field textarea {
  resize: vertical;
  min-height: 120px
}

.premium-form .field input:focus,
.premium-form .field select:focus,
.premium-form .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(243, 114, 33, .14);
  background: #fffdfb
}

.premium-form .field label {
  position: absolute;
  left: 14px;
  top: 16px;
  padding: 0 6px;
  background: #fff;
  color: var(--muted);
  font-size: .95rem;
  pointer-events: none;
  transition: all .18s ease;
  border-radius: 6px;
}

.premium-form .field label.static,
.premium-form .field input:focus+label,
.premium-form .field textarea:focus+label,
.premium-form .field input:not(:placeholder-shown)+label,
.premium-form .field textarea:not(:placeholder-shown)+label {
  top: -9px;
  font-size: .75rem;
  color: var(--secondary);
  font-weight: 600
}

.premium-form .field select+label {
  top: -9px;
  font-size: .75rem;
  color: var(--secondary);
  font-weight: 600
}

.premium-form .field input:focus+label,
.premium-form .field textarea:focus+label {
  color: var(--primary)
}

.premium-form .field input:invalid:not(:placeholder-shown),
.premium-form .field textarea:invalid:not(:placeholder-shown) {
  border-color: #e14b4b
}

.premium-form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 18px;
  color: var(--ink-2);
  font-size: .9rem
}

.premium-form .check input {
  margin-top: 3px;
  accent-color: var(--primary)
}

.form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin: 12px 0;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center
}

.form-alert.error {
  background: #fff1f0;
  color: #b3261e;
  border: 1px solid #ffd6d1
}

/* Button loader */
.btn {
  position: relative
}

.btn .btn-loader {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
}

.btn .btn-loader::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  animation: spin .8s linear infinite
}

.btn.is-loading .btn-label {
  visibility: hidden
}

.btn.is-loading .btn-loader {
  display: grid
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* Map + side */
.map-card {
  padding: 14px
}

.map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/12;
  background: var(--secondary-50)
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.map-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 6px 4px
}

.side-why {
  margin-top: 22px
}

.side-why h3 {
  margin-bottom: 10px
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-weight: 500
}

.tick-list i {
  color: var(--primary)
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px
}

.why-grid .feature {
  transition: transform .25s, box-shadow .25s
}

.why-grid .feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

@media(max-width:960px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

/* Consult form width */
.consult-form {
  max-width: 820px;
  margin: 30px auto 0
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 30px auto 0;
  display: grid;
  gap: 12px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s
}

.faq-item[open] {
  border-color: rgba(243, 114, 33, .35);
  box-shadow: var(--shadow-md)
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--secondary-50);
  color: var(--secondary);
  display: grid;
  place-items: center;
  transition: transform .25s, background .25s, color .25s
}

.faq-item[open] summary i {
  transform: rotate(45deg);
  background: var(--grad-primary);
  color: #fff
}

.faq-body {
  padding: 0 20px 18px;
  color: var(--ink-2)
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px
}

.social-card {
  --sc: #174795;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  text-align: center;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.social-card .s-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--sc) 12%, #fff);
  color: var(--sc);
  font-size: 1.35rem;
  transition: all .25s
}

.social-card strong {
  color: var(--secondary);
  font-family: var(--font-head)
}

.social-card span {
  color: var(--muted);
  font-size: .82rem
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg)
}

.social-card:hover .s-icon {
  background: var(--sc);
  color: #fff;
  transform: scale(1.06)
}

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

@media(max-width:500px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px
}

.trust-badges span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-sm)
}

.trust-badges i {
  color: var(--primary);
  margin-right: 6px
}

/* CTA helpers (button variants) */
.btn-outline.light {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff
}

.btn-outline.light:hover {
  background: #fff;
  color: var(--secondary);
  border-color: #fff
}

/* Thank you check animation */
.ty-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px rgba(243, 114, 33, .35);
  animation: pop .5s ease
}

.ty-check svg {
  width: 56px;
  height: 56px
}

.ty-check svg circle {
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw .7s ease .1s forwards
}

.ty-check svg path {
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw .5s ease .6s forwards
}

@keyframes draw {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes pop {
  0% {
    transform: scale(.6);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

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

@media(max-width:900px) {
  .ty-grid {
    grid-template-columns: 1fr
  }
}

/* ==========================================================================
   Privacy Policy Page
   ========================================================================== */
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: .9rem
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm)
}

.policy-meta i {
  color: var(--primary)
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}

.policy-section {
  padding-top: 40px
}

.policy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start
}

@media(max-width:960px) {
  .policy-grid {
    grid-template-columns: 1fr
  }
}

/* Sticky ToC */
.policy-toc {
  position: sticky;
  top: 100px
}

@media(max-width:960px) {
  .policy-toc {
    position: static
  }
}

.toc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-family: var(--font-head);
  margin-bottom: 10px
}

.toc-head i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--secondary-50);
  display: grid;
  place-items: center;
  color: var(--secondary)
}

.toc-list {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
  max-height: 60vh;
  overflow: auto
}

.toc-list li {
  counter-increment: toc
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s
}

.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  font-size: .75rem;
  min-width: 22px
}

.toc-list a:hover {
  background: var(--secondary-50);
  color: var(--secondary)
}

.toc-list a.active {
  background: var(--primary-50);
  color: var(--primary);
  font-weight: 700
}

.toc-list a.active::before {
  color: var(--primary)
}

/* Policy cards */
.policy-body {
  display: grid;
  gap: 22px
}

.policy-card {
  position: relative;
  padding: 32px 30px;
  scroll-margin-top: 110px
}

.policy-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-bottom: 12px
}

.policy-card .pc-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .9;
  line-height: 1
}

.policy-card .pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--secondary-50);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
  transition: all .3s
}

.policy-card:hover .pc-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-6deg)
}

.policy-card p {
  color: var(--ink-2)
}

.policy-card a {
  color: var(--primary);
  font-weight: 600
}

.policy-card a:hover {
  color: var(--primary-600);
  text-decoration: underline
}

/* Pill grid (info collected, third-parties) */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 16px 0
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: .9rem;
  transition: all .2s
}

.pill-grid span:hover {
  border-color: transparent;
  background: var(--primary-50);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.pill-grid i {
  color: var(--primary);
  width: 18px;
  text-align: center
}

.pill-grid span:hover i {
  color: var(--primary-600)
}

/* Cookie grid */
.cookie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0
}

@media(max-width:600px) {
  .cookie-grid {
    grid-template-columns: 1fr
  }
}

.cookie-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .2s
}

.cookie-item:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.cookie-item strong {
  color: var(--secondary);
  font-family: var(--font-head)
}

.cookie-item span {
  color: var(--ink-2);
  font-size: .9rem
}

/* Callout */
.callout {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--primary-50);
  border-left: 4px solid var(--primary);
  margin: 14px 0;
  align-items: flex-start
}

.callout i {
  color: var(--primary);
  font-size: 1.15rem;
  margin-top: 2px
}

.callout div {
  color: var(--ink);
  font-size: .95rem
}

.callout-primary strong {
  color: var(--secondary)
}

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 16px 0
}

.rights-grid>div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .25s
}

.rights-grid>div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.rights-grid i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1rem
}

.rights-grid strong {
  color: var(--secondary);
  font-family: var(--font-head)
}

.rights-grid span {
  color: var(--muted);
  font-size: .85rem
}

/* Contact mini card */
.contact-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 20px;
  background: var(--secondary-50);
  border-radius: 16px
}

.contact-mini>div {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-mini strong {
  color: var(--secondary);
  font-family: var(--font-head);
  font-size: 1.05rem
}

.contact-mini span {
  color: var(--ink-2);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 8px
}

.contact-mini i {
  color: var(--primary);
  width: 16px
}

/* Print styles */
@media print {

  .site-header,
  .site-footer,
  .policy-toc,
  .policy-actions,
  .hero-cta,
  .page-hero-shapes,
  .scroll-progress,
  #backToTop,
  .wa-float {
    display: none !important
  }

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

  .policy-card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid
  }

  .page-hero {
    padding: 20px 0
  }

  body {
    background: #fff
  }
}

/* ==========================================================================
   V2 — Services Mega Menu, Home Services & Service Pages
   ========================================================================== */

/* ---------- Badges ---------- */
.svc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .02em;
  z-index: 3;
  box-shadow: var(--shadow-sm)
}

.svc-badge i {
  font-size: .7rem
}

.badge-popular {
  background: linear-gradient(135deg, #fff2e9, #ffe0cf);
  color: var(--primary-600)
}

.badge-recommended {
  background: var(--secondary-50);
  color: var(--secondary)
}

.badge-new {
  background: #e6fbf1;
  color: #0a8a4c
}

.badge-premium {
  background: linear-gradient(135deg, #f6e9ff, #e8d7ff);
  color: #6a2fbd
}

/* ==========================================================================
   MEGA MENU V2 (Desktop)
   ========================================================================== */
.mega-v2 .mega-menu {
  left: 50%;
  transform: translate(-50%, 10px);
  width: min(1240px, calc(100vw - 32px));
  top: calc(100% + 10px);
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(230, 235, 243, .9);
  box-shadow: 0 40px 90px rgba(15, 30, 60, .22), 0 8px 24px rgba(15, 30, 60, .08);
  overflow: hidden;
}

.mega-v2.has-mega:hover .mega-menu,
.mega-v2.has-mega.open .mega-menu {
  transform: translate(-50%, 0)
}

.mega-panel-inner {
  display: flex;
  flex-direction: column
}

/* AI Finder strip */
.mega-finder {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--secondary-50) 0%, #fff 60%, var(--primary-50) 100%);
  border-bottom: 1px solid var(--line);
}

.mega-finder-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  font-size: .95rem
}

.mega-finder-title i {
  color: var(--primary)
}

.mega-finder-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto
}

.finder-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  color: var(--secondary);
  cursor: pointer;
  transition: all .25s;
}

.finder-chip i {
  color: var(--primary);
  font-size: .85rem
}

.finder-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm)
}

.finder-chip.is-active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent
}

.finder-chip.is-active i {
  color: #fff
}

.finder-reset {
  background: transparent;
  border-style: dashed
}

/* Body grid */
.mega-body {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  min-height: 480px;
}

/* Left: categories */
.mega-cats {
  padding: 20px 14px;
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: all .25s;
  font-family: var(--font-body);
}

.mega-cat:hover {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm)
}

.mega-cat.is-active {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm)
}

.mega-cat-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all .25s;
}

.mega-cat.is-active .mega-cat-ico {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(243, 114, 33, .35)
}

.mega-cat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
  min-width: 0
}

.mega-cat-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  font-size: .9rem
}

.mega-cat-desc {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px
}

.mega-cat-arrow {
  color: var(--muted);
  font-size: .7rem;
  opacity: 0;
  transition: all .25s
}

.mega-cat:hover .mega-cat-arrow,
.mega-cat.is-active .mega-cat-arrow {
  opacity: 1;
  color: var(--primary)
}

/* Center: services */
.mega-services {
  padding: 20px;
  overflow: hidden;
  position: relative;
  background: #fff
}

.mega-service-group {
  display: none;
  animation: megaFade .35s ease
}

.mega-service-group.is-active {
  display: block
}

@keyframes megaFade {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.mega-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px
}

.mega-service-grid::-webkit-scrollbar {
  width: 6px
}

.mega-service-grid::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 6px
}

.mega-svc-card {
  position: relative;
  display: block;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: all .3s;
  overflow: hidden;
}

.mega-svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.mega-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.mega-svc-card:hover::before {
  opacity: 1
}

.mega-svc-card.is-dim {
  opacity: .35;
  filter: grayscale(.4)
}

.mega-svc-card.is-highlight {
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-md);
  transform: translateY(-2px)
}

.mega-svc-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px
}

.mega-svc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all .3s;
}

.mega-svc-card:hover .mega-svc-ico {
  background: var(--grad-secondary);
  color: #fff
}

.mega-svc-head h5 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  font-size: .98rem;
  line-height: 1.25
}

.mega-svc-sub {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px
}

.mega-svc-desc {
  font-size: .82rem;
  color: var(--ink-2);
  margin: 0 0 10px;
  line-height: 1.5
}

.mega-svc-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mega-svc-feat li {
  font-size: .78rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px
}

.mega-svc-feat li i {
  color: #0a8a4c;
  font-size: .7rem
}

.mega-svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: .82rem
}

.mega-svc-card:hover .mega-svc-cta i {
  transform: translateX(4px)
}

.mega-svc-cta i {
  transition: transform .25s
}

/* Right: spotlight */
.mega-spotlight {
  padding: 22px;
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
  border-left: 1px solid var(--line)
}

.mega-spot-panel {
  display: none;
  animation: megaFade .35s ease
}

.mega-spot-panel.is-active {
  display: block
}

.mega-spot-illus {
  position: relative;
  border-radius: 18px;
  aspect-ratio: 4/3;
  background: var(--grad-secondary);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow-md);
}

.mega-spot-illus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .25), transparent 60%);
}

.mega-spot-illus-inner {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .25);
}

.mega-spot-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mega-spotlight h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--secondary)
}

.mega-spotlight>.mega-spot-panel>p {
  font-size: .82rem;
  color: var(--ink-2);
  margin: 0 0 12px
}

.mega-spot-bens {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mega-spot-bens li {
  font-size: .78rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px
}

.mega-spot-bens li i {
  color: var(--primary);
  font-size: .85rem
}

.mega-spot-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px
}

.mega-spot-meta>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem
}

.mega-spot-meta span {
  color: var(--muted)
}

.mega-spot-meta strong {
  color: var(--secondary);
  font-family: var(--font-head)
}

.mega-spot-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.mega-spot-cta .btn {
  font-size: .78rem;
  padding: 9px 14px
}

.btn-sm {
  font-size: .82rem;
  padding: 10px 16px
}

/* Trust bar */
.mega-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 26px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, #fbfcfe, #fff);
}

.mega-trust-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  font-size: .82rem
}

.mega-trust-stars i {
  color: #f5a623;
  font-size: .85rem
}

.mega-trust-stars span {
  margin-left: 6px
}

.mega-trust-stats {
  display: flex;
  gap: 26px;
  margin-left: auto;
  flex-wrap: wrap
}

.mega-trust-stats>div {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.mega-trust-stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem
}

.mega-trust-stats span {
  font-size: .7rem;
  color: var(--muted)
}

/* ==========================================================================
   HOME SERVICES V2
   ========================================================================== */
.home-services-v2 .hs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hs-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: visible;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}

.hs-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.hs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.hs-card:hover::before {
  opacity: 1
}

.hs-illus {
  position: relative;
  height: 170px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: var(--grad-secondary);
  display: grid;
  place-items: center;
}

.hs-illus-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 114, 33, .55) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  filter: blur(10px);
}

.hs-illus-ico {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .28);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
  transition: transform .5s;
}

.hs-card:hover .hs-illus-ico {
  transform: scale(1.08) rotate(-4deg)
}

.hs-cat-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hs-cat-chip i {
  color: var(--primary)
}

.hs-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.hs-body h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: var(--secondary)
}

.hs-sub {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem
}

.hs-desc {
  font-size: .9rem;
  color: var(--ink-2);
  margin: 0 0 14px;
  line-height: 1.55
}

.hs-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.hs-feat li {
  font-size: .85rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px
}

.hs-feat li i {
  color: #0a8a4c;
  font-size: .75rem
}

.hs-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: var(--surface);
  border-radius: 12px;
  margin-bottom: 14px
}

.hs-meta>div {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.hs-meta span {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em
}

.hs-meta strong {
  font-size: .82rem;
  color: var(--secondary);
  font-family: var(--font-head);
  margin-top: 2px
}

.hs-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto
}

.hs-cta .btn {
  flex: 1;
  min-width: 130px;
  font-size: .82rem;
  padding: 11px 14px;
  text-align: center;
  justify-content: center
}

/* Hover preview — JS-positioned (position:fixed to escape overflow/stacking) */
.hs-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: calc(100vw - 24px);
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -12px rgba(15, 23, 42, .28), 0 8px 20px -8px rgba(15, 23, 42, .18);
  opacity: 0;
  visibility: hidden;
  transform: scale(.96) translateY(6px);
  transform-origin: center center;
  transition: opacity .22s ease, transform .28s cubic-bezier(.2, .8, .2, 1), visibility .22s;
  z-index: 9999;
  pointer-events: none;
  will-change: transform, opacity;
}

.hs-preview.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0)
}

.hs-preview-illus {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hs-preview h5 {
  margin: 0 0 6px;
  color: var(--secondary);
  font-size: 1rem
}

.hs-preview>p {
  margin: 0 0 12px;
  font-size: .82rem;
  color: var(--ink-2);
  line-height: 1.5
}

.hs-preview-bens strong {
  display: block;
  font-family: var(--font-head);
  color: var(--secondary);
  font-size: .78rem;
  margin-bottom: 6px
}

.hs-preview-bens ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hs-preview-bens li {
  font-size: .78rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px
}

.hs-preview-bens li i {
  color: var(--primary);
  font-size: .75rem
}

.hs-preview-ideal {
  font-size: .78rem;
  color: var(--ink-2);
  margin-bottom: 12px
}

.hs-preview-ideal strong {
  color: var(--secondary)
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */
.svc-hero {
  padding-top: 60px;
  padding-bottom: 60px
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 24px
}

.svc-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px
}

.svc-hero-copy h1 span {
  color: var(--primary);
  display: block;
  font-size: .75em;
  font-weight: 600;
  margin-top: 6px
}

.svc-hero-glass {
  max-width: 420px;
  margin-left: auto
}

.svc-hero-ico {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px rgba(243, 114, 33, .35);
}

.svc-hero-glass h4 {
  margin: 0 0 12px;
  color: var(--secondary)
}

.svc-hero-glass ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.svc-hero-glass li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--ink-2)
}

.svc-hero-glass li i {
  color: var(--primary)
}

.svc-overview {
  padding: 80px 0
}

.svc-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.svc-feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: all .3s;
}

.svc-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary)
}

.svc-feat-card .n {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-50);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1rem;
}

.svc-feat-card h4 {
  margin: 0 0 8px;
  color: var(--secondary)
}

.svc-feat-card p {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-2)
}

.svc-benefits {
  padding: 80px 0
}

.svc-ben-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.svc-ben-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  transition: all .3s;
}

.svc-ben-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary)
}

.svc-ben-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px
}

.svc-ben-card h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--secondary)
}

.svc-process {
  padding: 80px 0
}

.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative
}

.svc-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  transition: all .3s;
  position: relative;
}

.svc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary)
}

.svc-step-n {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  font-size: .85rem;
  position: absolute;
  top: 14px;
  right: 14px;
  opacity: .5;
}

.svc-step-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--secondary-50);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
  transition: all .3s;
}

.svc-step:hover .svc-step-ico {
  background: var(--grad-primary);
  color: #fff
}

.svc-step h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--secondary)
}

.svc-step p {
  margin: 0;
  font-size: .82rem;
  color: var(--ink-2)
}

.svc-related {
  padding: 80px 0
}

/* ==========================================================================
   MOBILE MEGA MENU (accordion)
   ========================================================================== */
@media (max-width:1024px) {
  .mega-v2 .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 8px 0;
  }

  .mega-v2.has-mega.open .mega-menu {
    display: block
  }

  .mega-panel-inner {
    gap: 12px
  }

  .mega-finder {
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary-50), var(--primary-50));
    border: none;
    flex-direction: column;
    align-items: stretch
  }

  .mega-finder-chips {
    margin-left: 0
  }

  .mega-body {
    display: block
  }

  .mega-cats {
    padding: 0;
    background: transparent;
    border: none;
    gap: 8px
  }

  .mega-cat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    justify-content: space-between;
  }

  .mega-cat-arrow {
    opacity: 1;
    transition: transform .3s
  }

  .mega-cat.is-open .mega-cat-arrow {
    transform: rotate(90deg)
  }

  .mega-services {
    padding: 0;
    background: transparent;
    margin-top: 10px
  }

  .mega-service-group {
    display: none;
    padding: 8px 0 16px
  }

  .mega-service-group.is-open {
    display: block;
    animation: megaFade .3s ease
  }

  .mega-service-group.is-active:not(.is-open) {
    display: none
  }

  .mega-service-grid {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible
  }

  .mega-spotlight {
    display: none
  }

  .mega-trust {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    margin-top: 12px
  }

  .mega-trust-stats {
    margin-left: 0;
    gap: 16px
  }
}

@media (max-width:1100px) and (min-width:1025px) {
  .mega-v2 .mega-menu {
    width: calc(100vw - 32px)
  }

  .mega-body {
    grid-template-columns: 230px 1fr 260px
  }
}

/* ==========================================================================
   RESPONSIVE - Home cards & service pages
   ========================================================================== */
@media (max-width:960px) {
  .home-services-v2 .hs-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hs-preview {
    display: none
  }

  .svc-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .svc-hero-glass {
    margin: 0 auto
  }

  .svc-feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .svc-ben-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

@media (max-width:640px) {
  .home-services-v2 .hs-grid {
    grid-template-columns: 1fr
  }

  .svc-feat-grid,
  .svc-ben-grid,
  .svc-process-grid {
    grid-template-columns: 1fr
  }

  .mega-trust-stats {
    gap: 14px
  }

  .mega-trust-stats strong {
    font-size: .95rem
  }
}

/* ================= PREMIUM MOBILE / TABLET NAV (v3) ================= */
.ms-hamburger {
  display: none
}

@media (max-width:1024px) {

  /* Hide old mobile nav completely — replaced by drawer */
  .site-header .nav-toggle {
    display: none !important
  }

  .site-header .main-nav .menu {
    display: none !important
  }

  .site-header .header-cta {
    display: none !important
  }

  /* Compact glassmorphic header */
  .site-header {
    padding: 10px 0;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(23, 71, 149, .08);
    box-shadow: 0 6px 22px -12px rgba(15, 30, 60, .18);
    border-radius: 0 0 18px 18px;
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
  }

  .site-header.scrolled {
    padding: 6px 0;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px -14px rgba(15, 30, 60, .22);
  }

  .site-header .header-inner {
    min-height: 56px
  }

  .site-header .brand-mark {
    transition: transform .3s ease
  }

  .site-header.scrolled .brand-mark {
    transform: scale(.92)
  }

  /* Premium hamburger */
  .ms-hamburger {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(23, 71, 149, .14);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px -8px rgba(15, 30, 60, .18), inset 0 0 0 1px rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }

  .ms-hamburger:active {
    transform: scale(.94)
  }

  .ms-hamburger:hover {
    box-shadow: 0 10px 22px -8px rgba(243, 114, 33, .35)
  }

  .ms-hb-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(243, 114, 33, .45), transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none
  }

  .ms-hamburger:hover .ms-hb-glow,
  .ms-hamburger.is-open .ms-hb-glow {
    opacity: 1
  }

  .ms-hb-lines {
    position: relative;
    width: 20px;
    height: 14px;
    display: block
  }

  .ms-hb-lines i {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: #174795;
    transition: transform .35s cubic-bezier(.7, .1, .2, 1), opacity .25s ease, top .35s ease, background .3s;
  }

  .ms-hb-lines i:nth-child(1) {
    top: 0
  }

  .ms-hb-lines i:nth-child(2) {
    top: 6px;
    width: 70%
  }

  .ms-hb-lines i:nth-child(3) {
    top: 12px;
    width: 85%
  }

  .ms-hamburger:hover .ms-hb-lines i {
    background: #F37221
  }

  .ms-hamburger.is-open .ms-hb-lines i {
    background: #F37221;
    width: 100%
  }

  .ms-hamburger.is-open .ms-hb-lines i:nth-child(1) {
    top: 6px;
    transform: rotate(45deg)
  }

  .ms-hamburger.is-open .ms-hb-lines i:nth-child(2) {
    opacity: 0
  }

  .ms-hamburger.is-open .ms-hb-lines i:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg)
  }

  /* Overlay + Drawer */
  .ms-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 45, .55);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity .35s ease;
  }

  .ms-overlay.is-visible {
    opacity: 1
  }

  .ms-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(92vw, 400px);
    background: linear-gradient(160deg, rgba(255, 255, 255, .94), rgba(245, 248, 255, .94));
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-left: 1px solid rgba(23, 71, 149, .1);
    box-shadow: -24px 0 60px -20px rgba(15, 30, 60, .35);
    border-radius: 22px 0 0 22px;
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.7, .1, .2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .ms-drawer.is-open {
    transform: translateX(0)
  }

  .ms-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0
  }

  .ms-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(23, 71, 149, .08);
    background: rgba(255, 255, 255, .5);
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .ms-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0f1e3c;
    font-weight: 800
  }

  .ms-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #174795, #1a56b8);
    box-shadow: 0 6px 16px -6px rgba(23, 71, 149, .55);
  }

  .ms-brand-text {
    font-size: 1.05rem;
    letter-spacing: .2px
  }

  .ms-brand-text span {
    color: #F37221
  }

  .ms-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(23, 71, 149, .14);
    background: rgba(255, 255, 255, .7);
    color: #174795;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .25s, transform .25s;
  }

  .ms-close:hover {
    background: #F37221;
    color: #fff;
    transform: rotate(90deg)
  }

  .ms-drawer-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch
  }

  /* Welcome */
  .ms-welcome {
    padding: 16px 16px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(23, 71, 149, .08), rgba(243, 114, 33, .08));
    border: 1px solid rgba(23, 71, 149, .1);
    margin-bottom: 16px;
  }

  .ms-welcome-title {
    font-weight: 800;
    color: #0f1e3c;
    font-size: .98rem
  }

  .ms-welcome-sub {
    color: #4a5b7a;
    font-size: .82rem;
    margin-top: 2px
  }

  .ms-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px
  }

  .ms-stat {
    text-align: center;
    padding: 10px 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(23, 71, 149, .08);
  }

  .ms-stat strong {
    display: block;
    color: #174795;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1
  }

  .ms-stat span {
    display: block;
    color: #6a7998;
    font-size: .7rem;
    margin-top: 4px;
    letter-spacing: .2px
  }

  /* Nav links */
  .ms-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px
  }

  .ms-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #0f1e3c;
    font-weight: 600;
    font-size: .96rem;
    border: 1px solid transparent;
    transition: background .2s, color .2s, transform .2s, border-color .2s;
  }

  .ms-link i {
    color: #174795;
    width: 20px;
    text-align: center;
    font-size: .95rem;
    transition: color .2s
  }

  .ms-link:hover,
  .ms-link:active {
    background: rgba(23, 71, 149, .06);
    transform: translateX(2px)
  }

  .ms-link.active {
    background: linear-gradient(135deg, rgba(23, 71, 149, .1), rgba(243, 114, 33, .08));
    color: #174795;
    border-color: rgba(23, 71, 149, .14);
  }

  .ms-link.active i {
    color: #F37221
  }

  /* Services accordion */
  .ms-acc {
    border-radius: 12px;
    overflow: hidden;
    margin: 2px 0
  }

  .ms-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #0f1e3c;
    font-weight: 600;
    font-size: .96rem;
    cursor: pointer;
    transition: all .2s;
  }

  .ms-acc-head>span {
    display: inline-flex;
    align-items: center;
    gap: 12px
  }

  .ms-acc-head>span>i {
    color: #174795;
    width: 20px;
    text-align: center
  }

  .ms-acc-head:hover {
    background: rgba(23, 71, 149, .06)
  }

  .ms-acc-head.active {
    background: linear-gradient(135deg, rgba(23, 71, 149, .1), rgba(243, 114, 33, .08));
    border-color: rgba(23, 71, 149, .14);
    color: #174795
  }

  .ms-acc-chev {
    transition: transform .3s ease;
    font-size: .75rem;
    color: #6a7998
  }

  .ms-acc.is-open .ms-acc-chev {
    transform: rotate(180deg);
    color: #F37221
  }

  .ms-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    padding: 0 4px;
  }

  .ms-acc.is-open .ms-acc-body {
    max-height: 2400px;
    padding: 10px 4px 4px
  }

  .ms-cat {
    margin-bottom: 12px
  }

  .ms-cat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F37221;
    padding: 6px 10px;
    margin-bottom: 4px;
  }

  .ms-cat-title i {
    font-size: .8rem
  }

  .ms-cat-list {
    display: flex;
    flex-direction: column;
    gap: 4px
  }

  .ms-svc {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(23, 71, 149, .06);
    transition: all .22s ease;
  }

  .ms-svc:active,
  .ms-svc:hover {
    background: #fff;
    border-color: rgba(23, 71, 149, .18);
    transform: translateX(3px);
    box-shadow: 0 6px 16px -10px rgba(15, 30, 60, .25)
  }

  .ms-svc.active {
    border-color: #F37221;
    background: rgba(243, 114, 33, .06)
  }

  .ms-svc-ico {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #174795, #1a56b8);
    color: #fff;
    font-size: .85rem;
    box-shadow: 0 4px 10px -4px rgba(23, 71, 149, .5);
  }

  .ms-svc-txt {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1
  }

  .ms-svc-txt strong {
    color: #0f1e3c;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.2
  }

  .ms-svc-txt em {
    color: #6a7998;
    font-style: normal;
    font-size: .72rem;
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .ms-svc-arw {
    color: #c7cfe0;
    font-size: .75rem;
    transition: color .2s, transform .2s
  }

  .ms-svc:hover .ms-svc-arw {
    color: #F37221;
    transform: translateX(2px)
  }

  /* CTA buttons */
  .ms-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 14px
  }

  .ms-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .25s, filter .2s;
    -webkit-tap-highlight-color: transparent;
  }

  .ms-cta:active {
    transform: scale(.97)
  }

  .ms-cta-primary {
    background: linear-gradient(135deg, #F37221, #ff8a3d);
    color: #fff;
    box-shadow: 0 12px 24px -10px rgba(243, 114, 33, .6);
  }

  .ms-cta-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 16px 30px -10px rgba(243, 114, 33, .7)
  }

  .ms-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .ms-cta-wa {
    background: linear-gradient(135deg, #25D366, #1ebe57);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(37, 211, 102, .55)
  }

  .ms-cta-call {
    background: linear-gradient(135deg, #174795, #1a56b8);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(23, 71, 149, .55)
  }

  /* Contact cards */
  .ms-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px
  }

  .ms-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(23, 71, 149, .08);
    text-decoration: none;
    color: #0f1e3c;
    transition: all .2s;
  }

  .ms-contact-card:hover {
    background: #fff;
    border-color: rgba(23, 71, 149, .2);
    transform: translateY(-1px)
  }

  .ms-contact-ico {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(23, 71, 149, .12), rgba(243, 114, 33, .12));
    color: #174795;
  }

  .ms-contact-txt {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    overflow: hidden
  }

  .ms-contact-txt em {
    font-style: normal;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8290a8;
    font-weight: 700
  }

  .ms-contact-txt strong {
    font-size: .85rem;
    color: #0f1e3c;
    font-weight: 600;
    overflow-wrap: anywhere
  }

  /* Socials */
  .ms-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 14px
  }

  .ms-soc {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(23, 71, 149, .12);
    color: #174795;
    text-decoration: none;
    transition: all .25s ease;
  }

  .ms-soc:hover,
  .ms-soc:active {
    background: #F37221;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    border-color: #F37221;
    box-shadow: 0 10px 20px -8px rgba(243, 114, 33, .55)
  }

  .ms-foot {
    text-align: center;
    color: #8290a8;
    font-size: .75rem;
    padding: 6px 0 20px
  }

  body.ms-lock {
    overflow: hidden;
    touch-action: none
  }
}

@media (min-width:1025px) {

  .ms-drawer,
  .ms-overlay,
  .ms-hamburger {
    display: none !important
  }
}

@media (max-width:380px) {
  .ms-drawer {
    width: 100vw;
    border-radius: 0
  }

  .ms-welcome-title {
    font-size: .9rem
  }

  .ms-stat strong {
    font-size: .9rem
  }
}
















/* .about-visual {
  position: relative;
  overflow: hidden;
} */

.about-visual{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 30px;

    background:
    radial-gradient(circle at 15% 15%,
    rgba(76,125,255,.15),
    transparent 30%),

    radial-gradient(circle at 88% 88%,
    rgba(243,114,33,.08),
    transparent 30%),

    radial-gradient(circle at 50% 45%,
    rgba(255,255,255,.02),
    transparent 55%),

    linear-gradient(
    135deg,
    #123d89 0%,
    #174795 38%,
    #12336f 70%,
    #2f3653 100%);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 25px 60px rgba(0,0,0,.28);
}


/* Background Glow */

/* .about-glow{

position:absolute;

border-radius:50%;

filter:blur(130px);

animation:floatGlow 10s ease-in-out infinite;

}

.glow-1{

width:320px;

height:320px;

background:#4d95ff;

left:-120px;

top:-120px;

opacity:.45;

}

.glow-2{

width:280px;

height:280px;

background:#ff7d2c;

right:-120px;

bottom:-120px;

opacity:.20;

}

@keyframes floatGlow{

0%,100%{

transform:translate(0);

}

50%{

transform:translate(25px,-20px);

}

} */

.about-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    animation:floatGlow 12s ease-in-out infinite;
}

.glow-1{
    width:260px;
    height:260px;
    background:#4a8eff;
    left:-120px;
    top:-120px;
    opacity:.18;
}

.glow-2{
    width:240px;
    height:240px;
    background:#f37221;
    right:-100px;
    bottom:-100px;
    opacity:.10;
}


/* .glow-1 {
  width: 220px;
  height: 220px;
  background: #3b82f6;
  top: -40px;
  left: -30px;
}

.glow-2 {
  width: 260px;
  height: 260px;
  background: #f37221;
  bottom: -80px;
  right: -80px;
} */

/* Center */

.center-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .22);
  animation: rotate 20s linear infinite;
}

.ring-2 {
  inset: 18px;
  animation-direction: reverse;
}

.icon-4 {
  left: 18%;
  top: 18%;
}

.icon-5 {
  right: 16%;
  bottom: 18%;
}

.icon-6 {
  left: 52%;
  top: 15%;
}

.icon-7 {
  left: 70%;
  top: 65%;
}

.core{

position:absolute;

width:72px;

height:72px;

left:50%;

top:50%;

transform:translate(-50%,-50%);

border-radius:50%;

background:

linear-gradient(135deg,#ff9b45,#f37221);

box-shadow:

0 0 25px rgba(243,114,33,.55),

0 0 60px rgba(243,114,33,.18);

animation:pulseCore 3s ease-in-out infinite;

}





@keyframes pulseCore {

  0%,
  100% {

    transform: translate(-50%, -50%) scale(1);

  }

  50% {

    transform: translate(-50%, -50%) scale(1.08);

  }

}

/* Floating Orbs */

.orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.orb-1 {
  width: 22px;
  height: 22px;
  left: 18%;
  top: 30%;
}

.orb-2 {
  width: 14px;
  height: 14px;
  right: 20%;
  top: 18%;
}

.orb-3 {
  width: 26px;
  height: 26px;
  right: 15%;
  bottom: 20%;
}

/* Lines */

.line {
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, .15);
}

.line-1 {
  width: 140px;
  left: 28%;
  top: 38%;
  transform: rotate(18deg);
}

.line-2 {
  width: 130px;
  right: 22%;
  top: 48%;
  transform: rotate(-20deg);
}

.line-3 {
  width: 120px;
  left: 40%;
  bottom: 24%;
}

/* Mini Icons */

.mini-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  animation: float 6s ease-in-out infinite;
}

.icon-1 {
  left: 28%;
  top: 55%;
}

.icon-2 {
  right: 24%;
  top: 28%;
}

.icon-3 {
  left: 55%;
  bottom: 18%;
}

/* Animations */

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}



.about-visual::before{

content:"";

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);

background-size:42px 42px;

opacity:.25;

mask-image:radial-gradient(circle,#000 62%,transparent 100%);

}

.about-visual::after{

content:"";

position:absolute;

inset:0;

pointer-events:none;

background:

radial-gradient(circle at 30% 25%,
rgba(255,255,255,.04),
transparent 40%),

radial-gradient(circle at 80% 70%,
rgba(255,255,255,.02),
transparent 45%);

mix-blend-mode:soft-light;

opacity:.35;

}


/* Floating Particles */

.particle {

  position: absolute;

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: #ffffff;

  opacity: .6;

  box-shadow: 0 0 12px rgba(255, 255, 255, .8);

  animation: particleFloat 7s ease-in-out infinite;

}

/* Position */

.p1 {

  left: 12%;

  top: 18%;

}

.p2 {

  right: 18%;

  top: 14%;

  animation-delay: 1s;

}

.p3 {

  left: 24%;

  bottom: 18%;

  animation-delay: 2s;

}

.p4 {

  right: 16%;

  bottom: 20%;

  animation-delay: 3s;

}

.p5 {

  left: 58%;

  top: 48%;

  animation-delay: 4s;

}

/* Animation */

@keyframes particleFloat {

  0%,
  100% {

    transform: translateY(0px);

    opacity: .5;

  }

  50% {

    transform: translateY(-18px);

    opacity: 1;

  }

}







.light-ray{

position:absolute;

left:-40%;

top:-50%;

width:180%;

height:180%;

background:

linear-gradient(
115deg,
transparent 35%,
rgba(255,255,255,.025) 50%,
transparent 65%
);

animation:shine 18s linear infinite;

opacity:.6;

}










