/* =========================
   DESIGN SYSTEM
========================= */

:root {
  --bg-primary: #0b0f1a;
  --bg-secondary: #0e1422;

  --panel: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent: #00c6ff;
  --accent-light: #00a8d6;

  --radius: 12px;
  --transition: all 0.3s ease;

  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;


  --bg-0: #0b0f1a;  /* darkest (hero) */
  --bg-1: #0e1422;
  --bg-2: #121a2b;
  --bg-3: #162033;
  --bg-4: #1b2a42;
  --bg-5: #22365a;  /* lead into CTA */
  --bg-accent: #2563eb; /* CTA peak */


  --card-radius: 12px;
}

/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   BASE
========================= */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;

  background:
    linear-gradient(rgba(5,10,20,0.45), rgba(5,10,20,0.65)),
    url('images/data-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;

  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    background:
      linear-gradient(rgba(5,10,20,0.7), rgba(5,10,20,0.85)),
      url('images/data-bg.png');

    background-size: cover;
    background-position: top center;  /* 🔥 KEY FIX */
    background-attachment: scroll;
  }
}
@media (min-width: 1024px) {
  body {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: rgba(5,10,20,0.4);
    backdrop-filter: blur(2px); /* subtle polish */

    pointer-events: none;
    z-index: 0;
  }

  body > * {
    position: relative;
    z-index: 1;
  }
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

h1 { font-size: 42px; }
h3 { font-size: 20px; margin-bottom: 15px; }

p {
  color: rgba(255,255,255,0.7);
}

/* =========================
   LAYOUT
========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 20px 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.015),
    rgba(255,255,255,0.03)
  );
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,7,13,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5,7,13,0.95);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo { height: 45px; }

/* NAV LINKS */

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
 
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.2s ease;
}
.nav-links > a,
.nav-item > a {
  color: #ffffff;
  opacity: 0.85;
}

.nav-links > a:hover,
.nav-item > a:hover {
  opacity: 1;
}

.nav-links a:hover {
  color: #fff;
}

/* hover underline */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* active */
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
}

/* =========================
   DROPDOWN
========================= */

.nav-item { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  background: rgba(11,15,26,0.95);
  border: 1px solid var(--border);
  border-radius: 10px;

  min-width: 200px;
  padding: 8px 0;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;

  transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.03);
}

/* =========================
   MOBILE NAV
========================= */

.menu-toggle {
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

/* ========================= */

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;

    background: rgba(11,15,26,0.98);
    backdrop-filter: blur(12px);

    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 20px;

    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    border: none;
    background: transparent;
  }

  .dropdown-menu.active {
    max-height: 200px;
  }
}

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

.hero {
  min-height: 75vh;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

/*.hero p {
  max-width: 700px;
  margin: 0 auto;
}*/

/* =========================
   CARDS
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,198,255,0.4);
}

.card h3 { margin-bottom: 12px; }



/* =========================
   CONTACT
========================= */

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  display: grid;
  gap: 60px;
}

.contact-form,
.contact-side {
 background: rgba(8, 18, 40, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0,198,255,0.2);
}

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

@media (max-width: 768px) {

  h1 { font-size: 28px; }

  .hero {
    padding: 50px 20px;
  }

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

  .journey-steps {
    flex-direction: column;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

/* =========================
   PATCH: RESTORE LAYOUT
========================= */

/* Section spacing balance */
.section {
  padding: 20px 0;
}

/* Desktop spacing (your original feel) */
@media (min-width: 1024px) {
  .section {
    padding: 60px 40px;
  }
}



/* Restore card layout consistency */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Ensure cards stretch properly */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Fix missing variables */
:root {
  --bg-light: #0e1422;
  --dark: #0b0f1a;
}

/* =========================
   GLOBAL SPACING FIX
========================= */

.section {
  padding: 20px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 70px 0;
  }
}

/* =========================
   HERO FIX (ALL PAGES)
========================= */

.hero {
  text-align: center;
  padding: 10px 20px 50px;
}

.page-hero {
  text-align: center;
}

/*.hero p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}*/

/* =========================
   HOME PAGE (JOURNEY)
========================= */

.journey {
  padding: 80px 0;
}

.step-link {
  flex: 1 1 280px;
  max-width: 320px;
}

.step {
  height: 100%;
}

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

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

@media (max-width: 900px) {
  .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  }
}

/* =========================
   DIAGRAM FIX (CENTER + SIZE)
========================= */

.diagram-wrapper {
  text-align: center;
  margin-top: 40px;
}

.diagram-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* =========================
   CARDS FIX (CONSISTENCY)
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* =========================
   CONTACT PAGE FIX
========================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================
   TRUST STRIP ALIGNMENT
========================= */


.trust-item {
  max-width: 300px;
  text-align: center;
}

/* =========================
   MOBILE GLOBAL FIXES
========================= */

@media (max-width: 768px) {

  h1 {
    font-size: 28px;
  }

  .hero {
    padding: 10px 20px 50px;
  }

  .journey-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-link {
    max-width: 100%;
    width: 100%;
  }
}

/* =========================
   UI POLISH (PREMIUM LAYER)
========================= */

