/* Homepage body override */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 66px;
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 65% at 28% 55%, rgba(79, 70, 229, .07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 78% 38%, rgba(129, 140, 248, .05) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 0.5px solid rgba(79, 70, 229, .22);
  border-radius: 100px;
  padding: 5px 14px 5px 9px;
  font-size: 12.5px;
  color: var(--p);
  font-weight: 500;
  width: fit-content;
  margin-bottom: 24px;
  animation: fadeUp .55s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--p);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.65); }
}

h1.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeUp .55s .08s ease both;
}

h1.hero-title em {
  color: var(--p);
  font-style: normal;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 430px;
  margin-bottom: 34px;
  animation: fadeUp .55s .16s ease both;
}

.hero-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  animation: fadeUp .55s .24s ease both;
}

.btn-primary {
  background: var(--p);
  color: #fff;
  padding: 12px 22px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--pd);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: 0.5px solid rgba(0, 0, 0, .14);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: border-color .2s, transform .15s;
}

.btn-secondary:hover {
  border-color: var(--p);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 0.5px solid rgba(0, 0, 0, .08);
  animation: fadeUp .55s .32s ease both;
}

.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  color: var(--p);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 80px;
}

/* Video card */
.hero-right {
  animation: fadeUp .65s .2s ease both;
}

.video-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, .1), 0 28px 72px rgba(79, 70, 229, .13), 0 4px 16px rgba(0, 0, 0, .05);
  aspect-ratio: 11/8.4 ;
  display: flex;
  flex-direction: column;
}

.video-chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 34px;
  z-index: 3;
  background: rgba(20, 17, 40, .6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  padding: 0 13px;
  gap: 6px;
}

.cdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cr { background: #ff5f56; }
.cy { background: #febc2e; }
.cg { background: #28c840; }

.video-inner {
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  background: linear-gradient(140deg, #1e1b4b 0%, #312e81 45%, #4338ca 80%, #6366f1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: filter .2s;
}

.video-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 50%, rgba(99, 102, 241, .45) 0%, transparent 70%);
  animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.video-inner:hover {
  filter: brightness(1.08);
}

.play-ring {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.video-inner:hover .play-ring {
  background: rgba(255, 255, 255, .24);
  transform: scale(1.08);
}

.play-ring svg {
  width: 21px;
  height: 21px;
  fill: #fff;
  margin-left: 3px;
}

.video-caption {
  position: relative;
  z-index: 1;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .02em;
}

.trusted-strip {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  border-top: 0.5px solid rgba(0, 0, 0, .06);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trusted-lbl {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--light);
  font-weight: 500;
  white-space: nowrap;
}

.trusted-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chip {
  font-size: 11.5px;
  color: #374151;
  background: rgba(79, 70, 229, .07);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── SECTION COMMONS ── */
section {
  padding: 96px 56px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--p);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--p);
}

h2.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
  margin-bottom: 14px;
}

h2.section-title em {
  color: var(--p);
  font-style: normal;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.section-header {
  margin-bottom: 56px;
}

/* ── TRUSTED LOGOS STRIP ── */
.logos-strip {
  background: var(--white);
  border-top: 0.5px solid rgba(0, 0, 0, .06);
  border-bottom: 0.5px solid rgba(0, 0, 0, .06);
  padding: 22px 56px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.logos-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: auto;
  scrollbar-width: none;
}

.logos-inner::-webkit-scrollbar {
  display: none;
}

.logo-tag {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  border: 0.5px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  padding: 7px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}

.logo-tag:hover {
  border-color: var(--p);
  color: var(--p);
}

.logos-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--light);
  margin-right: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logos-sep {
  width: 1px;
  height: 22px;
  background: rgba(0, 0, 0, .1);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── ARCHITECTURE ── */
.arch-wrapper {
  background: var(--bg);
  padding: 96px 0;
}

.arch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.arch-card {
  background: var(--white);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.arch-card:hover {
  background: #faf9ff;
}

.arch-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pl);
  margin-bottom: 4px;
}

.arch-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--pf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.arch-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--p);
  stroke-width: 1.8;
  fill: none;
}

.arch-name {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text);
}

.arch-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.arch-items li {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.arch-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pl);
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features-wrapper {
  padding: 96px 0;
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 0.5px solid rgba(0, 0, 0, .06);
  transition: transform .2s, box-shadow .2s;
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(79, 70, 229, .1);
}

.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--pf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--p);
  stroke-width: 1.8;
  fill: none;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--p);
  background: var(--pf);
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 16px;
  font-weight: 500;
}

.feat-tag svg {
  width: 13px;
  height: 13px;
  stroke: var(--p);
  stroke-width: 2;
  fill: none;
}

.feat-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── JOURNEY ── */
.journey-wrapper {
  padding: 96px 0;
}

.journey-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.journey-steps::-webkit-scrollbar {
  display: none;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 110px;
  position: relative;
}

.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--pe), rgba(79, 70, 229, .15));
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--pe);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  z-index: 1;
  transition: all .2s;
  flex-shrink: 0;
}

