/* =====================================================
   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;

  --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);
}

.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: 1.05;
  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, 40px);
  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 48px;
}

/* 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;
}

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

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

/* 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;
}

/* ===================== 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 52px;
  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;
}

.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: 17px;
  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;
}

/* ===================== BLOG ===================== */
.blog2-section {
  background: #f0f1f3;
  padding: 72px 0 88px;
}

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

/* 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; }

/* ===================== CTA / CONTACT ===================== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 68px;
}

/* 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; }
}

/* ===================== 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: 60px 56px 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);
}

/* 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;
}

/* 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-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; }
  .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 */