/* =========================
   1. SPACING SYSTEM (CONSISTENCY)
========================= */

.section {
  padding: 20px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

/* =========================
   2. TYPOGRAPHY POLISH
========================= */

h1 {
  font-size: 42px;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
  line-height: 1.3;
}

p {
  font-size: 15.5px;
  line-height: 1.7;
}

/* =========================
   3. BUTTON SYSTEM
========================= */

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* Primary */
.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: white;
  box-shadow: 0 6px 20px rgba(0,198,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,198,255,0.35);
}

/* Outline */
.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

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


/* =========================
   5. NAV POLISH
========================= */

.navbar {
  backdrop-filter: blur(14px);
}

/* smoother link feel */
.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

/* =========================
   6. HOVER MICRO-INTERACTIONS
========================= */

/* links */
a {
  transition: color 0.2s ease;
}

/* =========================
   7. TRUST STRIP ENHANCEMENT
========================= */

.trust-item {
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

/* =========================
   8. FORM POLISH
========================= */

input,
textarea {
  transition: all 0.2s ease;
}

input:focus,
textarea:focus {
  transform: scale(1.01);
}

/* =========================
   9. SECTION DIVIDERS (SUBTLE DEPTH)
========================= */

.section-divider {
  height: 1px;
  margin: 60px auto;
  width: 80%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,198,255,0.4),
    transparent
  );
}

/* =========================
   10. MOBILE POLISH
========================= */

@media (max-width: 768px) {

  .section {
    padding: 50px 0;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }
}

/* =========================
   INDEX PAGE FIX
========================= */

/* HERO FIX */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 20px 80px;
}

.hero .container {
  max-width: 800px;
  margin: 0 auto;
}

/* CTA spacing */
.hero .btn {
  margin-top: 25px;
}

/* =========================
   JOURNEY SECTION FIX
========================= */

.journey {
  padding: 80px 0;
}

.journey h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* force consistent card sizing */
.step-link {
  flex: 1 1 280px;
  max-width: 320px;
}

.step {
  height: 100%;
  padding: 40px 30px;
}

/* =========================
   TRUST STRIP FIX
========================= */

.trust-item {
  flex: 1 1 220px;
}

/* =========================
   SERVICES / CARDS FIX
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    border-left: 3px solid rgba(0,198,255,0.4);
  gap: 30px;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ensure consistent spacing inside cards */
.card p {
  margin-top: 10px;
}

/* =========================
   SECTION SPACING BALANCE
========================= */

.section {
  padding: 20px 0;
}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 768px) {

  .hero {
    padding: 80px 20px 60px;
    min-height: auto;
  }

  .journey-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-link {
    max-width: 100%;
    width: 100%;
  }

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

/* =========================
   CRITICAL LAYOUT FIX
========================= */

/* ===== NAVBAR FIX ===== */

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* force nav to edges */
.nav-links {
  margin-left: auto;
}

/* ===== HERO GAP FIX ===== */

.hero {
  padding: 50px 20px 50px; /* reduced top padding */
  min-height: auto;
}

/* removes excessive spacing caused by stacking */
.navbar + .hero,
.navbar + .page-hero {
  margin-top: 0;
}

/* ===== TYPOGRAPHY RESTORE ===== */

h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

/* ===== CARD STYLING RESTORE ===== */

.card,
.service-card {
  background: rgba(10, 15, 30, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}


/* restore padding lost */
.card {
  padding: 30px;
}

/* restore text hierarchy */
.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
}

.card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== BUTTON FIX ===== */

.btn-primary {
  background: #00c6ff;
  color: #fff;
}

/* ===== SECTION SPACING NORMALISE ===== */

.section {
  padding: 20px 0;
}


/* ===== NAV SPACING FIX ===== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===== MOBILE SAFETY ===== */

@media (max-width: 768px) {

  .hero {
    padding: 80px 20px 50px;
  }

  .nav-links {
    margin-left: 0;
  }
}

/* =========================
   TRUST STRIP TEXT FIX
========================= */

.trust-item h3 {
  color: var(--accent);
}

/* keep supporting text softer */
.trust-item p {
  color: rgba(255,255,255,0.7);
}

/* =========================
   JOURNEY ICON SIZE FIX
========================= */

.step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

/* SVG icons */
.step-icon svg {
  width: 46px;
  height: 46px;
}

/* Image icons (PNG/JPG) */
.step-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

/* =========================
   JOURNEY TEXT FIX
========================= */

/* Title */
.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}

/* Optional underline (clean + subtle) */
.step-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 8px auto 0;
  background: var(--accent);
  opacity: 0.6;
  border-radius: 2px;
}

/* Description */
.step p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
  max-width: 260px;
  margin: 0 auto;
}

/* spacing inside card */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ensure consistent spacing */
.step-icon {
  margin-bottom: 12px;
}

.step-title {
  margin-top: 5px;
}

/* =========================
   JOURNEY NUMBER FIX
========================= */

.step-number {
  font-size: 1.2rem;
  font-weight: 200;

  color: rgba(255,255,255,0.9);

  margin-bottom: 12px;
}

/* =========================
   CARD CTA FIX
========================= */

.card-cta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  transition: 0.2s ease;
}