.journey-step.active .step-circle {
  background: var(--p);
  border-color: var(--p);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .15);
}

.step-label {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.journey-step.active .step-label {
  color: var(--p);
  font-weight: 500;
}

.step-sub {
  font-size: 11.5px;
  color: var(--light);
  text-align: center;
  margin-top: 3px;
  line-height: 1.3;
}

.journey-step.active .step-sub {
  color: var(--pl);
}

.journey-detail {
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 0.5px solid rgba(79, 70, 229, .15);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.jd-item {
  padding: 0;
}

.jd-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pl);
  font-weight: 600;
  margin-bottom: 6px;
}

.jd-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CRISIS ── */
.crisis-wrapper {
  padding: 96px 0;
}

.crisis-card {
  background: linear-gradient(145deg, #1e1b4b 0%, #2d2a6e 50%, #3b3593 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.crisis-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(99, 102, 241, .3) 0%, transparent 60%);
  pointer-events: none;
}

.crisis-left {
  position: relative;
  z-index: 1;
}

.crisis-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.crisis-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.crisis-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.crisis-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 0.5px solid rgba(255, 255, 255, .1);
  transition: background .2s;
}

.crisis-feat:hover {
  background: rgba(255, 255, 255, .11);
}

.crisis-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(79, 70, 229, .35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.crisis-feat-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--pl);
  stroke-width: 1.8;
  fill: none;
}

.crisis-feat-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.crisis-feat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

/* ── WHO WE SERVE ── */
.serve-wrapper {
  padding: 96px 0;
  background: var(--surface);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 0.5px solid rgba(0, 0, 0, .07);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  cursor: default;
}

.serve-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, .09);
}

.serve-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin: 0 auto 16px;
  background: var(--pf);
  display: flex;
  align-items: center;
  justify-content: center;
}

.serve-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--p);
  stroke-width: 1.6;
  fill: none;
}

.serve-name {
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.serve-sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── TRUST / STATS ── */
.trust-wrapper {
  padding: 96px 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.trust-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 0.5px solid rgba(0, 0, 0, .07);
}

.trust-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 46px;
  color: var(--p);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat-label {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.compliance-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.badge-comp {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 0.5px solid rgba(79, 70, 229, .2);
  color: var(--p);
  background: var(--pf);
  letter-spacing: .04em;
}

.trust-right h2 {
  margin-bottom: 16px;
}

.trust-right p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── TESTIMONIAL ── */
.testimonial-wrapper {
  padding: 96px 0;
  background: var(--pf);
}

.testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  border: 0.5px solid rgba(79, 70, 229, .12);
  box-shadow: 0 4px 32px rgba(79, 70, 229, .07);
  text-align: center;
}

.quote-mark {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  color: var(--pe);
  line-height: .8;
  margin-bottom: 8px;
}

blockquote {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--p);
  text-align: left;
}

.author-role {
  font-size: 12.5px;
  color: var(--muted);
  text-align: left;
}

/* ── NEWSROOM ── */
.news-wrapper {
  padding: 96px 0;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news-link {
  font-size: 14px;
  color: var(--p);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: gap .2s;
}

.news-link:hover {
  gap: 10px;
}

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

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid rgba(0, 0, 0, .07);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
}

.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, #c7d2fe, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: var(--p);
  font-style: normal;
  padding: 24px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}

.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(79, 70, 229, .2), transparent 60%);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.news-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--p);
  background: var(--pf);
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
}

.news-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.news-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: auto;
}

.news-author {
  font-size: 12px;
  color: var(--light);
}

.news-time {
  font-size: 11px;
  color: var(--p);
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--p);
  background: var(--pf);
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
  margin-bottom: 12px;
}

.news-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 10px;
  flex: 1;
}

.news-meta {
  font-size: 12px;
  color: var(--light);
  margin-top: auto;
}

/* ── CTA ── */
.cta-wrapper {
  padding: 96px 0;
}

.cta-card {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 80px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(79, 70, 229, .35), transparent 65%);
}

.cta-card h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: #fff;
  color: var(--p);
  padding: 13px 26px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-white:hover {
  background: var(--pe);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding: 13px 26px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 0.5px solid rgba(255, 255, 255, .25);
  transition: background .2s, transform .15s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-1px);
}

.soc2-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .35);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

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

/* ── FULL BLEED UTILITY ── */
.full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px;
  }

  .hero-right {
    order: -1;
    margin-top: 22px;
  }
  .video-card {
    aspect-ratio: 1/1.09;
  }

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

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

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

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-stats {
    grid-template-columns: 1fr;
  }

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

  .crisis-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 36px;
  }

  .journey-detail {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 40px 32px;
  }

  .cta-card {
    padding: 56px 36px;
  }

  section {
    padding: 72px 32px;
  }

  .logos-strip {
    padding: 18px 32px;
  }
}

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

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

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

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  section {
    padding: 56px 20px;
  }
}
