/* =====================================================
   SAS Warehouse Technology — Homepage Styles
   ===================================================== */

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

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2f47;
  --navy-light: #1e3a5f;
  --blue:       #1a6fa4;
  --blue-light: #2185c5;
  --orange:     #e8581a;
  --orange-h:   #d04a10;
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --gray-100:   #f1f3f6;
  --gray-200:   #e2e6eb;
  --gray-400:   #9ba8b5;
  --gray-600:   #5a6a7a;
  --gray-800:   #1f2d3d;
  --text:       #1f2d3d;
  --text-light: #4a5f73;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.18);

  --section-py: 96px;
  /* --container:  1240px; */
  --container:  1400px;

  --font: 'Archivo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-h);
  border-color: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,88,26,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm { padding: 9px 20px; font-size: 13px; }

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

/* ===================== TYPOGRAPHY UTILITIES ===================== */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-body {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 520px;
}

.section-center {
  text-align: center;
  margin-bottom: 60px;
}
.section-center .section-body {
  margin: 0 auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 10px; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header-row .section-title { margin-bottom: 0; }

/* ===================== CONTAINER / SECTION ===================== */
.section { padding: var(--section-py) 0; }

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

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal-up,
.reveal-left {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up  { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }

.reveal-up.visible,
.reveal-left.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #080f2a 0%, #0b1535 60%, rgba(8,15,42,0.92) 100%);
  backdrop-filter: blur(2px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: #080f2a;
  box-shadow: 0 2px 32px rgba(0,0,0,0.45);
}

/* Pages with a full-bleed hero banner (.about-hero) get a fully
   transparent navbar until scrolled, so the banner image reads
   edge-to-edge behind the nav, matching the Figma hero design. */
body:has(.about-hero) .navbar:not(.scrolled),
body:has(.hero) .navbar:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
}

/* ---- Logo ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  display: block;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.logo-main {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-divider {
  width: 1.5px;
  height: 36px;
  background: rgba(255,255,255,0.3);
  margin: 0 10px;
  flex-shrink: 0;
}

.logo-sub {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

/* ---- Nav links — pushed to the right ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;   /* pushes links to the right */
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  padding: 8px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover { color: var(--white); }

.nav-link.active { color: var(--white); font-weight: 500; }

/* ---- Hamburger (mobile only) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;   /* content pinned to bottom */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 25, 0.35) 0%,
    rgba(5, 10, 25, 0.45) 50%,
    rgba(5, 10, 25, 0.72) 100%
  );
}

/* SAS watermark top-right */
.hero-watermark {
  position: absolute;
  top: 20px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-watermark-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-watermark-text small {
  font-size: 8px;
  font-weight: 500;
}

/* Two-column content row at bottom */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 48px;
}

.hero-left {}

.hero-title {
  font-size: 80px;
  font-weight: 400;
  line-height: 94px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 8px;
}

.hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 460px;
}

/* White CTA button with arrow */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}

.hero-cta-btn:hover {
  background: #e8edf3;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.hero-cta-btn svg {
  flex-shrink: 0;
  transition: transform 0.22s;
}

.hero-cta-btn:hover svg {
  transform: translate(2px, -2px);
}

/* ===================== ABOUT / STATS ===================== */

.about-section {
    background: #fafafa;
    padding: 80px 0 72px;
    position: relative ;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Top row */
.about-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
}

.about-label {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  padding-top: 6px;
  letter-spacing: 0.01em;
}

.about-para {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: #111;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 860px;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 220px; /* aligns under the paragraph */
  gap: 0;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 40px;
}

.about-stat-num {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 400;
  color: #111;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
}

/* ===================== SOLUTIONS SECTION ===================== */
.solutions-section {
  background: #f0f1f3;
  padding: 64px 0 72px;
}

.solutions-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header row */
.solutions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.sol-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.sol-title {
  font-size: clamp(28px, 3vw, 30px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Blue CTA button */
.sol-cta-btn {
  
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0098d4;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.sol-cta-btn:hover {
  background: #007bb0;
  transform: translateY(-1px);
}

/* 2×2 Grid */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Individual card — full image with gradient overlay */
.sol-card {
  position: relative;
  display: block;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  height: 480px;          /* fixed card height */
}
.sol-card:hover { }

/* Arrow icon top-right */
.sol-card-arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 5;
  width: 40px;
  height: 40px;
  background: #fff;
  backdrop-filter: blur(4px);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: background 0.22s;
}
.sol-card:hover .sol-card-arrow {
  background: #fff;
}

/* Image fills the entire card */
.sol-card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sol-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sol-card:hover .sol-card-img img {
  transform: scale(1.05);
}

/* Gradient overlay — transparent top → dark navy bottom */
.sol-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 28px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 35%,
    rgba(8, 15, 55, 0.55) 60%,
    rgba(6, 10, 45, 0.92) 80%,
    rgba(4, 8, 38, 0.98) 100%
  );
  gap: 10px;
}