/* hover effect */
.card-link:hover .card-cta {
  color: var(--accent);
}

/* =========================
   LINK RESET (REMOVE PURPLE UNDERLINE)
========================= */

a,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}

/* optional: keep hover clean */
a:hover {
  text-decoration: none;
}

/* =========================
   FOOTER ALIGN FIX
========================= */

.footer {
  text-align: center;
  padding: 40px 20px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ensure all text is centred */
.footer p,
.footer a {
  text-align: center;
}

/* if you have multiple items (links, etc.) */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   DROPDOWN (CLEAN SYSTEM)
========================= */

.nav-item {
  position: relative;
}

/* base */
.dropdown-menu {
  position: absolute;
  top: calc(100%);
  left: 0;

  background: rgba(11,15,26,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;

  min-width: 200px;
  padding: 8px 0;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 1000;
}

/* desktop hover */
@media (min-width: 769px) {
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* links */
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.03);
}

@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;

    max-height: 0;
    overflow: hidden;
    padding-left: 10px;

    transition: max-height 0.3s ease;
  }

  .dropdown-menu.active {
    max-height: 300px;
  }
}
.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.25s ease;
}

/* rotate on hover (desktop) */
@media (min-width: 769px) {
  .nav-item:hover .arrow {
    transform: rotate(180deg);
  }
}

/* rotate on click (mobile) */
.dropdown-toggle.active .arrow {
  transform: rotate(180deg);
}

@media (min-width: 769px) {

  .dropdown-menu {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.08s; /* 👈 subtle delay */
  }
}

.dropdown-menu {
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
}

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

.service-card {
  display: flex;
  flex-direction: column;
    border-left: 3px solid rgba(0,198,255,0.4);
  justify-content: space-between;
}

.card-content {
  flex-grow: 1;
}

.card-link {
  margin-top: 20px;
  color: #00c6ff;
  text-decoration: none;
  font-weight: 500;
}

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

/* CARD BASE */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
}

/* CONTENT AREA */
.card-content {
  flex-grow: 1;
}

/* TITLE */
.service-card h3 {
  margin-bottom: 10px;
}

/* PARAGRAPH */
.service-card p {
  margin-bottom: 15px;
}

/* LIST */
.benefits-list {
  padding-left: 18px;
  margin: 0;
}

.benefits-list li {
  margin-bottom: 8px;
}

/* CTA LINK (LOCKED TO BOTTOM) */
.card-link {
  margin-top: 20px;
  color: #00c6ff;
  text-decoration: none;
  font-weight: 500;
}

.card-link:hover {
  color: #ffffff;
}

.section:first-of-type {
  padding-top: 20px;
}

.page-hero {
  padding: 80px 20px 30px !important;
}

.benefits-list li::marker {
  color: var(--accent);
}

.service-card h3 {
  color: var(--accent);
 
}

/* =========================
   SOLUTIONS GRID FIX
========================= */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}



/* Card styling (match services feel) */
.solution-card {
  padding: 28px 24px;
  text-align: left;
  gap: 0;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: all 0.25s ease;
  height: 100%;
}

/* Subtle premium hover */
.solution-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 12px 30px rgba(0, 198, 255, 0.08),
    0 0 20px rgba(0, 198, 255, 0.05);
}

/* Number styling (clean + consistent) */
.solution-card .icon {
  height: 20px;                 /* FIXED height */
  display: flex;
  align-items: center;
  
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
}

.solution-card h3 {
  min-height: 56px;            /* Forces alignment across rows */
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.2rem;
}

.solution-card p {
  flex-grow: 1;                /* Pushes everything consistently */
  margin-bottom: 0;
  max-width: 95%;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

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

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

  .solutions-grid .solution-card:nth-child(4),
  .solutions-grid .solution-card:nth-child(5) {
    grid-column: auto;
  }
}

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

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================
   PERFECT 3 + 2 LAYOUT
========================= */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6-column system */
  gap: 30px;
}

/* Top 3 cards = 2 columns each (6 / 3 = 2) */
.solution-card:nth-child(1),
.solution-card:nth-child(2),
.solution-card:nth-child(3) {
  grid-column: span 2;
}

/* Bottom 2 cards = 3 columns each (6 / 2 = 3) */
.solution-card:nth-child(4),
.solution-card:nth-child(5) {
  grid-column: span 3;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-column: auto !important;
  }
}

/* =========================
   GLOBAL CARD SYSTEM
========================= */

.epm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(0,198,255,0.4);
  backdrop-filter: blur(8px);

  height: 100%;
  transition: all 0.25s ease;
  overflow: hidden;
}

.step.epm-card {
  border-left: 3px solid transparent;
  border-image: linear-gradient(to bottom, #00c6ff, #0072ff) 1;
}

/* Hover effect */
.epm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 198, 255, 0.35);

  box-shadow:
    0 12px 30px rgba(0, 198, 255, 0.08),
    0 0 25px rgba(0, 198, 255, 0.06);
}

/* Subtle glow sweep */
.epm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 198, 255, 0.12),
    transparent
  );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.epm-card:hover::before {
  opacity: 1;
}

/* Ensure consistent vertical alignment */
.step.epm-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}


/* Title alignment */
.step-title {
  min-height: 48px;
  margin-bottom: 10px;
}

