@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* ============================================================
   Hashnate — shared design system (multi-page)
   Fonts: Sora (display) + Plus Jakarta Sans (body)
   Palette anchored on #2A7CEB
   ============================================================ */

:root {
  --blue-400: #4F97F5;
  --blue-500: #2A7CEB;
  --blue-600: #1B63D6;
  --blue-700: #154fb0;
  --blue-900: #0a1f4d;
  --cyan-400: #38bdf8;

  --ink: #0b1220;
  --ink-2: #1e2a44;
  --slate: #54617c;
  --slate-2: #7683a0;

  --bg: #ffffff;
  --bg-soft: #f3f7ff;
  --bg-dark: #0a1836;
  --bg-darker: #07122b;
  --line: #e6edf9;
  --chip: #eaf2fe;

  --shadow-sm: 0 2px 12px rgba(16, 42, 90, .06);
  --shadow-md: 0 18px 44px rgba(16, 42, 90, .10);
  --shadow-lg: 0 40px 90px rgba(11, 31, 77, .16);
  --shadow-blue: 0 18px 38px rgba(42, 124, 235, .30);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;

  --f-display: "Sora", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 600
}

p {
  margin: 0
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0)
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .95rem;
  padding: .72em 1.35em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s;
  white-space: nowrap;
}

.btn__arrow {
  transition: transform .25s ease
}

.btn:hover .btn__arrow {
  transform: translateX(4px)
}

.btn--solid {
  background: var(--blue-500);
  color: #fff;
  box-shadow: var(--shadow-blue)
}

.btn--solid:hover {
  background: var(--blue-600);
  transform: translateY(-2px)
}

.btn--ghost {
  color: var(--ink)
}

.btn--ghost:hover {
  color: var(--blue-600)
}

.btn--line {
  border-color: var(--line);
  color: var(--ink);
  background: #fff
}

.btn--line:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
  transform: translateY(-2px)
}

.btn--lg {
  padding: .92em 1.7em;
  font-size: 1rem
}

.btn--full {
  width: 100%;
  justify-content: center
}

.btn--white {
  background: #fff;
  color: var(--blue-700)
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

/* ============================================================
   HEADER + DROPDOWN NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  border-color: rgba(203, 213, 225, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05)
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 74px
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -.03em
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: var(--shadow-blue)
}

.brand__name {
  background: linear-gradient(90deg, var(--ink), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px
}

.nav__item {
  position: relative
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  font-family: var(--f-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.18s ease;
  cursor: pointer;
  background: none;
  border: 0;
  text-decoration: none;
  line-height: 1;
}

.nav__link:hover,
.nav__item:hover .nav__link {
  color: var(--blue-600);
  background: none;
}

.nav__link.active {
  color: var(--blue-600);
  font-weight: 600;
}

.nav__caret {
  width: 9px;
  height: 6px;
  margin-left: 2px;
  color: #1e293b;
  transition: transform .25s ease, color .18s ease;
  flex-shrink: 0;
}

.nav__caret path {
  fill: currentColor;
}

.nav__link:hover .nav__caret,
.nav__item:hover .nav__caret,
.nav__link.active .nav__caret {
  color: var(--blue-600);
}

.nav__item:hover .nav__caret,
.nav__link[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

.nav__phone-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav__phone-widget:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
}

.phone-widget__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-widget__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phone-widget__label {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.phone-widget__number {
  font-family: var(--f-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.nav__phone-widget:hover .phone-widget__number {
  color: var(--blue-600);
}

.btn--nav-pill:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn--nav-pill .btn__arrow {
  font-size: 1.05rem;
  transition: transform .2s ease;
}

.btn--nav-pill:hover .btn__arrow {
  transform: translateX(3px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  z-index: 100;
  overflow: visible;
}

.nav__item:hover .dropdown,
.dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -40px;
  right: -40px;
  height: 28px;
}

/* Mega Dropdown Grid */
.dropdown--mega {
  min-width: 290px;
  width: max-content;
}

.mega-dd {
  display: flex;
  align-items: flex-start;
  background: transparent;
  position: relative;
}

/* Left Menu Column */
.mega-dd__left {
  width: 290px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 24px 54px -12px rgba(15, 23, 42, 0.18), 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-dd.has-active-sub .mega-dd__left {
  border-right: none;
}

.mega-dd__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-dd__item {
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-dd__item:last-child {
  border-bottom: none;
}

.mega-dd__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}

.mega-dd__title {
  flex: 1;
}

/* Hover & Active State: Solid vibrant blue background with white text matching reference */
.mega-dd__item:hover,
.mega-dd__item:hover .mega-dd__link,
.mega-dd__link:hover,
.mega-dd__item.active,
.mega-dd__item.active .mega-dd__link {
  background: var(--blue-600) !important;
  color: #ffffff !important;
}

/* Arrow indicator on right side of left item */
.mega-dd__arrow {
  width: 9px;
  height: 7px;
  margin-left: 12px;
  color: var(--blue-500);
  transition: color 0.15s ease, fill 0.15s ease;
  flex-shrink: 0;
}

.mega-dd__arrow path {
  fill: currentColor;
}

.mega-dd__item.active .mega-dd__arrow path {
  fill: #ffffff;
}

/* Right Panel (Sub-hyperlinks) - Self-contained card stopping right after the last sub-item */
.mega-dd__right {
  display: none;
  width: 390px;
  background: #ffffff;
  position: relative;
  opacity: 0;
  align-self: flex-start !important;
  height: auto !important;
  max-height: max-content !important;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 24px 54px -12px rgba(15, 23, 42, 0.18), 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-dd.has-active-sub .mega-dd__right {
  display: block !important;
  opacity: 1;
}

.mega-dd__panel {
  display: none;
  flex-direction: column;
  padding: 0;
  height: auto !important;
}

.mega-dd__panel.active {
  display: flex !important;
}

.mega-dd__sub-link {
  display: block;
  padding: 16px 22px;
  font-family: var(--f-body);
  font-size: 0.94rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
  line-height: 1.45;
}

.mega-dd__sub-link:last-child {
  border-bottom: none;
}

.mega-dd__sub-link:hover {
  color: var(--blue-600);
  background: #f8fafc;
  padding-left: 26px;
}

.nav__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px
}

.lang {
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 10px;
  border-radius: 8px
}

.lang:hover {
  background: var(--chip);
  color: var(--blue-600)
}

.burger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* mobile drawer */
.m-nav {
  display: none;
  flex-direction: column;
  padding: 12px 20px 26px;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: 80vh;
  overflow: auto
}

.m-nav a,
.m-acc__btn {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ink-2)
}

.m-nav>a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line)
}

