.elementor-23202 .elementor-element.elementor-element-7652a4f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-23202 .elementor-element.elementor-element-7652a4f:not(.elementor-motion-effects-element-type-background), .elementor-23202 .elementor-element.elementor-element-7652a4f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FAFAFAF2;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-8896378 */:root {
  --primary: #0b2e6f;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f5f6f7;
  --border: #e5e7eb;
  --primary-blue: #0b63ce;
  --primary-blue-dark: #053568;
  --accent-green: #86bc25;
  --text-main: #111827;
  --text-muted: #1e1e1f;
  --border-soft: #e5e7eb;
  --transition-fast: 0.2s ease-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.container {
  margin: auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 75%;
}
.logo {
    padding:1%;
    flex: 5;
}
.logo img {
    
  width: 500px;
}

/* Header actions */

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex:1;
}

/* Search */

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search img {
    width: 16px;
    height: 16px;
    display: block;
}

.search-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.search-toggle .fa {
    color: #0b2e6f;
}
.search-toggle:hover {
  background: #f3f4f6;
}


.search-input {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 0.85rem;
  background: #ffffff;
  transition: width 0.25s ease, opacity 0.15s ease;
  pointer-events: none;
}

.header-search.active .search-input {
  width: 270px;
  opacity: 1;
  pointer-events: auto;
  right: 42px;
}
.space {
  flex:1;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

/* Social */

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

.header-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.header-social svg {
  width: 16px;
  height: 16px;
  fill: #374151;
}

.header-social a:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

/* Nav links */

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  flex:3;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  padding-bottom: 2px;
  font-weight: 500;
  transition: color var(--transition-fast);
  text-decoration: none;
  width: max-content;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

/* underline */
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transition: width var(--transition-fast);
}

.nav-trigger:hover {
  color: var(--text-main);
}

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

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 10px 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 100;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #111827;
  text-decoration: none;
  width:100%;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover > .nav-trigger::after {
  width: 100%;
}

.nav-dropdown:hover > .nav-trigger {
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

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

.nav-links a.active {
  color: var(--primary-blue-dark);
}

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

.btn-outline {
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  background: none;
  cursor: pointer;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #333;
}


/* ================= HERO-home (Premium style) ================= */

.hero-home   {
  position: sticky;
  top:0;
  display: flex;
  align-items: center;
  padding: 20px 20px 80px;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}
.hero-spacer {
    height: 100vh;
}
/* Background image */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://engaggio.com/wp-content/uploads/2026/01/homepage-scaled.png"); /* ← your 4K image */
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Soft dark overlay (Deloitte-like) */
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 10%,
    rgba(0, 0, 0, 0.50) 30%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

/* Content block */
.hero-home-content {
  max-width: 1200px;
  padding:10%;
  margin-top: 5%;
  margin-bottom:5%;
}

/* Heading */
.hero-home-content h1 {
  font-size: clamp(2.6rem, 3.2vw + 1rem, 3.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  line-height: 1.15;
}

/* Subtext */
.hero-home-content p {
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.92);
  max-width: 520px;
  margin-bottom: 28px;
}

/* CTA buttons */
.hero-home-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary button */
.btn-primary {
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #0b63ce, #22c55e);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.7);
}

/* Secondary button (ghost look) */
.hero-home-actions button:last-child {
  background: transparent;
  border: 1px solid rgba(241, 245, 249, 0.6);
  box-shadow: none;
}

.hero-home-actions button:last-child:hover {
  background: rgba(15, 23, 42, 0.55);
}

/* ================= PLATFORMS ================= */

.platforms-section {
  position: relative;          /* REQUIRED */
  z-index: 2;                  /* Above hero */
  background: #ffffff;
  padding: 150px 0;
}

.container-section {
  margin: auto;
  padding: 0 20px;
  max-width: 75%;
}

.platforms-section .section-title {
  text-align: center;
  margin: 0 auto 48px;
}

.platforms-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.platforms-section p {
  color: var(--text-muted);
  font-size: 1rem;
}

.platforms-grid {
  display: flex;
  padding: 50px 0;
  gap: 28px;
}

/* Platform Card */

.platform-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 40px 40px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 50%;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.4);
}