/* Body text grows evenly */
.step.epm-card p {
  flex-grow: 1;
}

/* CTA aligned at bottom */
.card-cta {
  margin-top: 16px;
  display: inline-block;
}
/* =========================
   FORCE EPM CARD VISUAL STYLE
========================= */



.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 80px 0;
}

.cta {
  padding: 10px 20px;
  text-align: center;
  position: relative;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,198,255,0.25);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,198,255,0.15),
    transparent 70%
  );
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta {
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 45px;
  line-height: 1.7;
}

.cta-btn {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,198,255,0.3);
}

.solution-diagram {
  width: 100%;
}

.solution-diagram .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-diagram .diagram-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.solution-diagram .diagram-image {
  max-width: 850px;   /* or 700px / 900px depending on preference */
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CONTACT FORM RESET
========================= */

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(10, 20, 45, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00c6ff;
  box-shadow: 0 0 0 2px rgba(0,198,255,0.2);
}

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

.contact-form button {
  background: #00c6ff;
  color: #0b0f1a;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #00aee0;
}

/* =========================
   CONTACT FORM (RESTORED)
========================= */

.contact-page {
  padding: 20px 20px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT SIDE */
.contact-form h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-tagline {
  color: #00c6ff;
  margin-bottom: 10px;
}

.contact-intro {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FORM GROUP */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.25s ease;
}

/* FIX FOR GLOBAL OVERRIDES */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00c6ff;
  box-shadow: 0 0 0 2px rgba(0,198,255,0.2);
  background: rgba(255,255,255,0.06);
}

/* BUTTON */
.contact-btn {
  margin-top: 10px;
  width: 100%;
  background: #00c6ff;
  color: #0b0f1a;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #00aee0;
  transform: translateY(-1px);
}

/* NOTE TEXT */
.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* STATUS MESSAGE */
.form-status {
  display: none;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-status.success {
  background: rgba(0,200,150,0.15);
  color: #00d084;
}

.form-status.error {
  background: rgba(255,80,80,0.15);
  color: #ff6b6b;
}

/* RIGHT SIDE PANEL */
.contact-side {
 background: rgba(8, 18, 40, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   MAP SIZE CONTROL
========================= */

.map-section {
  width: 50%;
  margin: 60px auto; /* centers it + spacing */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

@media (max-width: 768px) {
  .map-section {
    width: 100%;
    margin: 40px auto;
  }
}
.map-section {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* =========================
   CONTACT PAGE LAYOUT
========================= */

.contact-page {
  padding: 20px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TOP ROW */
.contact-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-bottom: 60px;
}
/* MAP */
.map-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(10, 20, 45, 0.85);
  backdrop-filter: blur(10px);
}

.map-card iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* CONTACT DETAILS */
.contact-card {
background: rgba(8, 18, 40, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 25px;
  line-height: 1.6;
}

.contact-card a {
  color: #00c6ff;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-top,
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   FORCE 2-COLUMN TOP ROW
========================= */

.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: start;
}

/* Prevent overflow breaking layout */
.contact-form,
.contact-side {
  min-width: 0;
}

.contact-form,
.contact-side,
.contact-card,
.map-card{
background: rgba(8, 18, 40, 0.9);
  backdrop-filter: blur(10px);
}

/* space between top + bottom sections */
.contact-top {
  margin-bottom: 20px;
}

/* space between map + contact card */
.contact-bottom {
  gap: 80px;
}

/* space inside accordion */
.accordion-item {
  margin-bottom: 20px;
}

.trust-panel {
  border-left: 3px solid #00c6ff;
}

.trust-panel,
.details-panel {
  background: rgba(10, 20, 45, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.contact-card a,
.details-panel a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.contact-card a:hover,
.details-panel a:hover {
  color: #00c6ff; /* your brand blue */
}

.map-section {
  margin: 10px auto 60px;
}

.dropdown-toggle {
  width: 100%;
  text-align: left;
  padding: 12px 0;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .dropdown-menu {
    position: static; /* KEY FIX */
    display: none;
    padding-left: 10px;
  }

  .dropdown-menu.active {
    display: block;
  }

}

@media (max-width: 768px) {

  .dropdown-menu {
    background: #0e1422; /* solid for readability */
    backdrop-filter: none;

    border: none;
    box-shadow: none;

    padding: 8px 0 8px 10px;
    border-left: 2px solid rgba(0,198,255,0.3); /* brand accent */
  }

}

/* Base */
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 14px 0;

  font-size: 16px;
  font-weight: 600;
  color: white;

  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Content hidden by default (mobile) */
.accordion-content {
  display: block;
}

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

  .accordion-content {
    display: none;
    padding-top: 10px;
  }

  .accordion-item.active .accordion-content {
    display: block;
  }

}

.accordion-header .arrow {
  transition: transform 0.25s ease;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

.btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,198,255,0.3);
}



.reconciliations-page .diagram-image {
  max-width: 500px;   /* adjust until it fits your laptop nicely */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cfo-benefit {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);

  font-size: 13px;
  line-height: 1.5;
  color: #cbd5f5;
}

.cfo-benefit strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Base */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
}

.arrow {
  font-size: 20px;
  color: #00c6ff;
  transition: transform 0.3s ease;
}

/* DESKTOP — always open, no icon */
@media (min-width: 769px) {
  .arrow {
    display: none;
  }

  .accordion-content {
    max-height: none !important;
  }
}

/* MOBILE — collapsible */
@media (max-width: 768px) {

  .accordion-header {
    cursor: pointer;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .accordion-item.active .accordion-content {
    max-height: 400px; /* adjust if needed */
  }

  /* Rotate + into × */
  .accordion-item.active .arrow {
    transform: rotate(45deg);
  }
}

.accordion-header {
  pointer-events: auto;
}

/* =========================
   HEALTH CHECK TABLE
========================= */

.framework-table {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(10, 20, 45, 0.85);
  backdrop-filter: blur(10px);
}

.framework-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 2fr 2fr;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.framework-row:last-child {
  border-bottom: none;
}

/* header */
.framework-row.header {
  background: rgba(255,255,255,0.03);
  font-weight: 600;
  color: var(--text-primary);
}

/* body text */
.framework-row div {
  font-size: 14px;
  color: var(--text-secondary);
}

/* step column emphasis */
.framework-row div:first-child {
  color: var(--accent);
  font-weight: 500;
}

/* hover */
.framework-row:hover {
  background: rgba(255,255,255,0.02);
}

/* mobile */
@media (max-width: 768px) {
  .framework-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .framework-row.header {
    display: none;
  }

  .framework-row div {
    font-size: 13px;
  }
}

/* =========================
   HEALTH CHECK TABLE (PRO)
========================= */

.framework-table {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(10, 20, 45, 0.85);
  backdrop-filter: blur(10px);
}

/* ROW */
.framework-row {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 2fr 2fr;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.framework-row:last-child {
  border-bottom: none;
}

/* HEADER */
.framework-row.header {
  background: rgba(255,255,255,0.03);
  font-weight: 600;
}

/* CELLS */
.cell {
  font-size: 14px;
  color: var(--text-secondary);
  padding-right: 15px;
}

/* STEP EMPHASIS */
.cell.step {
  color: var(--accent);
  font-weight: 500;
}

/* LABELS (hidden on desktop) */
.label {
  display: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* HOVER */
.framework-row:hover {
  background: rgba(255,255,255,0.02);
}

/* =========================
   MOBILE (CARD MODE)
========================= */

@media (max-width: 768px) {

  .framework-row {
    display: block;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
  }

  .framework-row.header {
    display: none;
  }

  .cell {
    margin-bottom: 12px;
    padding-right: 0;
  }

  .cell.step {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .label {
    display: block;
  }

}

/* =========================
   TABLE COLUMN FIX
========================= */

/* Force proper alignment */
.framework-row .cell.step {
  text-align: left;
  justify-self: start;
  align-self: start;
}

/* Remove link-like feel */
.framework-row .cell.step {
  cursor: default;
  text-decoration: none;
}

/* Optional: soften colour slightly */
.framework-row .cell.step {
  color: var(--text-primary);
}

/* Keep subtle emphasis without looking interactive */
.framework-row .cell.step strong,
.framework-row .cell.step {
  font-weight: 600;
}

.step-number {
  color: var(--accent);
  margin-right: 6px;
  font-weight: 500;
}


.framework-row .cell.step {
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* =========================
   IMPACT STATEMENT
========================= */

.impact-statement {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;

  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* subtle emphasis on numbers */
.impact-statement strong {
  color: var(--accent);
}


/* =========================
   HERO TWO-COLUMN LAYOUT
========================= */

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text .supporting {
  margin-bottom: 18px;
  max-width: 600px;
}

/* RIGHT SIDE PANEL */
.hero-benefits {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;

  backdrop-filter: blur(10px);
}

/* TITLE */
.benefits-title {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* LIST */
.benefits-list {
  padding-left: 18px;
}

.benefits-list li {
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-benefits {
    margin-top: 10px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* SHARED PANEL STYLE */
.hero-panel {
    background: linear-gradient(135deg, var(--bg-0), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(10px);

  height: 100%;
}

/* LEFT PANEL (slightly softer) */
.hero-text-panel {
  background: rgba(255,255,255,0.02);
}

/* HEADINGS */
.hero-panel h3 {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* TEXT SPACING */
.hero-panel p {
  margin-bottom: 14px;
}

/* RIGHT PANEL ACCENT */
.hero-benefits {
  border-left: 3px solid var(--accent);
}

.hero-grid {
  position: relative;
}

.hero-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 1px;
  background: rgba(0,198,255,0.3);
  transform: translate(-50%, -50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  width: 100%;          /* 🔥 KEY FIX */
  max-width: 100%;      /* 🔥 ensures no shrinking */
}

.hero-panel {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
}

.hero-panel {
  width: 100%;
}

/* override global hero constraint */
.hero-grid p {
  max-width: none;
  margin: 0;
}

.insights-hero {
  padding-bottom: 30px; /* reduce from current value */
}

.page-hero.insights-hero {
  padding-bottom: 10px !important;
}

.trust-wide .container {
  max-width: 1400px;
}

.trust-wide {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* balanced layout */
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-wide .trust-item {
  max-width: none;
}

.trust-wide .trust-item p {
  max-width: 600px;
}


/* IMAGE CONTAINER */
.card-image {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.08);
}

/* IMAGE */
.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;

  transition: transform 0.3s ease;
}

/* subtle zoom on hover */
.service-card:hover .card-image img {
  transform: scale(1.03);
}

@media (max-width: 768px) {

  .trust-wide {
    grid-template-columns: 1fr;   /* 🔥 stack vertically */
    gap: 30px;
  }

}

/* Tablet */
@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

.trust-tile {
  padding: 28px;
}

.trust-tile h3,
.trust-tile p {
  word-break: break-word;
}

@media (max-width: 600px) {
  .trust-tile {
    padding: 20px;
  }
}

/* =========================
   CLIENTS PAGE
========================= */

.clients-page {
  padding: 80px 0;
}

/* HERO */
.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-secondary);
  font-size: 18px;
}

/* SECTION TITLE */
.section-title {
  font-size: 28px;
  margin-bottom: 30px;
}

/* INDUSTRIES */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.industry-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.industry-card:hover {
  border-color: #00c6ff;
  transform: translateY(-3px);
}

/* CASE STUDIES */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.case-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.case-card:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
}

.case-card h3 {
  margin-bottom: 15px;
}

.case-card .label {
  font-weight: 600;
  margin-top: 15px;
  color: #3b82f6;
}

.case-card ul {
  padding-left: 20px;
  margin-top: 10px;
}

.case-card li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

/* TRUST STRIP */
.trust-strip {
 /* display: flex;*/
  /*flex-wrap: wrap;*/
  /*justify-content: space-between; */
  /*gap: 15px;*/
  padding: 25px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 80px;
  /*text-align: center;*/
}

.trust-strip div {
  flex: 1;
  min-width: 200px;
}

/* CTA */
.cta-panel {
  text-align: center;
  padding: 50px;
  background: rgba(10, 20, 45, 0.85);
  border-radius: 16px;
}

.cta-panel h2 {
  margin-bottom: 15px;
}

.cta-panel p {
  margin-bottom: 25px;
  color: #e2e8f0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  background: white;
  color: #1e3a8a;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* STEP STYLE (MATCH TRANSFORM PAGE) */

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 80px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}


.step-number {
  font-size: 22px;
  font-weight: 700;
  color: #00c6ff;
  min-width: 50px;
}

.step-content h3 {
  margin-bottom: 10px;
}

.step-content .label {
  font-weight: 600;
  margin-top: 10px;
  color: #00c6ff;
}

.step-content ul {
  padding-left: 20px;
  margin-top: 8px;
}

.step-content li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

/* MOBILE */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 10px;
  }
}

/* =========================
   SCROLL STORY SECTION
========================= */

.scroll-story {
  padding: 100px 0;
}

.scroll-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

/* LEFT PANEL (STICKY) */
.scroll-intro {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.scroll-intro h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.scroll-intro p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* RIGHT CONTENT */
.scroll-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* EACH STEP */
.story-step {
  background: rgba(15, 23, 42, 0.75); /* deep blue glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;

  padding: 25px;
}

.story-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* NUMBER */
.step-number {
  font-size: 14px;
  color: #00c6ff;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* LABELS */
.label {
  margin-top: 12px;
  font-weight: 600;
  color: #00c6ff;
}

/* LIST */
.story-step ul {
  padding-left: 18px;
  margin-top: 8px;
}

.story-step li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

/* MOBILE */
@media (max-width: 900px) {
  .scroll-wrapper {
    grid-template-columns: 1fr;
  }

  .scroll-intro {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

/* HERO FIX */
.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 20px; /* ADD THIS */
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 40px; /* MORE SPACE TOP */
  }

  .hero h1 {
    font-size: 30px;   /* scale down */
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.step:first-child {
  border: 1px solid rgba(77,163,255,0.3);
}

/* =========================
JOURNEY FLOW LINE
========================= */

/* Base line */
.journey-steps::before {
  content: "";
  position: absolute;
  top: 60px; /* aligns with icons */
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}

/* Subtle gradient flow */
.journey-steps::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(77,163,255,0.6),
    transparent
  );
  animation: flow 6s linear infinite;
  z-index: 1;
}

@keyframes flow {
  0% {
    left: -200px;
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.step {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.02); /* slight lift */
}

.step:nth-child(1) { opacity: 0.85; }
.step:nth-child(2) { opacity: 0.9; }
.step:nth-child(3) { opacity: 0.95; }
.step-link:nth-child(4) { opacity: 1; }

.step:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;

  /* keep base border */
  border-color: rgba(77,163,255,0.4);

  /* reinforce left accent */
  border-left: 3px solid var(--accent);
}



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

  .step-link:nth-child(4) {
    grid-column: span 1;
  }
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-link {
  flex: 1 1 280px;
  max-width: 320px;
}

/* SCROLL SYSTEM */
.scroll-container {
  scroll-snap-type: y mandatory;
}

.panel {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  padding: 4rem 2rem;
}

/* CONTENT */
.content {
  max-width: 1100px;
  width: 100%;
}

.narrow {
  max-width: 700px;
}

.center {
  text-align: center;
}

/* PANELS */
.hero-panel {
  background: linear-gradient(135deg, var(--bg-0), var(--bg-1));
}

.highlight-panel {
  background: linear-gradient(135deg, #0e1422, #1a2336);
}

.cta-panel {
  background: linear-gradient(135deg, #1a2336, #2563eb);
}

/* TYPOGRAPHY */
.large-text {
  font-size: 2rem;
  font-weight: 500;
}

/* STACK */
.stack p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

/* CARDS */
.card-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* all added from 11th APril */


















/* SCROLL SYSTEM */
.scroll-container {
  scroll-snap-type: y mandatory;
}

.panel {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  padding: 4rem 2rem;
}

/* CONTENT */
.content {
  max-width: 1100px;
  width: 100%;
}

.narrow {
  max-width: 700px;
}

.center {
  text-align: center;
}

/* PANELS */
.hero-panel {
  background: linear-gradient(135deg, var(--bg-0), var(--bg-1));
}

.highlight-panel {
  background: linear-gradient(135deg, #0e1422, #1a2336);
}

.cta-panel {
  background: linear-gradient(135deg, #1a2336, #2563eb);
}

/* TYPOGRAPHY */
.large-text {
  font-size: 2rem;
  font-weight: 500;
}

/* STACK */
.stack p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

/* CARDS */
.card-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
}


/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.delay { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Baseline new homepage above */

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero-title.accent {
  color: #00c6ff;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.stack p {
  font-size: 1.3rem;
  margin: 1.4rem 0;
  opacity: 0.85;
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 1rem;
}

.card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(96,165,250,0.4);
}


.accent-text {
  background: linear-gradient(90deg, #00c6ff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.framework {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.framework div {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero-title.accent {
  color: #00c6ff;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.accent-text {
  background: linear-gradient(90deg, #00c6ff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel {
  position: relative;
  z-index: 1;
}

  background: linear-gradient(
    to bottom,
    rgba(26,35,54,0),
    rgba(14,20,34,1)
  );


.cta-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;

  background: linear-gradient(
    to bottom,
    rgba(14,20,34,1),
    rgba(37,99,235,1)
  );
}

.panel + .panel {
  box-shadow: inset 0 40px 60px -40px rgba(0,0,0,0.6);
}

.highlight-panel {
  background: linear-gradient(135deg, #0e1422, #162033);
}

.cta-panel {
  background: linear-gradient(135deg, #0e1422, #162033);
  position: relative;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(37,99,235,0.25),
    transparent 60%
  );
}

/* SERVICES GRID - CLEAN SYSTEM */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  }
}

.service-card {
  min-width: 0; /* 🔥 prevents overflow issues */
}

@media (max-width: 768px) {
  .panel {
    height: auto;
    min-height: 100vh;
  }
}

/* 🔥 FINAL OVERRIDE - MUST BE LAST */
@media (max-width: 768px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}

.service-card {
  min-width: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .panel {
    height: auto;
    min-height: 100vh;
  }
}

/* 🔥 FINAL FIX - JOURNEY CARDS MOBILE */
@media (max-width: 768px) {

  .journey-steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .step-link {
    width: 100%;
    max-width: 100%;
  }

}

.narrow {
  max-width: 700px;
  margin: 0 auto; /* 🔥 this is the key */
}

.highlight-panel .content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.highlight-panel .narrow {
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .highlight-panel .content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .highlight-panel .narrow {
    margin: 0 auto;
    text-align: center;
  }
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.section-intro {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-sub {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.insights-strip {
  padding: 80px 20px;
}

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

.insight-card {
  display: block;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.insight-card h3 {
  margin-bottom: 10px;
  color: var(--accent);
}

.insight-card p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.why-section {
  padding: 80px 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  margin: 10px 0 20px;
}

.why-text p {
  margin-bottom: 10px;
}

.why-text .strong {
  font-weight: 600;
  color: #ffffff;
}

/* Eyebrow */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Proof side */
.why-proof {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-item h3 {
  color: var(--accent);
  margin-bottom: 5px;
}

.proof-item p {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-proof {
    margin-top: 30px;
  }
}

.trust-intro {
  text-align: left;
}

.trust-intro h3 {
  font-size: 20px;
  margin: 8px 0 14px;
  color: #ffffff;
}

.trust-intro p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.trust-intro .strong {
  color: #ffffff;
  font-weight: 600;
  margin-top: 6px;
}



  .trust-intro {
    text-align: center;
  }



.trust-intro {
  padding: 28px 24px;

  background: rgba(255,255,255,0.02);
  border-radius: 16px;
/*  border-right: 1px solid rgba(255,255,255,0.08);*/
  border-left: 3px solid var(--accent); /* 🔥 anchor line */
}

.why-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.why-intro h2 {
  margin: 10px 0 16px;
}

.why-body p {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.why-body .strong {
  color: #ffffff;
  font-weight: 600;
}

.why-intro {
  position: relative;
}

.why-intro::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 20px auto 0;
  background: var(--accent);
  opacity: 0.6;
}

.why-intro {
  position: relative;
}

.why-intro::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 20px auto 0;
  background: var(--accent);
  opacity: 0.6;
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

  max-width: 900px;   /* 🔥 key */
  margin: 0 auto;     /* 🔥 centers the whole block */
}

/* =========================
   INSIGHTS - CLEAN VERSION
========================= */

.insights-band {
  padding: 100px 20px;
  position: relative;
}

.insights-container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

/* =========================
   INSIGHTS GRID (NO SCROLL)
========================= */

.insights-scroll {
  margin-top: 60px;
}

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

/* Cards */
.horizontal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.horizontal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.horizontal-card {
  width: 100%;
}

.horizontal-card:last-child {
  border-color: rgba(122,162,255,0.3);
}

/* =========================
   FEATURED INSIGHT LABEL
========================= */

.featured-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(122,162,255,0.8);
  margin-bottom: 10px;
}

.featured-insight:hover {
  border-color: var(--accent);
  background: rgba(0,198,255,0.06);
}

@media (max-width: 1024px) {
  .insights-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .insights-track {
    grid-template-columns: 1fr;
  }
}

.insights-band {
  padding: 120px 20px;
}

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

.insight-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-link {
  margin-top: auto;
  font-size: 0.9rem;
  /*color: #7aa2ff;*/
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 900px) {
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trust-container {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  width: 100%;
  max-width: none;
  text-align: center;
}

/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
  padding: 80px 20px;
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Card alignment */
.industry-card {
  text-align: left;
  padding: 24px;
}

/* Title */
.industry-card h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Text */
.industry-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  border-left: 3px solid rgba(0,198,255,0.4);
}

/* =========================
   CLIENT SITUATIONS
========================= */

.situations-section {
  padding: 100px 20px;
}

/* Grid */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Card */
.situation-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
}

/* Title */
.situation-card h3 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

/* Problem list */
.situation-card ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.situation-card li {
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Outcome block */
.situation-outcome {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.situation-outcome strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.situation-outcome p {
  font-size: 0.9rem;
  color: #cbd5f5;
}

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

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

@media (max-width: 640px) {
  .situations-grid {
    grid-template-columns: 1fr;
  }
}
.situation-card {
  border-left: 3px solid rgba(0,198,255,0.3);
}

/* =========================
   HERO TRUST STRIP (ALIGNED)
========================= */

.trust-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;

  max-width: 900px;   /* 🔥 keeps it tight + centred */
  margin-left: auto;
  margin-right: auto;
}

/* Each item */
.trust-point {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-primary);

  position: relative;
  padding-top: 14px;
}

/* subtle top accent line (instead of box) */
.trust-point::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 10px;
  opacity: 0.6;
}

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

@media (max-width: 900px) {
  .trust-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.hero-trust {
  padding: 40px 20px 20px; /* 🔥 tighter bottom */
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-width: 0;
  max-width: 820px;   /* 🔥 tighter = more premium */
  margin: 25px auto 0;
}

/* Tablet */
@media (max-width: 900px) {
  .trust-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trust-points {
    grid-template-columns: 1fr;
    gap: 12px;

    max-width: 320px;   /* 🔥 keeps it tight + centred */
  }
}

@media (max-width: 600px) {
  .trust-point {
    font-size: 0.9rem;
  }
}

.trust-point {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
   text-align: center;
  padding-top: 10px;
}

.hero-trust {
  margin-bottom: 40px;
}

/* =========================
   INSIGHTS TRUST STRIP (FIX)
========================= */

.insights-trust {
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.insights-trust .trust-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;

  max-width: 900px;   /* 🔥 tighter = visually centred */
  margin: 0 auto;
  justify-content: center; /* 🔥 key fix */
}

.insights-trust .trust-item {
  text-align: center;
  max-width: 480px;   /* 🔥 stops stretching */
  margin: 0 auto;     /* 🔥 centres each tile */
}

.insight-block {
  max-width: 480px;   /* 🔥 keeps both blocks aligned */
  width: 100%;
  text-align: left;
}

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

@media (max-width: 900px) {
  .insights-trust .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.step:nth-child(1) {
  border-color: rgba(0,198,255,0.4);
}

.insights-container {
  max-width: 1000px;
}

.step-number {
  opacity: 0.5;
  letter-spacing: 1px;
}

.step-title {
  font-weight: 600;
}


.case-card {
  background: rgba(8, 18, 40, 0.9);
  border: 1px solid;
  border-radius: 16px;
    border-color: rgba(255,255,255,0.2);
  padding: 28px;
  margin-bottom: 40px;
  max-width: 800px;
}

.case-number {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 10px;
}

.case-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.case-headline {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.case-section {
  margin-bottom: 16px;
}

.label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.case-section ul {
  padding-left: 18px;
}

.case-insight {
  margin-top: 20px;
  padding-left: 14px;
  border-left: 2px solid var(--text-primary);
  font-style: italic;
  color: var(--text-secondary);
}

.case-card:hover {
  border-color: rgba(255,255,255,0.2);
}

.case-card .label {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #00c6ff !important;
}

@media (max-width: 768px) {
  .hero-trust {
    gap: 12px;
  }

  .trust-point {
    font-size: 13px;
    white-space: normal; /* 🔑 allows wrapping */
  }
}