.m-acc {
  border-bottom: 1px solid var(--line)
}

.m-acc__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: 0;
  padding: 14px 4px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink-2)
}

.m-acc__btn .caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s
}

.m-acc.open .caret {
  transform: rotate(-135deg)
}

.m-acc__panel {
  display: none;
  flex-direction: column;
  padding: 0 0 10px 6px
}

.m-acc.open .m-acc__panel {
  display: flex
}

.m-acc__panel a {
  padding: 10px 4px;
  font-size: .92rem;
  color: var(--slate)
}

.m-nav .btn {
  margin-top: 16px;
  color: #fff
}

.m-nav__phone-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-600);
  color: #ffffff !important;
  padding: 14px 20px;
  border-radius: 12px;
  margin-top: 18px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}

.m-nav__phone-box:active {
  transform: scale(0.98);
  background: var(--blue-700);
}

.m-nav__phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
}

.m-nav__phone-info {
  display: flex;
  flex-direction: column;
}

.m-nav__phone-label {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.m-nav__phone-num {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {

  .nav__links,
  .nav__cta {
    display: none !important;
  }

  .burger {
    display: flex !important;
  }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 96px;
  background:
    radial-gradient(60vw 60vw at 88% -10%, rgba(56, 189, 248, .16), transparent 60%),
    radial-gradient(50vw 50vw at 10% 20%, rgba(42, 124, 235, .14), transparent 60%),
    linear-gradient(180deg, #fbfdff, #eef4ff)
}

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(42, 124, 235, .16) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 60%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 60%, transparent);
  opacity: .5;
  pointer-events: none
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--blue-700);
  font-family: var(--f-display);
  box-shadow: var(--shadow-sm)
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(42, 124, 235, .18);
  animation: pulse 2.4s infinite
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(42, 124, 235, 0)
  }
}

.desktop-br {
  display: inline;
}

.mobile-br {
  display: none;
}

.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 4.05rem);
  font-weight: 700;
  margin: 22px 0 20px;
  line-height: 1.25;
}

.rotator {
  display: inline-block;
  position: relative;
  height: 1.2em;
  line-height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  color: var(--blue-500);
}

.rotator__list {
  display: flex;
  flex-direction: column;
  transition: transform .6s cubic-bezier(.7, 0, .2, 1);
}

.rotator__list span {
  display: block;
  height: 1.2em;
  line-height: 1.2em;
  white-space: nowrap;
}

.rotator__list span.rotator--orange {
  color: #ff6b00;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-orange {
  background: linear-gradient(135deg, #ff7a29 0%, #ff5500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-orange-light {
  background: linear-gradient(135deg, #ff9e59 0%, #ff6b2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero__lead {
  font-size: 1.13rem;
  color: var(--slate);
  max-width: 35em;
  margin-bottom: 30px
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px
}

.hero__trust-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-2)
}

.hero__trust-dot {
  display: none !important;
}

.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(16, 42, 90, 0.04);
  transition: all 0.22s ease
}

.hero__trust-badge i {
  color: var(--blue-500);
  font-size: 1rem;
  transition: transform 0.22s ease, color 0.22s ease
}

.hero__trust-badge:hover {
  background: #ffffff;
  border-color: var(--blue-500);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42, 124, 235, 0.12)
}

.hero__trust-badge:hover i {
  transform: scale(1.15);
  color: #ff6b00
}

/* impact panel (business, not dev) */
.hero__panel {
  position: relative
}

.impact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg)
}

.impact__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px
}

.impact__head h3 {
  font-size: 1.05rem
}

.impact__badge {
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 600;
  color: #0f9d58;
  background: #e6f7ee;
  border-radius: 999px;
  padding: 4px 11px;
  display: inline-flex;
  gap: 6px;
  align-items: center
}

.impact__badge i {
  font-size: .9rem
}

.impact__sub {
  font-size: .82rem;
  color: var(--slate-2);
  margin-bottom: 18px
}