.sol-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sol-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 480px;
}

/* Learn More button */
.sol-learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 9px 18px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #000;
  width: fit-content;
  background: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.sol-card:hover .sol-learn-btn {
  background: #fff;
  border-color: #fff;
}

/* ===================== PRODUCTS SECTION ===================== */
.prod-section {
  background: #f0f1f3;
  padding: 64px 0 72px;
}

.prod-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Header */
.prod-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.prod-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
}

.prod-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Slider viewport — clips overflow */
.prod-slider-viewport {
  overflow: hidden;
}

/* Track — flex row of cards */
.prod-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each card — 3 visible at once */
.prod-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Product image area — light bg, image centered */
.prod-card-img {
  background: #F7F7F7;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-card-img img {
  transform: scale(1.04);
}

/* Card info bottom */
.prod-card-info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid #e8eaed;
}

.prod-card-title {
  font-size: 22px;
  font-weight: 400;
  color: #111;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Blue contact button */
.prod-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0098d4;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 4px;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}
.prod-contact-btn:hover {
  background: #007bb0;
  transform: translateY(-1px);
}

/* Dots */
.prod-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.prod-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c0c4cc;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.prod-dot.active {
  background: #111;
  transform: scale(1.25);
}

/* ===================== CASE STUDIES ===================== */
.cs-section {
  background: #fff;
  padding: 72px 0 72px;
}

/* Cards wrapper with side padding */
.cs-cards-wrap {
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 0;
}

/* Centered header */
.cs-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 40px;
}

.cs-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #777;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.cs-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Each card — full width, fixed height */
.cs-card {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
}

/* Full-bleed background image (right 60% shows clearly) */
.cs-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cs-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Frosted glass panel — left ~38% */
.cs-glass-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Blurred background — same image, blurred */
.cs-glass-blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  filter: blur(3px) brightness(0.55);
  transform: scale(1.06); /* hide blur edges */
}

/* Additional dark overlay on the glass panel */
.cs-glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 40, 0.55);
}

/* Content inside glass panel */
.cs-panel-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px 32px;
}

/* "Logo" at top */
.cs-logo-label {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

/* Bottom content block */
.cs-panel-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-card-title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.cs-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* Know More button — white outlined */
.cs-know-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 9px 18px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  width: fit-content;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.cs-know-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* "See all case studies" box — bottom-right of card 2 */
.cs-see-all-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  background: #fff;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
  transition: background 0.2s;
}
.cs-see-all-box:hover { background: #f0f1f3; }

.cs-see-all-box svg {
  color: #111;
}

.cs-see-all-box span {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  line-height: 1.3;
}

/* ===================== PARTNERS SECTION ===================== */
.partners-section {
  background: #f4f6f9;
  padding: 72px 0 80px;
}

.partners-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.partners-header {
  margin-bottom: 48px;
}

.partners-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.partners-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.partners-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  max-width: 100%;
  margin-top: 16px;
}

.partners-viewport {
  overflow: hidden;
}

.partners-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  flex-shrink: 0;
  width: 100%;
}

.partners-logo-card {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  min-height: 160px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.partners-logo-card:hover {
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.10);
  transform: translateY(-2px);
}

.partners-logo {
  width: 100%;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-logo svg,
.partners-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.22s;
}

.partners-logo-card:hover .partners-logo svg,
.partners-logo-card:hover .partners-logo img {
  opacity: 1;
}

/* Dots */
.partners-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.partners-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8c3cc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  flex-shrink: 0;
}

.partners-dot.active {
  background: #1a1a1a;
  width: 28px;
  border-radius: 5px;
}

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

@media (max-width: 600px) {
  .partners-wrap {
    padding: 0 20px;
  }
  .partners-section {
    padding: 48px 0 56px;
  }
  .partners-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .partners-logo-card {
    padding: 28px 16px;
    min-height: 100px;
  }
}

/* ===================== OFFICIAL PARTNERS ===================== */
.op-section {
  background: var(--gray-100);
  padding: 72px 0 80px;
}

.op-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.op-header {
  margin-bottom: 48px;
}

.op-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.op-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.op-card {
  background: var(--white);
  padding: 48px 40px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.op-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.op-card-logo {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}

.op-card-logo img {
  max-width: 220px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.op-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.op-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .op-grid {
    grid-template-columns: 1fr;
  }
  .op-card-logo {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .op-wrap {
    padding: 0 20px;
  }
  .op-section {
    padding: 48px 0 56px;
  }
  .op-card {
    padding: 32px 24px;
  }
}

/* ===================== INDUSTRIES ===================== */
.ind-section {
  background: #f0f1f3;
  padding: 72px 0 80px;
}

.ind-wrap {
  max-width: 1400px;
  margin: 0 auto;
   padding: 0 56px;
}

/* Header row */
.ind-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ind-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-bottom: 6px;
}

.ind-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Prev / Next arrow buttons */
.ind-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 6px;
}