.platform-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.platform-card h3 img {
  max-width:50%;
}

.platform-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Links */

.platform-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
}

.platform-link:hover {
  text-decoration: underline;
}
 /* ================= SLIDER SECTION ================= */

.slider-section {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(108, 122, 255, 1) 0%, rgba(108, 122, 255, 1) 100%);
}

/* Main white card */
.slider {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 40px 42px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

/* Header */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

/* Text block */
.slider-header .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.slider-header .section-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.slider-header .section-sub {
  max-width: 520px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease,
              transform 0.2s ease,
              box-shadow 0.2s ease;
}

.slider-btn:hover {
  background: #eff6ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

/* Dots */
.dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d1d5db;
  transition: all 0.2s ease;
}

.dot.active {
  width: 16px;
  background: var(--primary-blue);
}

/* Cards */
.slider-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.slider-card {
  background: #f9fafb;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 20px 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.2s ease,
              box-shadow 0.2s ease,
              border-color 0.2s ease,
              background 0.2s ease;
}

.slider-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.slider-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.8);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

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

@media (max-width: 900px) {
  .slider-header {
    flex-direction: column;
    gap: 14px;
  }

  .slider-controls {
    align-self: flex-start;
  }

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

@media (max-width: 640px) {
  .slider {
    padding: 28px 22px 30px;
  }

  .slider-items {
    grid-template-columns: minmax(0, 1fr);
  }

  .slider-header .section-title {
    font-size: 1.6rem;
  }
}

/* =====================================================
   CAREERS PAGE — HUMAN, PURPOSE-DRIVEN
   ===================================================== */

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

.careers-hero {
  padding: 140px 20px 110px;
  background: linear-gradient(
    135deg,
    #111827 0%,
    #0b63ce 70%
  );
  color: #ffffff;
}

.careers-hero .container {
  max-width: 1200px;
  margin: auto;
}

.careers-hero .breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 14px;
}

.careers-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 3.4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.careers-hero p {
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.92);
}


/* ================= CAREERS INTRO ================= */

.careers-section {
  padding: 110px 20px;
  background: #ffffff;
}

.careers-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: flex-start;
}

/* Content */

.careers-content h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  color: var(--text-main);
}

.careers-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}


/* ================= PERKS ================= */

.careers-perks {
  display: grid;
  gap: 16px;
}

.perk {
  background: #f9fafb;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px 18px;

  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);

  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.perk:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}


/* ================= OPEN ROLES ================= */

.open-roles {
  padding: 100px 20px;
  background: #f9fafb;
  text-align: center;
}

.open-roles .container {
  max-width: 720px;
  margin: auto;
}

.open-roles h2 {
  font-size: 2.1rem;
  margin-bottom: 34px;
  color: var(--text-main);
}


/* Role cards */

.role {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 18px 22px;

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

  font-size: 0.95rem;
  margin-bottom: 16px;

  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.role strong {
  color: var(--text-main);
  font-weight: 600;
}

.role span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.role:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}


/* ================= NOTE + CTA ================= */

.careers-note {
  margin: 34px auto;
  max-width: 460px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.open-roles .btn-primary {
  margin-top: 18px;
}


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

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

  .careers-hero {
    padding: 120px 20px 90px;
  }
}

@media (max-width: 640px) {
  .careers-hero h1 {
    font-size: 2.2rem;
  }

  .careers-section,
  .open-roles {
    padding: 80px 16px;
  }

  .role {
    flex-direction: column;
    gap: 6px;
    text-align: left;
    align-items: flex-start;
  }
}
/* ================= SECTIONS ================= */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

/* ================= TRUST ================= */

.trust {
  background: var(--bg-light);
  text-align: center;
  position: relative;          /* REQUIRED */
  z-index: 2;   
  padding:7%;
}

/* Secondary button (ghost look) */
.trust button:last-child {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: none;
  color: black;
}