.impact__filters {
  display: flex;
  gap: 8px;
  margin: 14px 0 16px;
  border-bottom: 1px solid var(--line, #e2e8f0);
  padding-bottom: 12px;
  overflow-x: auto;
}

.real-impact-tab {
  background: var(--bg-soft, #f8fafc);
  color: var(--slate-2, #64748b);
  border: 1px solid var(--line, #e2e8f0);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  outline: none;
  font-family: inherit;
}

.real-impact-tab i {
  font-size: 0.88rem;
}

.real-impact-tab:hover {
  background: #ffffff;
  border-color: #2A7CEB;
  color: #2A7CEB;
  transform: translateY(-1px);
}

.real-impact-tab.active-impact-tab {
  background: #2A7CEB !important;
  color: #ffffff !important;
  border: 1px solid #2A7CEB !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(42, 124, 235, 0.28) !important;
  transform: none !important;
}

.impact__chart {
  height: 150px
}

.impact__kpis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.kpi {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 4px 6px;
  text-align: center;
}

.kpi-divider {
  width: 1px;
  height: 38px;
  background: var(--line);
  flex-shrink: 0;
  opacity: 0.8;
}

.kpi b {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--blue-600);
  line-height: 1.15;
}

.kpi b.kpi__orange {
  color: #ff5f1f;
}

.kpi span {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-2);
  margin-top: 4px;
  font-weight: 500;
}

.hero__chip {
  position: absolute;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 14px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  gap: 7px;
  align-items: center;
  animation: float 5.5s ease-in-out infinite
}

.hero__chip i {
  color: var(--blue-500);
  font-size: 1rem
}

.hero__chip--a {
  top: -16px;
  left: -20px
}

.hero__chip--b {
  bottom: 26px;
  right: -22px;
  animation-delay: 1.6s
}

@keyframes float {
  50% {
    transform: translateY(-10px)
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 66px 0 70px;
  background:
    radial-gradient(50vw 40vw at 80% -20%, rgba(56, 189, 248, .18), transparent 60%),
    radial-gradient(40vw 40vw at 12% 0%, rgba(42, 124, 235, .16), transparent 60%),
    linear-gradient(180deg, #fbfdff, #eef4ff)
}

.crumb,
.page-hero .crumb,
.breadcrumb,
.hero__sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(42, 124, 235, 0.08);
  border: 1px solid rgba(42, 124, 235, 0.22);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(42, 124, 235, 0.08);
  font-family: var(--f-display);
  font-size: 0.88rem;
  color: #334155;
  transition: all 0.3s ease;
}

.crumb:hover,
.page-hero .crumb:hover,
.breadcrumb:hover {
  background: rgba(42, 124, 235, 0.12);
  border-color: rgba(42, 124, 235, 0.35);
  box-shadow: 0 6px 18px rgba(42, 124, 235, 0.12);
}

.crumb a,
.page-hero .crumb a,
.breadcrumb a,
.hero__sub a {
  color: #2A7CEB !important;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.crumb a:hover,
.page-hero .crumb a:hover,
.breadcrumb a:hover,
.hero__sub a:hover {
  color: #ff5500 !important;
}

.crumb span,
.page-hero .crumb span,
.breadcrumb .sep,
.hero__sub span {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 700;
  position: relative
}

.page-hero p {
  max-width: 44em;
  margin: 16px auto 0;
  color: var(--slate);
  font-size: 1.1rem;
  position: relative
}

.page-hero .hero__actions {
  justify-content: center;
  margin-top: 26px
}

/* ============================================================
   SECTIONS + SHARED COMPONENTS
   ============================================================ */
.section {
  padding: 96px 0
}

.section--soft {
  background: var(--bg-soft)
}

.section--dark {
  background: var(--bg-dark);
  color: #fff
}

.head {
  max-width: 660px;
  margin: 0 auto 54px;
  text-align: center
}

.head--left {
  margin-left: 0;
  text-align: left
}

.kicker {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-600);
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-left: 3.5px;
  margin-bottom: 12px
}

.kicker--light {
  background: transparent;
  color: #9ec2ff
}

.head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem)
}

.head p {
  margin-top: 14px;
  color: #334155;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.6;
}

.section--dark .head p,
.head--light p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.muted-light {
  color: rgba(255, 255, 255, .72) !important
}

.cards {
  display: grid;
  gap: 22px
}

.cards--4 {
  grid-template-columns: repeat(4, 1fr)
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr)
}

.cards--2 {
  grid-template-columns: repeat(2, 1fr)
}

.card {
  background: #ffffff;
  border: 1px solid rgba(42, 124, 235, 0.22);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 6px 20px rgba(42, 94, 200, 0.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(42, 124, 235, 0.15);
  border-color: rgba(42, 124, 235, 0.5);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: rgba(42, 124, 235, 0.08);
  color: #2A7CEB;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 8px;
}

.card p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
}

.card__link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 14px;
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-600)
}

.svc {
  background: #ffffff;
  border: 1px solid rgba(42, 124, 235, 0.22);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(42, 94, 200, 0.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(42, 124, 235, 0.15);
  border-color: rgba(42, 124, 235, 0.5);
}

.svc__no {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  color: #2A7CEB;
  background: rgba(42, 124, 235, 0.08);
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
}

.svc h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #0b1220;
  margin: 14px 0 8px;
}

.svc p {
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.6;
  font-weight: 500;
}

/* feature split */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.feature--rev .feature__copy {
  order: 1
}

.feature h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin: 14px 0 16px
}

.feature p {
  color: var(--slate);
  font-size: 1.05rem
}

.section--dark .feature p {
  color: rgba(255, 255, 255, .72)
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px
}

.ticks li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-2)
}

.section--dark .ticks li {
  color: #e8eefc
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .72rem;
  color: #fff;
  background: var(--blue-500)
}

/* business chart card */
.viz {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md)
}

.viz__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px
}

.viz__head h4 {
  font-size: 1rem
}

.viz__badge {
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--chip);
  padding: 4px 11px;
  border-radius: 999px
}

.viz__chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 180px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line)
}

.viz__chart .col {
  flex: 1;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
  transition: height 1s cubic-bezier(.6, 0, .2, 1)
}

.viz__chart .col:last-child {
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-500))
}

.viz__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--f-display);
  font-size: .82rem;
  color: var(--slate)
}

.viz__track {
  flex: 1;
  height: 8px;
  border-radius: 6px;
  background: #eef2fb;
  overflow: hidden
}

.viz__track i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400))
}

/* dark pillars + mini grid */
.pillars {
  display: grid;
  gap: 12px;
  margin-top: 24px
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 500;
  color: #e8eefc
}

.pillar span {
  color: var(--cyan-400)
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.mini {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 22px;
  transition: background .25s, transform .25s
}

.mini:hover {
  background: rgba(42, 124, 235, .14);
  transform: translateY(-4px)
}

.mini__k {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px
}

.mini__v {
  font-size: .9rem;
  color: rgba(255, 255, 255, .66)
}

/* stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.statbox {
  text-align: center;
  padding: 8px
}

.statbox b {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--blue-600);
  letter-spacing: -.03em
}

.statbox span {
  font-size: .9rem;
  color: var(--slate)
}

.section--dark .statbox b {
  color: #fff
}

.section--dark .statbox span {
  color: rgba(255, 255, 255, .66)
}

/* process steps (numbered = real sequence) */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: s;
}

.step {
  position: relative;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid rgba(42, 124, 235, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7a29, #2A7CEB);
  transition: height 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--blue-500);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
}

.step:hover::before {
  height: 6px;
}