.ind-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.ind-arrow-btn:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* Slider viewport — overflow hidden but shows partial 4th card */
.ind-viewport {
  overflow: hidden;
}

/* Track */
.ind-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each card — 3 fully visible + partial 4th */
.ind-card {
  flex: 0 0 calc((100% - 48px) / 3.25);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  overflow: hidden;
}

/* Image */
.ind-card-img {
  width: 100%;
  height: 440px;
  overflow: hidden;
  flex-shrink: 0;
}

.ind-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ind-card:hover .ind-card-img img {
  transform: scale(1.04);
}

/* Label bar below image */
.ind-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border-top: 1px solid #e8eaed;
}

.ind-card-label span {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  line-height: 1.3;
}

.ind-card-label svg {
  color: #111;
  flex-shrink: 0;
}

.ind-card:hover .ind-card-label svg {
  transform: translate(2px, -2px);
  transition: transform 0.2s;
}

/* Short description below the label */
.ind-card-desc {
  padding: 0 18px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ===================== HOW WE WORK ===================== */
.hww-section {
  background: #fff;
  padding: 80px 0 96px;
}

.hww-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;   /* right column stretches to match left column height */
}

/* ── Left column ── */
.hww-left {}

.hww-header {
  margin-bottom: 40px;
}

.hww-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #777;
  margin-bottom: 8px;
}

.hww-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Steps — always open, stacked */
.hww-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hww-step {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 28px 32px 32px;
}

/* Roman numeral circle */
.hww-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hww-step-num span {
  font-size: 12px;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.04em;
  font-style: italic;
}

.hww-step-title {
  font-size: 26px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.hww-step-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

/* ── Right column — sticky image ── */
.hww-right {
  position: relative;
}

.hww-sticky-img {
  position: sticky;
  top: 96px;           /* sticks 96px from top of viewport */
  border-radius: 8px;
  overflow: hidden;
}

.hww-sticky-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hww-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .hww-right { order: -1; }
  .hww-sticky-img { position: relative; top: auto; }
  .hww-sticky-img img { height: 320px; }
}

@media (max-width: 600px) {
  .hww-wrap { padding: 0 20px; }
  .hww-step { padding: 20px 20px 24px; }
  .hww-step-title { font-size: 20px; }
}

/* ===================== TESTIMONIALS ===================== */
.testi-section {
  background: #f0f1f3;
  padding: 72px 0 80px;
}

.testi-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 52px;
}

/* Header */
.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.testi-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-bottom: 6px;
}

.testi-title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Arrow buttons — same style as industries */
.testi-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 6px;
}

.testi-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.testi-arrow-btn:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* Slider viewport */
.testi-viewport {
  overflow: hidden;
}

/* Track */
.testi-track {
  display: flex;
  gap: 10px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each card — 3 fully visible, 4th partially peeks */
.testi-card {
  flex: 0 0 calc((100% - 32px) / 3.18);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Video wrapper — fills card completely */
.testi-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 133%;   /* 3:4 portrait ratio */
  overflow: hidden;
  background: #222;
}

/* Video absolutely fills the wrapper */
.testi-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Dark gradient bottom overlay */
.testi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Name + role — bottom left */
.testi-person {
  position: absolute;
  bottom: 22px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

/* White vertical accent line */
.testi-person-accent {
  width: 2px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.testi-role {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 3px;
}

/* ===================== FAQ ===================== */
.faq2-section {
  background: #fff;
  padding: 80px 0 96px;
}

.faq2-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.faq2-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #777;
  margin-bottom: 12px;
}

.faq2-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* "Can't find answer" card */
.faq2-contact-card {
  display: flex;
  flex-direction: column;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 20px 20px 28px;
  text-decoration: none;
  position: relative;
  min-height: 160px;
  transition: background 0.2s;
}
.faq2-contact-card:hover { background: #eaebee; }

.faq2-card-arrow {
  align-self: flex-end;
  color: #111;
  margin-bottom: auto;
}

.faq2-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}

.faq2-card-main {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
}

.faq2-card-sub {
  font-size: 13px;
  font-weight: 400;
  color: #888;
}

/* Right column — FAQ items */
.faq2-right {
  padding-top: 4px;
  padding-left: 100px;
}

.faq2-item {
  border-top: 1px solid #e2e4e8;
}
.faq2-item:last-child { border-bottom: 1px solid #e2e4e8; }

/* Question row */
.faq2-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  transition: color 0.2s;
}
.faq2-q:hover { color: #444; }

/* + / − icon */
.faq2-plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #666;
}

.faq2-plus .plus-icon  { display: block; }
.faq2-plus .minus-icon { display: none; }

.faq2-item.open .faq2-plus .plus-icon  { display: none; }
.faq2-item.open .faq2-plus .minus-icon { display: block; }

/* Answer */
.faq2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq2-item.open .faq2-answer {
  max-height: 300px;
}

.faq2-answer p {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.75;
  padding-bottom: 28px;
  max-width: 640px;
}
@media (max-width: 900px) {
  .faq2-right {
  padding-top: 4px;
  padding-left: 0px;
}
}
/* ===================== BLOG ===================== */
.blog2-section {
  background: #f0f1f3;
  padding: 72px 0 88px;
}

.blog2-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Header */
.blog2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.blog2-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-bottom: 6px;
}

.blog2-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* 3-col grid */
.blog2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Card */
.blog2-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog2-card:hover { transform: translateY(-4px); }

/* Image */
.blog2-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog2-card:hover .blog2-img img {
  transform: scale(1.04);
}

/* Body */
.blog2-body {
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Title row: title left + arrow right */
.blog2-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.blog2-card-title {
  font-size: 17px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.blog2-title-row svg {
  flex-shrink: 0;
  color: #111;
  margin-top: 3px;
  transition: transform 0.2s;
}

.blog2-card:hover .blog2-title-row svg {
  transform: translate(2px, -2px);
}

/* Description */
.blog2-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: #666;
  line-height: 1.65;
}

/* READ MORE link */
.blog2-read-more {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s;
}

.blog2-read-more:hover { color: #0098d4; }

@media (max-width: 900px) {
  .blog2-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-direction: column;
}
}

/* ===================== CTA / CONTACT ===================== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-Heading-main {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 56px;
}
.cta-Heading-main h2{
    font-size: clamp(25px, 3.5vw, 30px);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
  
}
/* Full-bleed background image */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Very subtle overlay — background image stays very visible */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 25, 0.38);
}