.trust button:last-child:hover {
  background: rgba(15, 23, 42, 0.55);
}

/* ================= CLIENT LOGO SLIDER ================= */
.clients-slider-section {
  background: rgba(255, 255, 255, 1);
  padding: 90px 0;
  border-top: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
}

.clients-header {
  text-align: center;
  margin-bottom: 36px;
}

.clients-header h3 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
}

/* Slider shell */
.clients-slider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 75%;
  margin: 0 auto; /* centers */
}

/* Viewport */
.clients-viewport {
  overflow: hidden;
  flex:1;
}

/* Track */
.clients-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

/* Logo card */
.client-card {
  min-width: calc(30%); /* 4 cards */
  height: 250px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.client-card:hover img {
  opacity: 1;
}

/* Nav buttons */
.clients-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-nav:hover {
  background: #eff6ff;
}

@media (max-width: 900px) {
  .clients-slider {
    max-width: 90%;
  }

  .client-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 520px) {
  .clients-slider {
    max-width: 100%;
  }

  .client-card {
    min-width: 100%;
  }
}

/* ================= PRODUCT PAGES ================= */

.product-hero-cadmus {
  padding: 120px 0;
  position: relative;
  background-image:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0.3) 65%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("https://engaggio.com/wp-content/uploads/2026/01/Adiora.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

  .container-aidora {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    rgba(108, 122, 255, 0.8) 0%,
    rgba(108, 122, 255, 0.2) 100%
  );
}

/* ================= HOW AIDORA WORKS ================= */

.process-list {
  margin-top: 50px;
  padding: 0;
  list-style: none;

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

/* Individual step */
.process-list li {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px 24px 22px 52px;

  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;

  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Numbered indicator */
.process-list li::before {
  content: counter(step);
  counter-increment: step;

  position: absolute;
  left: 20px;
  top: 22px;

  width: 24px;
  height: 24px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;

  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-green)
  );
}

/* Reset counter */
.process-list {
  counter-reset: step;
}

/* Step emphasis */
.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Hover (subtle, premium) */
.process-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

/* Disclaimer note */
.muted-note {
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

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

@media (max-width: 768px) {
  .process-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-list li {
    padding-left: 50px;
  }
}

.product-hero-grid-cadmus {
    gap: 60px;
    align-items: center;
    display:flex;
    flex-direction: row-reverse;
    margin: 5%;
    max-width:none;
    color: #ffffff;
}

.product-hero-decode {
  padding: 120px 0;
  position: relative;
  background-image:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0.3) 65%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("https://engaggio.com/wp-content/uploads/2026/01/decodehome.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.product-hero-grid-decode {
    gap: 60px;
    align-items: center;
    display:flex;
    flex-direction: row;
    margin: 5%;
    max-width:700px;
    color: rgba(255,255,255,1);
}

.product-hero-content .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.product-hero-content h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.product-sub {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 28px;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.product-section {
  padding: 100px 20px;
}

.bg-soft {
  background: #f5f6f7;
}

.narrow {
  max-width: 800px;
  margin: auto;
}

.section-lead {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

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

.feature-card {
  background: rgb(255, 255, 255);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px;
}

.process-list,
.audience-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.process-list li,
.audience-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

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

.product-cta {
  background: linear-gradient(135deg, #0b63ce, #22c55e);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.product-cta p {
  margin: 16px 0 26px;
}

.btn-outline-cadmus {
  color: rgb(255, 255, 255);
  background: transparent;
  border: 1px solid rgb(255, 255, 255);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

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

.product-hero {
  padding: 120px 20px 100px;
  background: linear-gradient(90deg, #0b2e6f 0%, #0b63ce 55%, #22c55e 100%);
  color: #ffffff;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.product-hero-content .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 12px;
}

.product-hero-content h1 {
  font-size: clamp(2.6rem, 3vw + 1rem, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.product-hero-content .intro {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================= PRODUCT SECTIONS ================= */

.product-section {
  padding: 100px 20px;
  background: #ffffff;
}

.product-section.light {
  background: #f9fafb;
}

.product-section.soft {
  background: linear-gradient(180deg, #ffffff, #eff6ff);
}

.product-section .container.narrow {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.product-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.product-section p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ================= FEATURE GRID ================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.grid-3 .card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-3 .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.grid-3 h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.grid-3 p {
  font-size: 0.95rem;
  color: var(--text-muted);
}


/* ================= HOW IT WORKS (SIMPLE) ================= */

.how-it-works-simple {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.step span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.14em;
}

.step h4 {
  margin: 10px 0;
  font-size: 1rem;
  color: var(--text-main);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ================= TRUST + AUDIENCE ================= */

.trust-list,
.audience-list {
  list-style: none;
  margin-top: 30px;
  padding: 0;
}

.trust-list li,
.audience-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}


/* ================= FINAL CTA ================= */

.product-cta {
  background: linear-gradient(135deg, #0b63ce, #22c55e);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.product-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.product-cta p {
  font-size: 1rem;
  margin-bottom: 26px;
  color: rgba(241, 245, 249, 0.9);
}

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

.contact-info-wrap {
  padding: 90px 20px;
  background: #ffffff;
}

/* Header row */
.contact-info-header {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.contact-info-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}

/* Location block */
.contact-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #6b7280;
}

.location-icon {
  font-size: 1.1rem;
  line-height: 1.2;
}

.contact-location strong {
  color: #111827;
  font-weight: 600;
}

.availability {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 2px;
}

/* Cards row */
.contact-info-cards {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 26px;
}

/* Base card */
.contact-card {
  border-radius: 20px;
  padding: 36px 34px;
  flex: 1;
}

/* Primary card */
/* ================= CONTACT CTA TYPOGRAPHY ================= */

.contact-cta {
  text-align: center;
  padding: 60px 50px;
}

/* Normal lines */
.contact-cta .cta-line {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.35;
  color: #0b2e4f;
  margin: 0;
}

/* Extra spacing before "Reach us at" */
.contact-cta .cta-spacing {
  margin-top: 28px;
}

/* Highlight word */
.contact-cta .cta-highlight {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 14px 0;
  color: #f28c00; /* orange highlight */
}

/* Email */
.contact-cta .cta-email {
  margin-top: 18px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 32px;
}

.contact-cta .cta-email a {
  color: #0b2e4f;
  text-decoration: none;
}

.contact-cta .cta-email a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .contact-cta {
    padding: 50px 24px;
  }

  .contact-cta .cta-line,
  .contact-cta .cta-email {
    font-size: 24px;
  }

  .contact-cta .cta-highlight {
    font-size: 46px;
  }
}


/* Secondary card */
.contact-card-light {
  background: #f6f6fb;
  color: #111827;
  max-width: 280px;
}

.contact-card-light h4 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-card-light p {
  font-size: 0.95rem;
  color: #374151;
}

.contact-card-light a {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-header {
    flex-direction: column;
    gap: 18px;
  }

  .contact-info-cards {
    flex-direction: column;
  }

  .contact-card-light {
    max-width: 100%;
  }
}

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

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

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

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

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

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

  .product-hero {
    padding: 100px 20px 80px;
  }
}

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

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 100px;
  background: linear-gradient(
    90deg,
    #0b2e6f 0%,
    #0b63ce 50%,
    #22c55e 100%
  );
  color: #ffffff;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
}

.hero .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  max-width: 540px;
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: 30px;
}

/* ================= EDUCATION FEATURE CARDS ================= */

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

.grid-3 .card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-3 .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.grid-3 .card i {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 14px;
}

.grid-3 .card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.grid-3 .card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ================= TESTIMONIAL ================= */

.testimonial {
  max-width: 820px;
  margin: auto;
  text-align: center;
  background: linear-gradient(180deg, #eff6ff, #ffffff);
  padding: 60px 40px;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 18px;
  line-height: 1.6;
}

.testimonial span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}


/* ================= EDUCATION CTA ================= */

.cta {
  background: linear-gradient(135deg, #0b63ce, #22c55e);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 28px;
  color: rgba(241, 245, 249, 0.92);
}


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

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero h1 {
    font-size: 2.1rem;
  }

  .testimonial {
    padding: 50px 24px;
  }
}
/* ================= EDUCATION HERO ================= */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 100px;
  background: linear-gradient(
    90deg,
    #0b2e6f 0%,
    #0b63ce 50%,
    #22c55e 100%
  );
  color: #ffffff;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
}

.hero .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  max-width: 540px;
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: 30px;
}

/* ================= EDUCATION FEATURE CARDS ================= */

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

.grid-3 .card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-3 .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.grid-3 .card i {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 14px;
}

.grid-3 .card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.grid-3 .card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ================= TESTIMONIAL ================= */

.testimonial {
  max-width: 820px;
  margin: auto;
  text-align: center;
  background: linear-gradient(180deg, #eff6ff, #ffffff);
  padding: 60px 40px;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 18px;
  line-height: 1.6;
}

.testimonial span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}


/* ================= EDUCATION CTA ================= */

.cta {
  background: linear-gradient(135deg, #0b63ce, #22c55e);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 28px;
  color: rgba(241, 245, 249, 0.92);
}


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

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero h1 {
    font-size: 2.1rem;
  }

  .testimonial {
    padding: 50px 24px;
  }
}

/* ================= PAGE HERO (GENERIC) ================= */

.page-hero {
  padding: 120px 20px 90px;
  color: #ffffff;
}

.page-hero .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  max-width: 820px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 540px;
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 28px;
}

/* Hero color variants */

.enterprise-hero {
  background: linear-gradient(135deg, #0b2e6f, #0b63ce);
}

.leadership-hero {
  background: linear-gradient(135deg, #053568, #0b63ce);
}

.insights-hero {
  background: linear-gradient(135deg, #0b63ce, #22c55e);
}

.contact-hero {
  background: linear-gradient(135deg, #0b2e6f, #22c55e);
}

/* ================= FEATURE SECTIONS ================= */

.page-features {
  padding: 100px 20px;
  background: #ffffff;
}

/* Uses your existing .grid-3 and .card styles */

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

.contact-section {
  padding: 110px 20px;
  background: #f9fafb;
}

/* Illustration wrapper */
.contact-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.contact-illustration img {
  max-width: 300px;
  width: 100%;
}

/* Form */
.contact-form {
  max-width: 520px;
  margin: auto;
  background: #ffffff;
  padding: 42px;
  border-radius: 20px;

  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

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

@media (max-width: 900px) {
  .contact-section {
    padding: 90px 20px;
  }
}

@media (max-width: 640px) {
  .contact-illustration img {
    max-width: 220px;
  }

  .contact-form {
    padding: 30px 24px;
  }
}

/* ======================================================
   ENGAGGIO — OVERVIEW PAGE (FINAL CLEAN VERSION)
   Depends on global styles + variables only
   ====================================================== */

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

.overview-hero {
  position: sticky;
  top: 0;
  min-height: 67vh;
  display: flex;
  align-items: center;
  padding: 60px 20px 80px;
  overflow: hidden;
  color: #ffffff;
  z-index: -1;
}

/* Background image */
.overview-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://engaggio.com/wp-content/uploads/2026/01/overview-hero.png"); /* swap image */
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Cinematic overlay (matches Home) */
.overview-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 10%,
    rgba(0,0,0,0.50) 30%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0) 100%
  );
  z-index: -1;
}

/* Hero content */
.overview-hero .container {
  max-width: 1200px;
  padding: 10%;
  margin: 0;
}

.overview-hero h1 {
  font-size: clamp(2.6rem, 3.2vw + 1rem, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.overview-hero p {
  font-size: 1.05rem;
  color: rgba(241,245,249,0.92);
  max-width: 560px;
  margin-bottom: 18px;
}

.overview-hero .btn-primary {
  margin-top: 26px;
}

/* ================= CORE OVERVIEW ================= */

.overview-section {
  padding: 120px 20px;
  background: #ffffff;
}

.overview-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: flex-start;
}

/* Text */
.overview-content h2 {
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text-main);
}

.overview-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 520px;
}

/* Stats */
.overview-stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stat {
  position: relative;
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,99,206,0.25),
    rgba(34,197,94,0.25)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.stat:hover::before {
  opacity: 1;
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

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

/* ================= PILLARS ================= */

.overview-pillars {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.overview-pillars .container {
  max-width: 1100px;
}

.overview-pillars .grid-3 {
  gap: 36px;
}

.overview-pillars .card {
  text-align: left;
  padding: 42px 36px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 45px rgba(15,23,42,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overview-pillars .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(15,23,42,0.12);
}

.overview-pillars h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--text-main);
}

.overview-pillars p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ================= CTA ================= */

.overview-cta {
  padding: 120px 20px;
  text-align: center;
  background:
    radial-gradient(
      800px 400px at 50% -10%,
      rgba(255,255,255,0.18),
      transparent 60%
    ),
    linear-gradient(135deg, #0b63ce, #22c55e);
  color: #ffffff;
}

.overview-cta .container {
  max-width: 760px;
}

.overview-cta h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.3rem);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.overview-cta p {
  font-size: 1.02rem;
  margin-bottom: 34px;
  color: rgba(241,245,249,0.95);
}

.overview-cta .btn-primary {
  background: #ffffff;
  color: var(--primary-blue);
}

.overview-cta .btn-primary:hover {
  background: #f8fafc;
}

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

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

  .overview-hero {
    padding: 100px 20px 70px;
  }

  .overview-hero .container {
    padding: 6%;
  }
}

@media (max-width: 640px) {
  .overview-hero h1 {
    font-size: 2.1rem;
  }

  .overview-section,
  .overview-pillars,
  .overview-cta {
    padding: 90px 16px;
  }

  .overview-hero .btn-primary {
    width: 100%;
  }
}

/* ================= INSIGHTS PAGE ================= */
/* ================= HERO ================= */

.insights-hero {
  padding: 140px 20px 110px;
  background: linear-gradient(
    135deg,
    #0b2e6f 0%,
    #0b63ce 65%
  );
  color: #ffffff;
}

.insights-hero .container {
  max-width: 1200px;
  margin: auto;
}

.insights-hero .breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 14px;
}

.insights-hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 3.2vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.insights-hero p {
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.92);
}


/* ================= FEATURE STRIP ================= */

.page-features {
  padding: 90px 20px;
  background: #f9fafb;
}

.page-features .container {
  max-width: 1100px;
  margin: auto;
}

.page-features .grid-3 {
  gap: 36px;
}

.page-features .card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px 30px;
  text-align: center;

  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.page-features h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-features p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ================= INSIGHTS SECTIONS ================= */

.insights-section {
  padding: 110px 20px;
  background: #ffffff;
}

.insights-section.alt {
  background: #f9fafb;
}

.insights-section .container {
  max-width: 1100px;
  margin: auto;
}

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

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.section-title p {
  font-size: 0.95rem;
  color: var(--text-muted);
}


/* ================= GRID ================= */

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


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

.insight-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 34px 32px;

  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease,
              box-shadow 0.25s ease;
}

.insight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.insight-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}


/* ================= LINKS ================= */

.text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}


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

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-hero {
    padding: 120px 20px 90px;
  }
}

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

  .insights-hero h1 {
    font-size: 2.1rem;
  }

  .insights-section,
  .page-features {
    padding: 80px 16px;
  }
}
/* ================= FOOTER ================= */