.step__no {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.85rem;
  background: linear-gradient(135deg, #2A7CEB 0%, #154fb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1220;
  margin: 10px 0 8px;
}

.step p {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
}

/* testimonials */
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .28s, box-shadow .28s;
  display: flex;
  flex-direction: column
}

.quote:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: var(--f-display);
  font-size: 4rem;
  color: var(--chip);
  line-height: 1
}

.quote blockquote {
  margin: 0 0 20px;
  font-size: .98rem;
  color: var(--ink-2);
  position: relative;
  flex: 1
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 13px
}

.quote__av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  flex-shrink: 0;
  text-align: center
}

.quote figcaption>span {
  display: flex;
  flex-direction: column
}

.quote figcaption strong {
  font-family: var(--f-display);
  font-size: .95rem;
  color: var(--ink)
}

.quote figcaption>span>span {
  font-size: .82rem;
  color: var(--slate-2)
}

/* 3D perspective layout for testimonials */
@media(min-width:1001px) {
  .testimonials-3d {
    display: flex;
    justify-content: center;
    align-items: stretch;
    perspective: 1200px;
    gap: 0;
    max-width: 1120px;
    margin: 40px auto 0;
    position: relative;
    height: 290px;
  }

  .testimonials-3d .quote {
    position: absolute;
    width: 340px;
    height: 240px;
    left: calc(50% - 170px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease, opacity 0.6s ease, border-color 0.6s ease, background 0.6s ease, width 0.6s cubic-bezier(0.25, 1, 0.5, 1), left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    backface-visibility: hidden;
    cursor: pointer;
  }

  .testimonials-3d .quote.no-transition {
    transition: none !important;
  }

  /* Left card position */
  .testimonials-3d .quote.quote-3d-left {
    transform: translateX(-410px) rotateY(90deg) scale(0.92) translateZ(-50px);
    transform-origin: right center;
    z-index: 1;
    opacity: 0.65;
    background: #fff;
  }

  /* Center card position */
  .testimonials-3d .quote.quote-3d-center {
    width: 450px;
    left: calc(50% - 225px);
    transform: translateX(0) rotateY(0deg) scale(1.05) translateZ(40px);
    z-index: 3;
    opacity: 1;
    box-shadow: var(--shadow-md);
    background: linear-gradient(145deg, #ffffff, var(--chip));
    border-color: var(--blue-400);
  }

  /* Right card position */
  .testimonials-3d .quote.quote-3d-right {
    transform: translateX(410px) rotateY(-90deg) scale(0.92) translateZ(-50px);
    transform-origin: left center;
    z-index: 1;
    opacity: 0.65;
    background: #fff;
  }

  /* Center Hover focus animation */
  .testimonials-3d .quote.quote-3d-center:hover {
    transform: translateX(0) rotateY(0deg) scale(1.08) translateZ(60px);
    z-index: 5;
    box-shadow: var(--shadow-lg);
  }
}

.testimonials-3d-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials-3d-indicators .indicator-dash {
  width: 28px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.testimonials-3d-indicators .indicator-dash.active {
  background: var(--blue-400);
  width: 40px;
}

/* service / sector detail blocks */
.block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 44px 0
}

.block+.block {
  border-top: 1px solid var(--line)
}

.block--rev .block__media {
  order: -1
}

.block__tag {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-600);
  margin-left: 3.5px;
  padding-left: 0;
  margin-bottom: 8px
}

.block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  padding-left: 0
}

.block p {
  color: var(--slate)
}

.block__media {
  background: linear-gradient(140deg, #eef4ff, #dfeafd);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.block__media .glyph {
  font-size: 4.5rem;
  filter: drop-shadow(0 12px 24px rgba(42, 124, 235, .28))
}

.block__media::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 124, 235, .22), transparent 70%);
  top: -40px;
  right: -40px
}

/* articles (learnings) */
.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform .28s, box-shadow .28s, border-color .28s;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}

.article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--blue-500);
}

.article__img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: #fff;
}

.article__img.v2 {
  background: linear-gradient(140deg, #6d28d9, var(--blue-600))
}

.article__img.v3 {
  background: linear-gradient(140deg, var(--cyan-400), var(--blue-600))
}

.article__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 4px 8px;
}

.article__cat {
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-600);
  margin-bottom: 8px;
}

.article__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.article__arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  font-size: 1.1rem;
}

.article:hover .article__arrow {
  background: #e2e8f0;
  color: var(--blue-600);
}

.article p {
  color: #8995a5;
  font-size: .9rem;
  line-height: 1.5;
  flex: 1
}

.article__meta {
  margin-top: 16px;
  font-size: .8rem;
  color: var(--slate-2);
  display: flex;
  gap: 10px;
  align-items: center
}

/* course band */
.course {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark), #12275a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden
}

.course::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .28), transparent 70%);
  top: -120px;
  right: -80px
}

.course h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 14px 0 14px;
  position: relative
}

.course p {
  color: rgba(255, 255, 255, .76);
  margin-bottom: 26px;
  position: relative
}

.course__list {
  position: relative;
  display: grid;
  gap: 14px
}

.course__list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 16px
}

.course__list b {
  font-family: var(--f-display);
  font-size: .95rem;
  display: block
}

.course__list span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .66)
}

.course__list em {
  font-size: 1.4rem;
  font-style: normal
}

/* cta band */
.cta {
  background: var(--bg-dark);
  color: #fff
}

.cta__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start
}

.cta h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 14px 0 16px
}

.cta__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px
}

.cta__line {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  transition: color .2s;
  display: inline-flex;
  gap: 10px
}

a.cta__line:hover {
  color: var(--cyan-400)
}

.cta__social {
  display: flex;
  gap: 10px;
  margin-top: 22px
}

.cta__social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .2s, transform .2s;
  text-transform: lowercase
}

.cta__social a:hover {
  background: var(--blue-500);
  transform: translateY(-3px)
}

/* forms */
.form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 30px
}

.form--light {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md)
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 7px
}

.form .field label {
  color: #cdd8f0
}