/* Main two-column layout */
.cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ========== LEFT: glass panel ========== */
.cta-left-glass {
  background: rgb(26 115 232 / 11%);
  backdrop-filter: blur(17px) saturate(1.1);
  -webkit-backdrop-filter: blur(17px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 0px;
  overflow: hidden;
  padding: 16px;
}

/* Map — inset with padding */
.cta-map {
  width: 100%;
  height: 396px;
  border-radius: 0px;
  overflow: hidden;
}
.cta-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Gap then two white info cards */
.cta-info-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 14px 0px 0px; /* 14px gap from map, flush bottom & sides */
}

.cta-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 22px;
  background: #ffffff;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-info-card:first-child {
  border-right: 1px solid #e4e6ea;
}
.cta-info-card:hover { background: #f6f7f9; }

.cta-info-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #111;
}

.cta-info-icon {
  color: #222;
  flex-shrink: 0;
}

.cta-info-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cta-info-details span {
  font-size: 13.5px;
  font-weight: 400;
  color: #111;
  line-height: 1.5;
}

/* ========== RIGHT: form glass panel ========== */
.cta-form-glass {
  background: rgb(26 115 232 / 11%);
  backdrop-filter: blur(17px) saturate(1.1);
  -webkit-backdrop-filter: blur(17px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 0px;
  padding: 36px 32px 40px;
}

.cta-form-title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

.cta-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cta-field label {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

/* Glass inputs — dark tinted, matching Figma */
.cta-field input,
.cta-field textarea {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: #fff;
  outline: none;
  resize: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-field input::placeholder,
.cta-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.cta-field input:focus,
.cta-field textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.13);
}

/* Submit — white outlined */
.cta-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.65);
  border-radius: 4px;
  padding: 11px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  width: fit-content;
  margin-top: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.cta-submit-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .cta-map { height: 260px; }
  .cta-Heading-main {

    padding: 20px 20px;
}
}

/* ===================== PRODUCT DETAIL — ABOUT ===================== */
.pd-about-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.pd-about-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}
.pd-about-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  margin: 0;
  padding-top: 10px;
}
.pd-about-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 28px;
}
.pd-about-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 0 18px;
}
.pd-specs {
  margin-top: 36px;
}
.pd-specs-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
}
.pd-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}
.pd-spec-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}
.pd-spec-value {
  font-size: 14px;
  color: var(--text-light);
  text-align: right;
}

/* ===================== PRODUCT DETAIL — BENEFITS ===================== */
.pd-ben-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.pd-ben-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 72px;
  align-items: start;
}
.pd-ben-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: 0;
}
.pd-ben-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 32px;
  line-height: 1.15;
}
.pd-ben-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pd-ben-card {
  background: var(--gray-100, #f5f6f7);
  border-radius: 8px;
  padding: 24px 28px 28px;
}
.pd-ben-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.pd-ben-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}
.pd-ben-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
.pd-ben-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.pd-ben-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== PRODUCT DETAIL — HOW IT WORKS ===================== */
.pd-hiw-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.pd-hiw-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 72px;
  align-items: center;
}
.pd-hiw-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}
.pd-hiw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-hiw-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 24px;
  line-height: 1.2;
}
.pd-hiw-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 0 18px;
}
.pd-hiw-desc:last-child { margin-bottom: 0; }