.site-footer {
  background: #0b2e6f; /* Deep brand blue */
  color: rgba(241, 245, 249, 0.9);
  padding: 80px 20px 30px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* Grid */

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  text-align: center;
}

/* Columns */

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 12px;
}

/* Links */

.footer-column a {
  color: rgba(226, 232, 240, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Bottom bar */

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.15);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.75);
}

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

@media (max-width: 900px) {
    .logo {
        width: 400px;
    }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 60px 72px 26px;
  }

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

  .footer-bottom {
    text-align: left;
  }
}

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

/* ================= MOBILE + TABLET NAV ================= */

@media (max-width: 900px) {

  /* Header layout */
  header {
    background: #ffffff;
  }

  .nav {
    max-width: 100%;
    padding: 0 16px;
  }

  .logo img {
    width: 100%;
  }

  /* Hide desktop actions */
  .header-actions {
    display: none;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    margin-left: auto;
    cursor: pointer;
  }

  /* NAV MENU */
  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 18px;
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 40px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  /* Top-level links */
  .nav-links > a,
  .nav-trigger {
    padding: 14px 0;
    font-size: 1rem;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a::after,
  .nav-trigger::after {
    display: none;
  }

  /* Dropdown container */
  .nav-dropdown {
    width: 100%;
  }

  /* Submenu */
  .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 14px;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  /* Submenu links */
  .dropdown-menu a {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  /* Arrow rotation */
  .nav-trigger .arrow {
    transition: transform 0.2s ease;
  }

  .nav-dropdown.open .arrow {
    transform: rotate(180deg);
  }

  /* CTA button */
  .nav-links .btn-outline {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .header-actions {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    background: #fff;
    width: 220px;
    padding: 20px;
    border-left: 1px solid var(--border);
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 980px) {
  .platforms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .platforms-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===================== TABLET (≤1024px) ===================== */

@media (max-width: 1024px) {

  /* Layout scaling */
  .container {
    padding: 0 18px;
  }

  .hero-home-content {
    padding: 6%;
  }

  .platforms-grid,
  .slider-items,
  .grid-3,
  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-it-works-grid,
  .product-hero-grid,
  .overview-grid,
  .mission-grid,
  .careers-grid {
    grid-template-columns: 1fr;
  }

  .slider-header {
    flex-direction: column;
    gap: 14px;
  }

  .slider-controls {
    align-self: flex-start;
  }
}


/* ===================== MOBILE + TABLET HEADER (≤900px) ===================== */

@media (max-width: 900px) {

  /* Header layout */
  .nav {
    align-items: center;
    gap: 10px;
  }

  /* Logo */
  .logo {
    grid-column: 1;
    width:300px;
  }

  /* Search + social must stay LEFT of hamburger */
  .header-actions {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
    justify-content: flex-end;
  }

  /* Hamburger */
  .hamburger {
    grid-column: 3;
    display: flex;
  }

  /* Hide desktop nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 22px 20px;
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 32px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 10px 0;
  }

  /* Dropdown behavior */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 12px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  /* Search input size */
  .header-search.active .search-input {
    width: 200px;
    right: 38px;
  }

  /* Pinned sections disable */
  .how-it-works.pinned {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .how-it-works-spacer {
    display: none;
  }
}


/* ===================== MOBILE (≤750px) ===================== */

@media (max-width: 750px) {
  .logo {
      flex: auto;
  }
  /* Typography */
  h1 {
    font-size: 2rem;
  }

  .hero-home-content h1 {
    font-size: 2.1rem;
  }

  .hero-home-content p {
    font-size: 0.95rem;
  }

  /* Buttons */
  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero-home-actions {
    flex-direction: column;
  }

  .platforms-section .section-title {
    text-align: justify;
    margin:2%;
  }

  /* Grids */
  .platforms-grid,
  .slider-items,
  .grid-3,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    display:grid ;
  }

  .platform-card {
    border-radius: 5%;
    padding: 5%;
    max-width: 100%;
  }

  .platform-card h3 img {
    max-width:70%;
    padding-top: 10%;
  }
  /* Slider padding */
  .slider {
    padding: 26px 22px;
  }

  /* Testimonials */
  .testimonial {
    padding: 48px 22px;
  }

  /* Footer */
  .footer-grid {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    text-align: left;
  }

  /* Search input smaller */
  .header-search.active .search-input {
    width: 160px;
  }
}/* End custom CSS */