.form--light .field label {
  color: var(--ink-2)
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 12px;
  padding: 13px 15px;
  font-family: var(--f-body);
  font-size: .95rem;
  resize: vertical;
  transition: border-color .2s, background .2s
}

.form .field input,
.form .field textarea,
.form .field select {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff
}

.form .field input::placeholder,
.form .field textarea::placeholder {
  color: rgba(255, 255, 255, .4)
}

.form--light .field input,
.form--light .field textarea,
.form--light .field select {
  background: #f7faff;
  border: 1px solid var(--line);
  color: var(--ink)
}

.form--light .field input::placeholder,
.form--light .field textarea::placeholder {
  color: var(--slate-2)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-400)
}

.form-note {
  margin-top: 14px;
  font-size: .86rem;
  min-height: 1.2em
}

.form .form-note {
  color: var(--cyan-400)
}

.form--light .form-note {
  color: var(--blue-600)
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

/* faq */
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq__item {
  border: 1px solid rgba(42, 124, 235, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(42, 94, 200, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.faq__item:hover {
  border-color: rgba(42, 124, 235, 0.4);
  box-shadow: 0 10px 28px rgba(42, 124, 235, 0.12);
  transform: translateY(-2px);
}

.faq__item.open {
  border-color: #2A7CEB;
  box-shadow: 0 12px 32px rgba(42, 124, 235, 0.16);
  background: #ffffff;
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.25rem 1.5rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.08rem;
  text-align: left;
  cursor: pointer;
  color: #0b1220;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq__q:hover {
  color: #2A7CEB;
}

.faq__q-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq__q-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(42, 124, 235, 0.08);
  color: #2A7CEB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq__item.open .faq__q-icon {
  background: #2A7CEB;
  color: #ffffff;
}

.faq__chevron,
.faq__q .caret {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f4fb;
  color: #2A7CEB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__q .caret::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2.5px solid #2A7CEB;
  border-bottom: 2.5px solid #2A7CEB;
  transform: rotate(45deg);
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq__q:hover .faq__chevron,
.faq__q:hover .caret {
  background: rgba(42, 124, 235, 0.15);
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  background: #2A7CEB;
  color: #ffffff;
}

.faq__item.open .caret {
  background: #2A7CEB;
}

.faq__item.open .caret::after {
  transform: rotate(-135deg);
  border-color: #ffffff;
}

.faq__a {
  display: none;
  padding: 1.1rem 1.5rem 1.4rem;
  border-top: 1px dashed rgba(42, 124, 235, 0.15);
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.65;
  font-weight: 500;
  background: #fcfdfe;
}

.faq__item.open .faq__a {
  display: block;
  animation: fadeInFaq 0.3s ease forwards;
}

@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* trust strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 0
}

.strip__title {
  font-size: 1.1rem;
  color: var(--slate);
  font-family: var(--f-display);
  text-align: center;
  font-weight: 600;
  margin: 0 0 12px 0
}

.strip__carousel {
  position: relative;
  width: 100%;
  max-width: 1228px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box
}

.strip__track-container {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 24px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1) 2%, #000 8%, #000 92%, rgba(0, 0, 0, 0.1) 98%, transparent);
  mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1) 2%, #000 8%, #000 92%, rgba(0, 0, 0, 0.1) 98%, transparent);
}

.strip__track-container::-webkit-scrollbar {
  display: none;
}

.strip__track-container.is-dragging {
  cursor: grabbing;
}

.strip__track {
  display: flex;
  width: max-content;
  will-change: transform;
}


.strip__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease, border-color 0.6s ease;
  margin: 8px;
  flex-shrink: 0;
  user-select: none;
  box-sizing: border-box;
  position: relative;
  z-index: 1
}

.strip__card:hover,
.strip__card.active {
  transform: translateY(-8px) scale(1.15);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-500);
  z-index: 2
}

.strip__card img {
  max-height: 76px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
  transition: all 0.3s ease
}

.strip__card:hover img,
.strip__card.active img {
  opacity: 1
}

/* Larger override for image copy 4 and 6 logos */
.strip__card img[src*="image%20copy%204"],
.strip__card img[src*="image copy 4"],
.strip__card img[src*="image%20copy%206"],
.strip__card img[src*="image copy 6"] {
  max-height: 102px;
  max-width: 95%;
}

/* Dynamic Green Plantations — zoom to be clearly visible */
.strip__card img[src*="image%20copy%207"],
.strip__card img[src*="image copy 7"] {
  max-height: 100px;
  max-width: 95%;
  transform: scale(1.55);
  transform-origin: center;
}

.strip__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px
}

.strip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c2cee4;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s
}

.strip__dot.active {
  background: var(--blue-500);
  transform: scale(1.25)
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #020521;
  color: #fff;
  padding: 80px 0 30px
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px
}

.foot__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.foot__brand .brand {
  margin-bottom: 24px;
}

.foot__brand p {
  color: rgba(255, 255, 255, .6);
  font-size: .92rem;
  margin: 0 0 24px;
  max-width: 30ch;
}

.foot__brand .brand__name {
  background: linear-gradient(90deg, #fff, #9ec2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.foot__follow {
  font-family: var(--f-display);
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
}

.foot__social {
  display: flex;
  gap: 16px;
}

.foot__social a {
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: transparent;
  border: none;
  color: #fff;
  transition: color .2s, transform .2s;
}

.foot__social a:hover {
  background: transparent;
  color: #f98918;
  transform: translateY(-3px)
}

.foot__col h4 {
  font-family: var(--f-body);
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: normal;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.foot__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #f98918;
}

.foot__col a,
.foot__col>span {
  display: block;
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
  padding: 8px 0;
  transition: color .2s
}

.foot__col a:hover {
  color: #fff;
}

.foot__col a.foot__contact-item,
.foot__col div.foot__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .8);
  padding: 12px 0;
}

.foot__col .foot__contact-item i {
  font-size: 1.8rem;
  margin-top: 0;
  flex-shrink: 0;
}

.foot__col .foot__contact-item span {
  padding: 0;
  display: block;
  line-height: 1.5;
}