/* ===================== FOOTER ===================== */
.footer {
  background: #080d2a;   /* deep dark navy matching Figma */
}

/* Navbar logo image */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer 4-col grid */
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 40px 56px;
  align-items: start;
}

/* Col 1: Brand */
.footer-brand-col {}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
}

/* Col headings */
.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1;
}

/* Regular link columns */
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links-col ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-links-col ul li a:hover { color: #fff; }

/* Col 4: Contact items with icons */
.footer-contact-col ul {
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  line-height: 1.55;
  display: block;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: #fff; }

/* Phone numbers stacked */
.footer-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

/* Social icon buttons — outlined circles */
.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-btn:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ===================== PRODUCT DETAIL — RESPONSIVE ===================== */
@media (max-width: 900px) {
  .pd-about-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
  }
  .pd-about-eyebrow { padding-top: 0; }

  .pd-hiw-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .pd-hiw-img { height: 280px; }

  .pd-ben-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .pd-ben-img { position: static; order: -1; height: 280px; }
}
@media (max-width: 600px) {
  .pd-about-wrap,
  .pd-hiw-wrap,
  .pd-ben-wrap { padding: 0 16px; }

  .pd-about-title  { font-size: 26px; }
  .pd-hiw-title    { font-size: 24px; }
  .pd-ben-title    { font-size: 24px; }

  .pd-hiw-img  { height: 220px; }
  .pd-ben-img  { height: 220px; }

  .pd-spec-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pd-spec-value { text-align: left; }

  .pd-ben-card { padding: 18px 16px 20px; }
  .pd-ben-card-title { font-size: 17px; }
}

/* Responsive footer */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 32px; }
  .footer-bottom-inner { padding: 16px 32px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; padding: 16px 20px; text-align: center; }
}

/* ===================== BOTTOM POPUP ===================== */
.bp-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0096DB;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.bp-bar.visible  { transform: translateY(0); }
.bp-bar.hidden   { transform: translateY(100%); pointer-events: none; }