.foot__base {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  text-align: center;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Modern smooth zoom-out effect for images */
.reveal.anim-zoom {
  opacity: 0;
  transform: scale(1.05);
}

.reveal.anim-zoom.in {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1000px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
    width: 100%
  }

  .nav__links,
  .nav__cta {
    display: none
  }

  .burger {
    display: flex
  }

  .cards--4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .cards--3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .hero__panel {
    max-width: 520px
  }

  .feature,
  .feature--rev,
  .cta__grid,
  .course,
  .block,
  .block--rev {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .feature--rev .feature__copy,
  .block--rev .block__media {
    order: 0
  }

  .steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .section {
    padding: 70px 0
  }

  .cards--4,
  .cards--3,
  .cards--2 {
    grid-template-columns: 1fr
  }

  .feature__grid,
  .row2 {
    grid-template-columns: 1fr
  }

  .impact__kpis {
    flex-wrap: wrap;
    gap: 12px;
  }

  .course {
    padding: 32px
  }

  .hero__chip {
    display: none
  }

  .steps {
    grid-template-columns: 1fr
  }

  .foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .foot__brand {
    grid-column: 1/-1
  }

  .strip__card {
    width: 210px;
    height: 105px;
    padding: 18px 24px;
    margin: 6px
  }

  .strip__card img {
    max-height: 64px
  }

  /* ERPNext flagship section mobile fixes */
  .erpnext-highlight-inner {
    border-radius: 16px !important;
    padding: 1.5rem 1rem !important;
  }

  .erpnext-module-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  }

  .erpnext-module-cards>div {
    padding: 1.2rem !important;
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s, border-color .28s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch
}

.member::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.member:hover::before {
  transform: scaleX(1)
}

.member__ph {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  overflow: hidden;
  box-shadow: var(--shadow-blue)
}

.member__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.member:nth-child(4n+2) .member__ph {
  background: linear-gradient(140deg, #6d28d9, var(--blue-600))
}

.member:nth-child(4n+3) .member__ph {
  background: linear-gradient(140deg, var(--cyan-400), var(--blue-600))
}

.member:nth-child(4n+4) .member__ph {
  background: linear-gradient(140deg, #0f9d58, var(--blue-600))
}

.member h3 {
  font-size: 1.08rem;
  margin-bottom: 3px
}

.member__role {
  font-size: .85rem;
  color: var(--blue-500);
  font-family: var(--f-display);
  font-weight: 600
}

.member__bio {
  font-size: .85rem;
  color: var(--slate);
  margin-top: 11px
}

.member__soc {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 15px
}

.member__soc a {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--chip);
  color: var(--blue-600);
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 600;
  transition: background .2s, color .2s;
  text-transform: lowercase
}

.member__soc a:hover {
  background: var(--blue-500);
  color: #fff;
  transform: translateY(-2px)
}

/* join banner */
.join {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #eef4ff, #dfeafd);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 34px
}

.join h3 {
  font-size: 1.25rem
}

.join p {
  color: var(--slate);
  font-size: .95rem;
  margin-top: 4px
}

@media(max-width:1000px) {
  .team {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .team {
    grid-template-columns: 1fr
  }

  .join {
    flex-direction: column;
    text-align: center
  }
}

/* ============================================================
   TABLER ICONS + TEAM PAGE
   ============================================================ */
.ti {
  vertical-align: -.125em;
  line-height: 1
}

.card__icon i {
  font-size: 1.6rem;
  color: var(--blue-600)
}

.dd-ico i {
  font-size: 1.2rem;
  color: var(--blue-600)
}

.block__media .glyph {
  line-height: 0
}

.block__media .glyph i {
  font-size: 4.6rem;
  color: var(--blue-600);
  filter: drop-shadow(0 12px 24px rgba(42, 124, 235, .28))
}

.article__img i {
  font-size: 2.7rem;
  color: #fff
}

.course__list em {
  line-height: 0
}

.course__list em i {
  font-size: 1.5rem;
  color: var(--cyan-400)
}

.cta__line i {
  font-size: 1.1rem;
  flex-shrink: 0
}

.foot__social a i,
.cta__social a i {
  font-size: 1.1rem
}

.card__link i {
  font-size: .95em
}

.btn__arrow {
  font-size: 1.05em
}

/* team */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.team--lead {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto 24px
}

.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s, border-color .28s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch
}

.member::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.member:hover::before {
  transform: scaleX(1)
}

.member__av {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  box-shadow: var(--shadow-blue)
}

.member__av.v2 {
  background: linear-gradient(140deg, #6d28d9, var(--blue-600))
}

.member__av.v3 {
  background: linear-gradient(140deg, var(--cyan-400), var(--blue-600))
}

.member__av.v4 {
  background: linear-gradient(140deg, #0ea5e9, var(--blue-700))
}

.member h3 {
  font-size: 1.08rem
}

.member__role {
  font-family: var(--f-display);
  font-size: .84rem;
  color: var(--blue-600);
  font-weight: 600;
  margin-top: 3px
}

.member p {
  font-size: .86rem;
  color: var(--slate);
  margin-top: 12px
}

.member__social {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
  padding-top: 16px
}

.member__social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--chip);
  color: var(--blue-600);
  transition: background .2s, color .2s, transform .2s
}

.member__social a:hover {
  background: var(--blue-500);
  color: #fff;
  transform: translateY(-2px)
}

.member__social a i {
  font-size: 1rem
}

@media(max-width:1000px) {
  .team {
    grid-template-columns: repeat(2, 1fr)
  }

  .team--lead {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .team {
    grid-template-columns: 1fr
  }
}

/* Leadership Interactive Tabs */
.lead-tabs-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  margin-top: 40px;
}

.lead-tab-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-tab {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  opacity: 0.6;
  position: relative;
  overflow: hidden;
}

.lead-tab::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.lead-tab:hover,
.lead-tab.active {
  opacity: 1;
}

.lead-tab:hover::before,
.lead-tab.active::before {
  transform: scaleX(1);
}

.lead-tab.active {
  opacity: 1;
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.lead-tab-img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.lead-tab-info {
  display: flex;
  flex-direction: column;
}

.lead-tab-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #eef2ff;
  color: var(--blue-700);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 6px;
}

.lead-tab-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.lead-tab-role {
  font-size: 0.95rem;
  color: var(--blue-500);
}

.lead-panel {
  display: none;
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
  animation: fadeIn 0.3s ease;
}

.lead-panel.active {
  display: flex;
  gap: 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead-panel-img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.lead-panel-content {
  flex: 1;
}

.lead-panel-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.lead-panel-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-500);
  margin-bottom: 24px;
}

.lead-panel-bio {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lead-panel-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-600);
  margin: 24px 0 12px;
}

.lead-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-pill {
  font-size: 0.8rem;
  font-weight: 500;
  background: #e2e8f0;
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 6px;
}

.lead-connect {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.lead-connect a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.2s, background 0.2s;
}

.lead-connect a i {
  font-size: 1.1rem;
}

.lead-connect a:hover {
  transform: translateY(-2px);
  background: var(--blue-600);
}

@media(max-width: 800px) {
  .lead-tabs-container {
    grid-template-columns: 1fr;
  }

  .lead-panel.active {
    flex-direction: column;
    padding: 24px;
  }
}

/* Achievements & Awards */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.award-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--blue-600);
  display: flex;
  flex-direction: column;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.award-card__img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.award-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.award-card:hover .award-card__img img {
  transform: scale(1.05);
}

.award-card__content {
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.award-card__content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 16px;
}

.award-card__content p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

.award-card__content strong {
  color: var(--blue-700);
  font-weight: 600;
}

@media(max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-card__img {
    height: 220px;
  }

  .award-card__content {
    padding: 32px 24px;
  }
}

/* Contact Page List */
.cta__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta__line:hover {
  color: var(--blue-600) !important;
}

.cta__line i {
  font-size: 1.35rem;
  color: var(--ink-1);
}

/* ============================================================
   TERMS & CONDITIONS PAGE
   ============================================================ */
.terms-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.terms-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.terms-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.terms-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-nav-link {
  display: block;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.terms-nav-link:hover {
  color: var(--blue-600);
  background: var(--bg-soft);
}

.terms-nav-link.active {
  color: var(--blue-600);
  background: var(--chip);
  border-left-color: var(--blue-500);
  font-weight: 600;
}

.terms-body {
  min-width: 0;
}

.terms-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.intro-text {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.separator {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}

.terms-section {
  scroll-margin-top: 100px;
}

.terms-section+.terms-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px dashed var(--line);
}

.terms-section h2 {
  font-size: 1.5rem;
  color: var(--blue-700);
  margin-bottom: 20px;
  font-family: var(--f-display);
  font-weight: 700;
}

.terms-section h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: var(--f-display);
  font-weight: 600;
}

.terms-section p {
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.styled-list {
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--slate);
}