/* Close button — top right */
.bp-close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s;
}
.bp-close:hover { color: #fff; }

/* Inner layout */
.bp-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 64px 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Left: icon + title */
.bp-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.bp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

/* Title */
.bp-title {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.01em;
  flex: 1;
}

/* Email form */
.bp-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.bp-email {
  padding: 13px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: #111;
  background: rgba(255,255,255,0.82);
  border: none;
  outline: none;
  width: 240px;
  transition: background 0.2s;
}
.bp-email::placeholder { color: #555; }
.bp-email:focus { background: rgba(255,255,255,0.95); }

/* "Get It Free" dark navy button */
.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: #080d2a;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.bp-btn:hover { background: #0d1540; }

/* Mobile */
@media (max-width: 768px) {
  .bp-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px 28px; }
  .bp-left { gap: 14px; }
  .bp-icon svg { width: 26px; height: 26px; }
  .bp-title { font-size: 18px; }
  .bp-form { width: 100%; }
  .bp-email { flex: 1; width: auto; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .products-track { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --section-py: 64px; }

  .sol-grid { grid-template-columns: 1fr; }
  .solutions-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .solutions-wrap { padding: 0 24px; }
  .prod-card { flex: 0 0 calc(50% - 10px); }
  .prod-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #080f2a;
    padding: 20px 24px 32px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  .nav-links.open .nav-link { padding: 12px 16px; }

  .hamburger { display: flex; }

  .hero-title { font-size: clamp(36px, 8vw, 56px); font-weight: 400; line-height: 46px; }
  .hero-content { grid-template-columns: 1fr; gap: 24px; padding: 0 24px 48px; }
  .hero-watermark { display: none; }

  .about-top { grid-template-columns: 1fr; gap: 20px; }
  .about-stats { padding-left: 0; grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .about-para { font-size: clamp(22px, 4vw, 32px); }

  .how-work-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-work-image-col { order: -1; }
  .how-work-sticky { position: relative; top: auto; }
  .how-work-img { height: 320px; }

  .testimonials-track { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; gap: 48px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { display: none; }
  .contact-form-wrap { padding: 60px 32px; }

  .case-studies-grid { grid-template-columns: 1fr; }

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

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

  .popup-inner { flex-direction: column; align-items: flex-start; padding: 20px 48px 20px 20px; }
  .popup-title { font-size: 15px; }
  .popup-body { display: none; }
}

@media (max-width: 600px) {
  :root { --section-py: 48px; }
  .prod-card { flex: 0 0 calc(100% - 20px); }
  .prod-wrap { padding: 0 20px; }
  .prod-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .section-container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }

  .hero-content { padding: 0 20px 40px; }

  .solutions-grid { grid-template-columns: 1fr; }
  .products-track { grid-template-columns: 1fr; }

  .section-header-row { flex-direction: column; align-items: flex-start; }

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

  .footer-inner { grid-template-columns: 1fr; padding: 40px 20px 48px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }

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

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 48px 20px; }

  .about-container { padding: 0 20px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { padding-right: 0; }
}


/* Additional Codes */

.hero{
  position: sticky;
  top: 0;
}

.cs-glass-overlay {
   background: rgb(26 115 232 / 11%);
  backdrop-filter: blur(17px) saturate(1.1);
  -webkit-backdrop-filter: blur(17px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.13);
}

.cs-glass-panel{
  height: 92%;
    margin: 20px 0px 20px 20px;
}

@media (max-width: 600px) {

  .cs-cards-wrap, .ind-wrap, .testi-wrap, .faq2-wrap, .blog2-wrap, .cta-inner, .solutions-wrap {
    padding: 0 20px;
}
.faq2-wrap{
  grid-template-columns: 1fr;
}
.cs-glass-panel {
    width: 90%;
    height: 72%;

}  
.cs-panel-content {
    padding: 15px 15px 20px;
}
.blog2-grid, .cta-info-row {
    grid-template-columns: 1fr;
}  
}

@media (max-width: 1024px) {
  .ind-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .ind-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 1024px) {
  .testi-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .testi-card {
    flex: 0 0 100%;
  }
}

/* End */

/* =====================================================
   ABOUT US PAGE
   ===================================================== */

/* Generic placeholder — used wherever a real image/video asset
   is still pending from the client (clearly marked, not faked) */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(45deg, #e2e6eb, #e2e6eb 10px, #eef0f3 10px, #eef0f3 20px);
  border: 1px dashed var(--gray-400);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
}

/* ---------- About Hero ---------- */
.about-hero {
  position: relative;
  padding-top: 96px;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(to bottom, rgb(0 0 0 / 73%) 0%, rgba(0, 0, 0, 0.25) 55%, rgb(0 0 0 / 53%) 100%);
  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 56px 56px;
}

.about-hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ---------- Our Story ---------- */
.story-section {
  padding: var(--section-py) 0;
}

.story-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  gap: 60px;
}

.story-label {
  flex: 0 0 200px;
  font-size: 16px;
  color: var(--text);
}

.story-main {
  flex: 1;
  min-width: 0;
}

.story-heading {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 20px;
}

.story-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 760px;
}

.story-stats {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}

/* Single-column, full-width variant — reuses .sol-eyebrow / .story-heading / .story-desc */
.story-section-stacked {
  background: var(--gray-100);
}

.story-wrap-stacked {
  display: block;
  max-width: 1400px;
}

.story-wrap-stacked .story-heading {
  margin: 12px 0 20px;
}

.story-wrap-stacked .story-desc {
  max-width: none;
}

.story-stats .about-stat {
  flex: 1;
  padding-right: 24px;
}

/* ---------- Case Study — About stats row (reuses .about-stat) ---------- */
.cs-stats-row {
  display: flex;
  gap: 150px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.cs-stats-row .about-stat {
  padding-right: 0;
}

@media (max-width: 900px) {
  .cs-stats-row {
    gap: 32px 48px;
  }
}

/* ---------- How It Works (full-bleed dark banner + glass step cards) ---------- */
.hiw-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
}

.hiw-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hiw-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hiw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,15,40,0.6) 0%,
    rgba(10,15,40,0.4) 45%,
    rgba(10,15,40,0.65) 100%
  );
  z-index: 1;
}

.hiw-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 56px;
}

.hiw-eyebrow {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.hiw-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin-bottom: 24px;
}

.hiw-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin-bottom: 56px;
}

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

.hiw-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}

.hiw-num {
  display: block;
  font-size: 22px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.hiw-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.hiw-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

/* ---------- Vision / Mission / Values ---------- */
.vm-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.vm-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 60px;
  align-items: stretch;
}

.vm-img {
  border-radius: var(--radius);
  overflow: hidden;
}

.vm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vm-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-card {
  background: var(--gray-100);
  padding: 32px 28px;
}

.vm-card-icon {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
  overflow: hidden;
}

.vm-card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.vm-card-title {
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.vm-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ---------- Video banner ---------- */
.video-banner-section {
  padding: 100px 0;
}

.video-banner-frame {
  max-width: var(--container);
  margin: 0 auto;
   padding: 0 56px;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.video-banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  background: #000;
}

.video-banner-frame.playing img,
.video-banner-frame.playing .video-banner-play {
  display: none;
}

.video-banner-frame.playing .video-banner-video {
  display: block;
}

.video-banner-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
.video-banner-frame {
 
   padding: 0 15px;}
}
/* ---------- Leadership / Team ---------- */
.team-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.team-header {
  margin-bottom: 48px;
}