.styled-list li {
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.disclaimer-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-500);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.disclaimer-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.important-note {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.important-note__icon {
  font-size: 1.4rem;
  color: var(--blue-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.important-note__content p {
  margin: 0 !important;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-2);
}

.important-note__content strong {
  color: var(--blue-700);
  font-weight: 600;
}

@media(max-width: 1000px) {
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .terms-sidebar {
    position: static;
  }

  .terms-nav {
    padding: 16px;
  }

  .terms-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .terms-nav-link {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-left: 0;
    border-bottom: 2px solid transparent;
  }

  .terms-nav-link.active {
    border-left-color: transparent;
    border-bottom-color: var(--blue-500);
  }

  .terms-card {
    padding: 32px 24px;
  }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(42, 124, 235, 0.16);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s, background 0.2s, border-color 0.2s, box-shadow 0.25s, color 0.2s;
  box-shadow: 0 4px 18px rgba(11, 25, 59, 0.1), 0 2px 6px rgba(11, 25, 59, 0.04);
  padding: 0;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--blue-400);
  box-shadow: 0 8px 24px rgba(42, 124, 235, 0.28), 0 2px 8px rgba(42, 124, 235, 0.08);
  color: var(--blue-600);
}

.back-to-top__progress {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.back-to-top__circle-bg {
  stroke: rgba(11, 18, 32, 0.06);
}

.back-to-top__circle-progress {
  stroke: var(--blue-500);
  transition: stroke-dashoffset 0.1s linear, stroke 0.2s ease;
  stroke-linecap: round;
}

.back-to-top:hover .back-to-top__circle-progress {
  stroke: var(--blue-600);
}

.back-to-top__icon {
  font-size: 1.25rem;
  z-index: 2;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: -1px;
}

.back-to-top:hover .back-to-top__icon {
  transform: translateY(-3px);
}

/* ============================================================
   PREMIUM PAGE HERO (Image Background)
   ============================================================ */
.page-hero--image-bg {
  background-image: url('assets/premium-hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   HERO VIDEO BACKGROUND
   ============================================================ */
.page-hero--video {
  position: relative;
  background: transparent;
  color: #fff;
}

.page-hero--video h1 {
  color: #fff;
}

.page-hero--video p:not(.crumb) {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero--video .crumb {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero--video .crumb a {
  color: #fff;
}

.page-hero--video .crumb a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero--video .page-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.page-hero--video .wrap {
  position: relative;
  z-index: 2;
}

.page-hero--video .hero__dots {
  z-index: 1;
}

.page-hero--video .hero__photos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1.5s ease;
}

.page-hero--video .hero__photos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-hero--video .hero__photo {
  width: 50%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 3s ease-out;
}

.page-hero--video.video-ended .page-hero__video {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.page-hero--video.video-ended .hero__photos {
  opacity: 1;
}

.page-hero--video.video-ended .hero__photo {
  transform: scale(1);
}

/* ============================================================
   BEIGE CTA SECTION (Target Design)
   ============================================================ */
.cta-beige {
  background: #faf8f5;
  padding: 100px 0;
  text-align: center;
}

.kicker--gold {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #4a5568;
  background: transparent;
  border: 1px solid #e3d5c1;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 30px;
}

.title-elegant {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  color: #051024;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-elegant .text-gold {
  color: #CC7014;
  font-style: normal;
}

.cta-beige .text-slate {
  font-family: var(--f-body);
  font-size: 1.15rem;
  color: #54617c;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.btn--navy {
  background: #061129;
  color: #fff;
  padding: .8em 1.8em;
  font-size: 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform .2s, background .2s;
  box-shadow: 0 10px 25px rgba(6, 17, 41, 0.15);
}

.btn--navy:hover {
  transform: translateY(-2px);
  background: #0a1f4d;
  color: #fff;
}

.page-hero--video .hero__photos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-hero--video .hero__photo {
  width: 50%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 3s ease-out;
}

.page-hero--video.video-ended .page-hero__video {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.page-hero--video.video-ended .hero__photos {
  opacity: 1;
}

.page-hero--video.video-ended .hero__photo {
  transform: scale(1);
}

/* ============================================================
   BEIGE CTA SECTION (Target Design)
   ============================================================ */
.cta-beige {
  background: #faf8f5;
  padding: 100px 0;
  text-align: center;
}

.kicker--gold {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #4a5568;
  background: transparent;
  border: 1px solid #e3d5c1;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 30px;
}

.title-elegant {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  color: #051024;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-elegant .text-gold {
  color: #CC7014;
  font-style: normal;
}

.cta-beige .text-slate {
  font-family: var(--f-body);
  font-size: 1.15rem;
  color: #54617c;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.btn--navy {
  background: #061129;
  color: #fff;
  padding: .8em 1.8em;
  font-size: 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform .2s, background .2s;
  box-shadow: 0 10px 25px rgba(6, 17, 41, 0.15);
}

.btn--navy:hover {
  transform: translateY(-2px);
  background: #0a1f4d;
}

/* ============================================================
   GLOBAL MOBILE RESPONSIVENESS FIXES (OVERRIDE ALL PREVIOUS)
   ============================================================ */
@media screen and (max-width: 991px) {

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .wrap {
    padding: 0 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero {
    padding: 28px 0 44px !important;
    overflow: hidden !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .hero__copy {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero__title {
    font-size: clamp(1.95rem, 8vw, 2.7rem) !important;
    line-height: 1.18 !important;
    margin: 10px 0 18px !important;
    font-weight: 800 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    letter-spacing: -0.025em !important;
    color: var(--ink) !important;
  }

  .desktop-br {
    display: none !important;
  }

  .mobile-br {
    display: inline !important;
  }

  .rotator {
    display: inline-block !important;
    height: 1.22em !important;
    line-height: 1.22em !important;
    max-width: 100% !important;
  }

  .rotator__list span {
    height: 1.22em !important;
    line-height: 1.22em !important;
    font-size: 1em !important;
  }

  .hero__lead {
    font-size: 0.98rem !important;
    line-height: 1.62 !important;
    color: #334155 !important;
    margin-bottom: 24px !important;
    max-width: 100% !important;
  }

  .hero__actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero__actions .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 22px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    box-sizing: border-box !important;
  }

  .hero__actions .btn--solid {
    box-shadow: 0 8px 24px rgba(42, 124, 235, 0.28) !important;
  }

  .hero__actions .btn--line {
    background: #ffffff !important;
    border: 1.5px solid var(--line) !important;
    color: var(--ink) !important;
  }

  .hero__trust {
    margin-top: 28px !important;
    padding-top: 22px !important;
    border-top: 1px dashed var(--line) !important;
  }

  .hero__trust-label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    margin-bottom: 12px !important;
    display: inline-block !important;
  }

  .hero__trust-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .hero__trust-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: #0f172a !important;
    background: #ffffff !important;
    border: 1px solid rgba(42, 124, 235, 0.16) !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    min-height: 56px !important;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.03) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
  }

  .hero__trust-badge i {
    color: #2A7CEB !important;
    font-size: 1.05rem !important;
    flex-shrink: 0 !important;
  }

  .hero__panel {
    max-width: 100% !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
    box-sizing: border-box !important;
  }

  .impact {
    transform: none !important;
    background: #ffffff !important;
    border: 1px solid rgba(42, 124, 235, 0.15) !important;
    border-radius: 22px !important;
    padding: 22px 18px !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.03) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .impact__head {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .impact__head h3 {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
    margin-bottom: 3px !important;
  }

  .impact__sub {
    font-size: 0.84rem !important;
    color: #64748b !important;
    margin-bottom: 0 !important;
  }

  .impact__badge {
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    padding: 5px 12px !important;
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    border-radius: 999px !important;
    flex-shrink: 0 !important;
  }

  .impact__filters {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    background: #f1f5f9 !important;
    padding: 5px !important;
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    margin: 18px 0 16px !important;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .impact__filters::-webkit-scrollbar {
    display: none !important;
  }

  .real-impact-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 100% !important;
    padding: 9px 4px !important;
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    background: transparent !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .real-impact-tab i {
    font-size: 0.88rem !important;
    flex-shrink: 0 !important;
  }

  .real-impact-tab.active-impact-tab {
    background: #2A7CEB !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(42, 124, 235, 0.28) !important;
  }

  #impactContentBox {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 16px 14px !important;
    min-height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .impact__kpis {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-top: 18px !important;
    padding-top: 16px !important;
    border-top: 1px solid #e2e8f0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .kpi-divider {
    display: none !important;
  }

  .kpi {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 6px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
  }

  .kpi b {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
  }

  .kpi span {
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    margin-top: 3px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    text-align: center !important;
  }
}

/* ============================================================
   ATTRACTIVE GLASS PILL BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(42, 124, 235, 0.07);
  border: 1px solid rgba(42, 124, 235, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(42, 124, 235, 0.05);
}

.breadcrumb a {
  color: #2A7CEB;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ff5500;
}

.breadcrumb .sep,
.breadcrumb span.sep {
  color: #94a3b8;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
}

.breadcrumb .current,
.breadcrumb span.current {
  color: #1e293b;
  font-weight: 700;
  font-size: 0.88rem;
}