.team-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.team-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  height: 546px;
}

.team-card-img {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-info {
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
}

.team-card-name {
  font-size: 16px;
  display: block;
}

.team-card-role {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.8;
  display: block;
}

/* ---------- About CTA heading (extends .cta-section) ---------- */
.cta-heading {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px 32px;
}


.cta-heading h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .vm-wrap { grid-template-columns: 1fr; }
  .vm-img { height: 320px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .story-wrap { flex-direction: column; gap: 24px; }
  .story-stats { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { height: 420px; }
  .video-banner-frame { height: 280px; }
}

@media (max-width: 600px) {
  .about-hero-inner, .story-wrap, .vm-wrap, .team-wrap, .cta-heading {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =====================================================
   SOLUTIONS PAGE — single reusable alternating row
   ===================================================== */


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

.feat-section > .feat-wrap,
.feat-section > .feat-row-shaded {
  margin-bottom: 64px;
  margin-top: 64px;
}

.feat-section > .feat-wrap:last-child,
.feat-section > .feat-row-shaded:last-child {
  margin-bottom: 0;
}

/* Full-bleed gray background behind a single row */
.feat-row-shaded {
  background: var(--gray-100);
  padding: 80px 0;
}

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

.feat-row-reverse .feat-row-img { order: 2; }
.feat-row-reverse .feat-row-body { order: 1; }

.feat-row-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}

.feat-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feat-row-title {
  font-weight: 600;
  margin: 0 0 18px;
}

.feat-row-body .story-desc {
  margin-bottom: 20px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feat-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

.feat-list li::before {
  content: "\25E6";
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* ---------- Benefits (numbered card list + sticky image) ---------- */
.ben-section {
  padding: 100px 0;
}

.ben-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ben-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.ben-title {
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.ben-list {
  display: flex;
  flex-direction: column;
}

.ben-card {
  background: var(--gray-100);
  padding: 32px 28px;
}

.ben-card + .ben-card {
  margin-top: 4px;
}

.ben-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
}

.ben-card-title {
  font-size: 22px;
  font-weight: 400;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.25;
}

.ben-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.ben-right {
  position: sticky;
  top: 110px;
  align-self: start;
}

.ben-right img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

@media (max-width: 900px) {
  .ben-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .ben-right {
    position: relative;
    top: auto;
    order: -1;
  }
}

/* ---------- Specifications & Requirements ---------- */
.spec-section {
  padding: 100px 0;
}

.spec-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.spec-left {
  position: sticky;
  top: 120px;
}

.spec-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.spec-title {
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 400;
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.spec-item-title {
  font-size: 22px;
  font-weight: 400;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.25;
}

.spec-item-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .spec-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
  }
  .spec-left {
    position: relative;
    top: auto;
  }
  .spec-list {
    gap: 36px;
  }
}

/* ---------- Related Case Study ---------- */
.rcs-section {
  padding: 100px 0;
  background: var(--white);
}

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

.rcs-header {
  margin-bottom: 48px;
}

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

.rcs-card {
  position: relative;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
}

.rcs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rcs-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(10,15,40,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px 28px;
}

.rcs-card-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.rcs-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.rcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.rcs-btn:hover {
  background: rgba(255,255,255,0.12);
}

@media (max-width: 900px) {
  .rcs-wrap { padding: 0 24px; }
  .rcs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rcs-card { height: none; }
}

/* ---------- Real Results (filterable case study list) ---------- */
.res-section {
  padding: 100px 0;
}

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

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

.res-filter {
  position: relative;
}

.res-filter select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--gray-100);
  border: none;
  padding: 14px 44px 14px 20px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  border-radius: 4px;
  cursor: pointer;
}

.res-filter svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text);
}

.res-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.res-card {
  position: relative;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
}

.res-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-card-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 38% 1fr 1fr 1fr;
}

.res-panel {
  background: rgba(10,15,40,0.5);
  backdrop-filter: blur(6px);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.res-panel-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.res-panel-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.res-stat {
  background: rgba(10,15,40,0.3);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding: 24px;
  text-align: center;
}

.res-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.res-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .res-wrap { padding: 0 24px; }
  .res-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .res-card { height: auto; }
  .res-card img { height: 320px; }
  .res-card-row {
    position: relative;
    grid-template-columns: 1fr;
  }
  .res-panel{background-color: #080f2a;}
  .res-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding: 18px; background-color: #080f2a; }
}

/* ---------- Solutions Across Industries (challenge / solution / image grid) ---------- */
.indx-section {
  padding: 100px 0;
  background: #f2f3f5;
}

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

.indx-header {
  margin-bottom: 64px;
}

.indx-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indx-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.indx-cell {
  position: relative;
  min-height: 480px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  align-items: flex-start;
}

.indx-cell-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.indx-cell-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}

.indx-cell-solution .indx-cell-desc {
  margin-bottom: 28px;
}

.indx-cell-image {
  padding: 0;
  overflow: hidden;
  text-decoration: none;
}

.indx-cell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indx-cell-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform 0.2s ease;
}

.indx-cell-image:hover .indx-cell-arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .indx-wrap { padding: 0 24px; }
  .indx-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .indx-cell {
    min-height: auto;
    padding: 20px ;
  }
  .indx-cell-image {
    min-height: 280px;
    padding: 0px !important;
  }
  .image_last_row{
    order: 1;
  }
  .indx-cell-challenge{
    order: 2;
  }
  .indx-cell-solution{
    order: 3;
  }
}

@media (max-width: 900px) {
  .feat-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feat-row-reverse .feat-row-img,
  .feat-row-reverse .feat-row-body {
    order: initial;
  }
  .feat-row-img { height: 260px; }
}

@media (max-width: 600px) {
  .feat-wrap { padding: 0 20px; gap: 40px; }
}

@media (max-width: 900px) {
  .hiw-section { min-height: auto; padding: 80px 0 48px; }
  .hiw-inner { padding: 0 24px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Issues Faced (bulleted list + image, reuses .ben-eyebrow/.ben-title) ---------- */
.issues-section {
  padding: 100px 0;
  background: var(--gray-100);
}

.issues-wrap {
  max-width: var(--container);
  margin: 0 auto;
   padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.issues-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.issues-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.issues-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.issues-item-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-top: 2px;
}

.issues-item-text {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}

.issues-right img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

@media (max-width: 900px) {
  .issues-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .issues-right { order: -1; }
  .issues-right img { min-height: 280px; }
}

/* ---------- Implementation Process (checklist rows, reuses .ben-eyebrow/.ben-title) ---------- */
.proc-section {
  padding: 100px 0;
}

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

.proc-header {
  margin-bottom: 64px;
}

.proc-list {
  border-top: 1px solid var(--gray-200);
}

.proc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}

.proc-row-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proc-check {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--text);
}

.proc-row-title h3 {
  font-size: 24px;
  font-weight: 400;
  color: #111;
  letter-spacing: -0.01em;
}

.proc-row-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .proc-wrap { padding: 0 24px; }
  .proc-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
}

/* ---------- Result & Achievements (centered header + image / icon cards) ---------- */
.impact-section {
  padding: 100px 0;
}

.impact-header {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}

.impact-eyebrow {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.impact-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.impact-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.impact-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.impact-img {
  position: sticky;
  top: 110px;
}

.impact-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.impact-card {
  background: var(--gray-100);
  padding: 40px 36px;
}

.impact-icon {
  margin-bottom: 20px;
  color: #111;
}

.impact-card-title {
  font-size: 24px;
  font-weight: 400;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.impact-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .impact-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .impact-img {
    position: relative;
    top: auto;
    order: -1;
  }
}

/* ---------- Gallery (reuses .impact-eyebrow/.impact-title/.impact-desc header) ---------- */
.gallery-section {
  padding: 100px 0;
}

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
    gap: 16px;
  }
}

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

/* ---------- Contact Form (light-themed, replaces .cta-section on contact.html) ---------- */
.cf-section {
  padding: 100px 0;
  background: var(--white);
}

.cf-header {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}

.cf-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: #111;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cf-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

.cf-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.cf-left {
  background: var(--gray-100);
  padding: 40px;
}

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

.cf-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 160px;
  justify-content: center;
  padding: 28px 24px;
  background: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.cf-info-card:hover { background: #f6f7f9; }

.cf-info-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #111;
}

.cf-info-icon {
  color: #111;
}

.cf-info-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cf-info-details span {
  font-size: 15px;
  color: #111;
  line-height: 1.5;
}

.cf-map {
  height: 420px;
  background: var(--white);
  overflow: hidden;
}

.cf-right {
  background: var(--gray-100);
  padding: 48px 40px;
}

.cf-form-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.cf-form {
  display: flex;
  flex-direction: column;
}

.cf-radio-label {
  display: block;
  font-size: 15px;
  color: #111;
  margin-bottom: 16px;
}

.cf-radio-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.cf-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #111;
  cursor: pointer;
}

.cf-radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #0098d4;
  flex-shrink: 0;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.cf-field label {
  font-size: 14px;
  color: #111;
}

.cf-field input,
.cf-field textarea {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: #111;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--blue);
}

.cf-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0098d4;
  border: none;
  border-radius: 4px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  width: fit-content;
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s;
}

.cf-submit-btn:hover {
  background: #007bb0;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .cf-wrap {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .cf-info-grid {
    grid-template-columns: 1fr;
  }
  .cf-left, .cf-right {
    padding: 28px 24px;
  }
}
