@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap");
 @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@300;400;600&display=swap');
:root {
  --primary-blue: #05214f;
}
@font-face {
  font-family: "Riking";

  src: url("./fonts/Riking.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  overflow-x: hidden;
}
body {
  font-family: "Work Sans", sans-serif;

  background-color: #f8f9fa;
}
/* Core Layout & Glassmorphism */
/* --- YOUR EXISTING DESKTOP STYLES --- */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.navbar-container.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.navbar-logo a img {
  height: 50px;
  width: 50px;
}

/* Wrapper for desktop alignment */
.navbar-menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end; /* Pushes the login button to the far right */
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;

  /* Forces the menu to the absolute center of the screen */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  text-decoration: none;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: #111;
}

.nav-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #111;
  transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.login-btn {
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.login-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-btn:active {
  transform: translateY(0);
}

/* --- NEW RESPONSIVE STYLES --- */

/* Hide mobile elements on desktop */
.hamburger-btn,
.close-sidebar-btn,
.sidebar-overlay {
  display: none;
}
/* Add this inside your mobile media query */
.hamburger-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Mobile Media Query */
@media (max-width: 768px) {
  .navbar-container {
    padding: 1rem 1.5rem;
  }

  .navbar-container.scrolled {
    padding: 0.8rem 1.5rem;
  }

  /* Hamburger Styling */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002; /* Above everything */
  }

  .hamburger-btn span {
    width: 25px;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
  }

  /* Sidebar Layout */
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen by default */
    width: 280px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;

    /* THE FIX: Forces the links back to the top of the sidebar */
    justify-content: flex-start;

    padding: 5rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1001;
  }

  /* Class toggled by JavaScript to slide in */
  .navbar-menu.active {
    right: 0;
  }

  .navbar-links {
    position: static; /* Removes the desktop centering */
    transform: none; /* Removes the desktop centering */
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
  .nav-item {
    font-size: 1.2rem; /* Larger for touch */
  }

  .login-btn {
    width: 100%; /* Full width button on mobile */
    padding: 1rem;
  }

  /* Close Button (X) */
  .close-sidebar-btn {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    color: #111;
    cursor: pointer;
  }

  /* Blurred Dark Overlay */
  .sidebar-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
  }

  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Notification Bar Styles */
.notification-bar {
  /* Using your custom brand color */
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 0.6rem 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001; /* Keeps it above the sticky navbar */
  transition: all 0.3s ease;
}

.notification-bar p {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.notification-bar a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
  transition: opacity 0.2s ease;
}

.notification-bar a:hover {
  opacity: 0.8;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.close-btn:hover {
  opacity: 1;
}

/* Utility class to hide the bar via JavaScript */
.notification-hidden {
  display: none !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .notification-bar {
    padding: 0.8rem 2.5rem 0.8rem 1rem; /* Extra padding on right so text doesn't hit the X */
  }
  .notification-bar p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Hero Section Container */
.hero-section {
  position: relative;

  min-height: 500px;

  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Zarma Title */
.hero-title {
  font-family: "Riking";
  letter-spacing: 2px;
  font-size: 8rem;
  line-height: 1;
  color: var(--primary-blue);
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none; /* Allows mouse to interact with capsules behind the text */
}

/* --- Capsule Styling --- */
.capsule-wrapper {
  position: absolute;
  transition: transform 0.2s ease-out; /* Smooth mouse follow */
  z-index: 5;
}

.capsule {
  width: 100px;
  height: 45px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: float 4s infinite ease-in-out;
}

/* The center line of the capsule */
.capsule::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

/* Capsule Two-Tone Colors */
.color-1 {
  background: linear-gradient(90deg, #ff6b6b 50%, #ff8e8e 50%);
}
.color-2 {
  background: linear-gradient(90deg, #4d96ff 50%, #6babff 50%);
  animation-delay: 0.5s;
}
.color-3 {
  background: linear-gradient(90deg, #6bcb77 50%, #85d68f 50%);
  animation-delay: 1s;
}
.color-4 {
  background: linear-gradient(90deg, #ffd93d 50%, #ffe373 50%);
  animation-delay: 1.5s;
}
.color-5 {
  background: linear-gradient(90deg, #9d4edd 50%, #b874e8 50%);
  animation-delay: 0.2s;
}
.color-6 {
  background: linear-gradient(90deg, #05214f 50%, #1a3e7a 50%);
  animation-delay: 0.8s;
} /* Using your navy brand color */

/* Static Rotations for variety */
.rotate-1 {
  transform: rotate(25deg);
}
.rotate-2 {
  transform: rotate(-15deg);
}
.rotate-3 {
  transform: rotate(45deg);
}
.rotate-4 {
  transform: rotate(-35deg);
}

/* Idle Floating Animation */
@keyframes float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -20px;
  }
}

/* Desktop Positions (Scattered around the center) */
.pos-1 {
  top: 20%;
  left: 15%;
}
.pos-2 {
  top: 75%;
  left: 20%;
}
.pos-3 {
  top: 25%;
  right: 15%;
}
.pos-4 {
  top: 70%;
  right: 20%;
}
.pos-5 {
  top: 15%;
  left: 50%;
}
.pos-6 {
  bottom: 15%;
  right: 45%;
}
.pos-7 {
  top: 10%;
  right: 30%;
}
.pos-8 {
  bottom: 20%;
  left: 35%;
}
.pos-9 {
  top: 40%;
  left: 8%;
}
.pos-10 {
  bottom: 30%;
  right: 10%;
}

/* --- REPLACED Mobile Responsiveness --- */
@media (max-width: 768px) {
  .hero-section {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
  }

  /* Zarma Title */
  .hero-title {
    font-family: "Riking", "Arial Black", Arial, sans-serif;
    letter-spacing: 2px;
    font-size: 8rem;
    line-height: 0;
    color: var(--primary-blue);
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
  }

  /* --- Capsule Styling --- */
  .capsule-wrapper {
    position: absolute;
    transition: transform 0.2s ease-out;
    z-index: 5;
  }

  .capsule {
    width: 100px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 4s infinite ease-in-out;
  }

  .capsule::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 2;
  }

  /* Capsule Colors */
  .color-1 {
    background: linear-gradient(90deg, #ff6b6b 50%, #ff8e8e 50%);
  }
  .color-2 {
    background: linear-gradient(90deg, #4d96ff 50%, #6babff 50%);
    animation-delay: 0.5s;
  }
  .color-3 {
    background: linear-gradient(90deg, #6bcb77 50%, #85d68f 50%);
    animation-delay: 1s;
  }
  .color-4 {
    background: linear-gradient(90deg, #ffd93d 50%, #ffe373 50%);
    animation-delay: 1.5s;
  }
  .color-5 {
    background: linear-gradient(90deg, #9d4edd 50%, #b874e8 50%);
    animation-delay: 0.2s;
  }
  .color-6 {
    background: linear-gradient(90deg, #05214f 50%, #1a3e7a 50%);
    animation-delay: 0.8s;
  }

  /* Static Rotations */
  .rotate-1 {
    transform: rotate(25deg);
  }
  .rotate-2 {
    transform: rotate(-15deg);
  }
  .rotate-3 {
    transform: rotate(45deg);
  }
  .rotate-4 {
    transform: rotate(-35deg);
  }

  /* Floating Animation */
  @keyframes float {
    0%,
    100% {
      margin-top: 0;
    }
    50% {
      margin-top: -20px;
    }
  }

  /* Desktop Positions */
  .pos-1 {
    top: 20%;
    left: 15%;
  }
  .pos-2 {
    top: 75%;
    left: 20%;
  }
  .pos-3 {
    top: 25%;
    right: 15%;
  }
  .pos-4 {
    top: 70%;
    right: 20%;
  }
  .pos-5 {
    top: 15%;
    left: 50%;
  }
  .pos-6 {
    bottom: 15%;
    right: 45%;
  }
  .pos-7 {
    top: 10%;
    right: 30%;
  }
  .pos-8 {
    bottom: 20%;
    left: 35%;
  }
  .pos-9 {
    top: 40%;
    left: 8%;
  }
  .pos-10 {
    bottom: 30%;
    right: 10%;
  }

  /* --- Mobile Responsiveness --- */
  @media (max-width: 768px) {
    .hero-section {
      justify-content: center;
      padding-left: 1rem;
      min-height: 40vh; /* Better for physics drops */
    }

    .hero-title {
      letter-spacing: 3px;
      font-size: 5rem;
      margin-bottom: 50px;
    }

    /* Reset wrappers so JS can calculate from Top-Left (0,0) perfectly */
    .capsule-wrapper {
      top: 0 !important;
      left: 0 !important;
      right: auto !important;
      bottom: auto !important;
      transition: none;
    }

    /* Reset inner capsules to match physics hitboxes perfectly */
    .capsule {
      width: 80px;
      height: 35px;
      animation: none !important;
      transform: none !important;
    }
  }
}

/* Core Section Styles */
.zarma-verification-section {
  background-color: #ffbf00; /* Rich Amber */
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  font-family:
    "Work Sans",
    -apple-system,
    sans-serif;
}

.verify-container {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* --- THE IN-BOX REVEAL MAGIC --- */
.clip-wrapper {
  overflow: hidden; /* This hides the text when it is pushed down */
  margin-bottom: 3rem;
  padding-bottom: 5px; /* Gives room for letters with tails like 'g' or 'p' */
}

.zarma-verification-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #111;
  font-family: "arial";
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0; /* Reset margin so it fits perfectly in the clip wrapper */
  transform: translateY(
    110%
  ); /* Pushes text down initially (fallback if JS fails) */
}

/* Verification Box Styling */
.verify-action-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0; /* Starts hidden for a simple fade-in */
}

.verify-action-box label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

/* Input Bar & Typewriter Elements */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f4f4f5;
  border: 2px solid #e4e4e7;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  transition: border-color 0.3s ease;
}

.input-wrapper:hover {
  border-color: #111;
}

#license-input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  color: #111;
  width: 100%;
}

#license-input::placeholder {
  color: #111;
}

.blinking-cursor {
  font-size: 1.5rem;
  color: #111;
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* --- Trusted Brands Strip --- */
.trusted-strip-section {
  padding: 12em 0;
  width: 100%;
  overflow: hidden;
  font-family: "Work Sans", -apple-system, sans-serif;
  
}

.strip-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Typography styling */
.trusted-headline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 2rem;
  margin: 0;
 
}

/* --- Infinite Marquee Setup --- */
.marquee-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  
  /* Blends the logos nicely into the edges */
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 7rem; /* Spacing between individual brand blocks */
  white-space: nowrap;
}

/* Individual Brand Image Constraints */
.brand-logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Clean standard native formatting for images (no nested loops) */
.brand-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale();
  opacity: .4;
  transition: filter 0.3s ease;
}



/* --- ANIMATION CONTROLS --- */

/* Right row movement setup */
.move-right .marquee-track {
  /* Using 35s here so 20 items flow beautifully at a natural pace */
  animation: scrollRight 60s linear infinite;
}

@keyframes scrollRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Pause animations if user hovers to look closer */
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .trusted-strip-section {
    padding: 4rem 0;
  }
  .marquee-track {
    gap: 4rem; 
  }
  .move-right .marquee-track {
    animation-duration: 22s; /* Balanced speed adjustment for mobile view */
  }
}


/* --- Ecosystem Grid Section --- */
.ecosystem-section {
  padding: 6rem 2rem;
  width: 100%;
  background: transparent;
  
}

.ecosystem-container {
  
  margin: 0 auto;
  width: 100%;
}

/* Outer framework boundary box */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* Cards touch boundaries perfectly */
  border-radius: 0px;
  overflow: hidden; /* Clips interior card corners to match frame */
  
 
  
}
.hrd{
    text-align: center;
    font-family: 'Riking';
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 2em;
}
/* Individual Card Blocks */
.ecosystem-card {
  background: transparent;
  
  /* Inner borders only on right and bottom to prevent double-thickness styling */

  
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: rgb(211, 211, 211) 1px solid;
    border-right: rgb(211, 211, 211) 1px solid;
    border-left: rgb(211, 211, 211) 1px solid;
    border-bottom: rgb(211, 211, 211) 1px solid;
    
  align-items: flex-start;
  min-height: 280px; 
  transition: background-color 0.25s ease;
}


/* Premium Light Blue Tint Hover State */
.ecosystem-card:hover {
  background-color: #e2efff; /* Ultra-smooth, light clean blue tint */
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.3px;
}

.card-description {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

/* Tag Wrapper & Micro-pill styling */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.tag-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333333;
  background-color: rgba(242, 242, 242, 0.886);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Accent pill swap matches background context */
.ecosystem-card:hover .tag-pill {
  background-color: #111111;
  color: #ffffff;
}

/* --- Responsive Layout Breaks --- */

/* Intermediate Tablet (Gracefully snaps into a 2x2 grid block) */
@media (max-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Media Query (Seamless one-column alignment stack) */
@media (max-width: 680px) {
  .ecosystem-section {
    padding: 10px;
    margin-bottom: 7em;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    
    
  }

  .ecosystem-card {
    border-top: rgb(211, 211, 211) 1px solid;
    border-right: rgb(211, 211, 211) 1px solid;
    border-left: rgb(211, 211, 211) 1px solid;
    min-height: auto;
    padding: 2rem 1.5rem;
    aspect-ratio: 1.6;
  }
  .ecosystem-card:nth-child(4){
    border-bottom: rgb(211, 211, 211) 1px solid;
  }
}

/* --- Conversion Section --- */
.conversion-section {
  padding: 8rem 2rem;
  width: 100%;
  background: transparent;
  font-family: 'Work Sans', -apple-system, sans-serif;
}

.conversion-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 4rem;
}

/* Left Column - Clean Native CSS Sticky holding */
.conversion-left {
  width: 40%;
  position: sticky;
  top: 120px; /* Sits perfectly below your sticky navbar */
}

.conversion-heading {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0;
}

/* Right Column Cards */
.conversion-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.step-card {
  background: transparent;
  border: 1.5px solid #e4e4e7;
  padding: 2.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Light blue tint micro-interaction on hover to match your design language */
.step-card:hover {
  border-color: var(--primary-blue);
  background-color: #f4f9ff; 
}

.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.step-card:hover .step-badge {
  background: var(--primary-blue);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
  letter-spacing: -0.5px;
}

.step-description {
  font-size: 1.05rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive Layout Breakpoints --- */

/* Tablet & Mobile Viewports */
@media (max-width: 992px) {
  .conversion-section {
    padding: 5rem 1.5rem;
  }

  .conversion-container {
    flex-direction: column;
    gap: 3rem;
  }

  .conversion-left {
    width: 100%;
    position: static; /* Unpins header on smaller screens */
  }

  .conversion-right {
    width: 100%;
    gap: 1.5rem;
  }
  
  .step-card {
    padding: 2rem 1.5rem;
  }
}

/* --- Credit Facility Section --- */
.credit-facility-section {
  
  padding: 8rem 2rem;
  width: 100%;
  overflow: hidden;
  font-family: 'Work Sans', -apple-system, sans-serif;
  color: #111111; 
}

.credit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5rem;
}

/* --- Left Side Text Content --- */
.credit-text-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: rgba(0, 0, 0, 0.07);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.credit-heading {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 2rem 0;
}

.credit-body {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
  color: rgba(17, 17, 17, 0.85);
}

/* Strict Platform Rule Box Component */
.credit-rule-box {
  background-color: #111111; 
  color: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rule-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.rule-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.rule-text strong {
  color: #0DF5E3; 
}

/* --- Right Side: High-Impact Typography Card --- */
.credit-visual-content {
  width: 45%;
  display: flex;
  justify-content: center;
}

.math-card {
  background: #ffffff;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 2rem;
  box-shadow: 12px 12px 0px var(--primary-blue); /* Neo-brutalist pop style shadows */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.math-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-badge {
  background-color: #111111;
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
}

/* Clean, Bold Layout for the 30% Display */
.credit-hero-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  text-align: center;
}

.huge-percentage {
  font-family: 'Riking', "Arial Black", Arial, sans-serif;
  font-size: 6.5rem;
  line-height: 0.9;
  color: var(--primary-blue);
  letter-spacing: -3px;
}

.huge-label {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary-blue);
  margin-top: 0.5rem;
}

.math-card-footer {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #555555;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid #111111;
}

/* --- Responsive Media Adjustments (Vertical Arrangement for Mobile/Tablet) --- */
@media (max-width: 992px) {
  .credit-facility-section {
    padding: 5rem 1.5rem;
  }

  .credit-container {
    flex-direction: column; 
    gap: 4rem;
  }

  .credit-text-content {
    width: 100%;
  }

  .credit-visual-content {
    width: 100%;
  }
  
  .math-card {
    max-width: 100%; 
    box-shadow: 8px 8px 0px #111111; 
  }
  
  .huge-percentage {
    font-size: 5.5rem;
  }
}
/* --- DR & IRR Redistribution Section --- */
.redistribution-section {
  padding: 8rem 2rem;
  width: 100%;
  background: transparent; /* No background color */
  font-family: 'Work Sans', -apple-system, sans-serif;
  overflow: hidden;
}

.redistribution-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Header Context Typography */
.redistribution-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: #f4f4f5;
  color: #111111;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: #111111;
  letter-spacing: -1px;
  margin: 0;
}

/* --- Twin Feature Cards Grid Layout --- */
.redistribution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* Direct contiguous border snap matching your pattern language */
  border-radius: 20px;
  overflow: hidden;
  border-top: 1.5px solid #e4e4e7;
  border-left: 1.5px solid #e4e4e7;
}

/* Individual Feature Block */
.redistribution-card {
  background: transparent;
  border-right: 1.5px solid #e4e4e7;
  border-bottom: 1.5px solid #e4e4e7;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 380px;
  transition: background-color 0.3s ease;
}

/* Interactive Brand Blue Tint On Hover */
.redistribution-card:hover {
  background-color: #f4f9ff;
}

.card-top {
  width: 100%;
}

/* Giant Tech Acronym Specifier */
.system-acronym {
  font-family: 'Riking', "Arial Black", Arial, sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #111111;
  margin-bottom: 1rem;
  opacity: 0.15; /* Subdued background stamp look */
  letter-spacing: -1px;
}

.system-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.5px;
}

.system-description {
  font-size: 1.05rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
}

/* --- Tag Pill Aggregators --- */
.system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
}

.sys-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555555;
  background-color: #f4f4f5;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.1px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* Highlight Pill Focal Points */
.pill-primary {
  background-color: #111111;
  color: #ffffff;
}

/* Color Inversion Changes on Core Container Hover States */
.redistribution-card:hover .sys-pill {
  background-color: #e2eeff;
  color: var(--primary-blue, #111111);
}

.redistribution-card:hover .pill-primary {
  background-color: var(--primary-blue, #111111);
  color: #ffffff;
}

/* --- Responsive Tablet & Mobile Breakpoints --- */
@media (max-width: 992px) {
  .redistribution-section {
    padding: 5rem 1.5rem;
  }
  
  .redistribution-container {
    gap: 3rem;
  }

  .redistribution-grid {
    grid-template-columns: 1fr; /* Snaps cleanly into a uniform vertical flow stack */
  }

  .redistribution-card {
    padding: 2.5rem 2rem;
    min-height: auto;
  }
  
  .system-acronym {
    font-size: 2.8rem;
  }
}

/* --- Mission Expiry Section --- */
.mission-expiry-section {
  padding: 8rem 2rem;
  width: 100%;
  background: transparent; /* No background color */
  font-family: 'Work Sans', -apple-system, sans-serif;
  overflow: hidden;
}

.expiry-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Header Text Blocks */
.expiry-header-block {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.manufacturer-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: #f4f4f5;
  color: #111111;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.expiry-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 0 0 1.5rem 0;
}

.expiry-body {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* --- Contiguous Stat Grid Framework --- */
.expiry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* Forces boundary card frames to touch */
  border-radius: 16px;
  overflow: hidden;
  border-top: 1.5px solid #e4e4e7;
  border-left: 1.5px solid #e4e4e7;
}

/* Individual Mini Stat Card */
.expiry-stat-card {
  background: transparent;
  border-right: 1.5px solid #e4e4e7;
  border-bottom: 1.5px solid #e4e4e7;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background-color 0.3s ease;
}

/* Premium Light Blue Tint Micro-interaction */
.expiry-stat-card:hover {
  background-color: #f4f9ff;
}

/* Icon Wrap Box Constraints */
.stat-icon-wrapper {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  transition: color 0.3s ease;
}

.stat-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

/* Swap Icon Color to Primary Brand Color on Hover Context */
.expiry-stat-card:hover .stat-icon-wrapper {
  color: var(--primary-blue, #111111);
}

/* --- Responsive Media Viewport Breaks --- */
@media (max-width: 992px) {
  .mission-expiry-section {
    padding: 5rem 1.5rem;
  }

  .expiry-container {
    gap: 3rem;
  }

  .expiry-grid {
    grid-template-columns: 1fr; /* Snaps safely to single-column list stack */
  }

  .expiry-stat-card {
    padding: 2.2rem 2rem;
    flex-direction: row; /* Aligns icon side-by-side with text labels on mobile screens */
    align-items: center;
    gap: 1.5rem;
  }
}

/* --- Doorstep Delivery Section --- */
.delivery-feature-section {
  padding: 8rem 2rem;
  width: 100%;
  background: transparent; /* Seamless transparent layout background formatting */
  font-family: 'Work Sans', -apple-system, sans-serif;
  overflow: hidden;
}

.delivery-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5rem;
}

/* --- Centered Header & Illustration Styling --- */
.delivery-header-block {
  text-align: center;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-illustration-container {
  width: 100%;
  max-width: 320px; /* Scaled perfectly for high-end digital line-art */
  height: auto;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-art {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.delivery-badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: #f4f4f5;
  color: #111111;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.delivery-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 0 0 1.2rem 0;
}

.delivery-body {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* --- Twin Column Grid Layout (No margins, touching boundaries) --- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; 
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border-top: 1.5px solid #e4e4e7;
  border-left: 1.5px solid #e4e4e7;
}

/* Individual Feature Block */
.delivery-card {
  background: transparent;
  border-right: 1.5px solid #e4e4e7;
  border-bottom: 1.5px solid #e4e4e7;
  padding: 3.5rem 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: background-color 0.3s ease;
}

/* Premium Light Blue Hover Context Tint */
.delivery-card:hover {
  background-color: #f4f9ff;
}

/* Icon Frame Customization */
.card-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.card-icon-box svg {
  width: 32px;
  height: 32px;
}

.card-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
  letter-spacing: -0.3px;
}

.card-feature-desc {
  font-size: 0.98rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Swap Icon Color to Primary Brand Color on Hover Profile Context */
.delivery-card:hover .card-icon-box {
  color: var(--primary-blue, #111111);
}

/* --- Responsive Smartphone & Mobile Viewport Breaks --- */
@media (max-width: 860px) {
  .delivery-feature-section {
    padding: 5rem 1.5rem;
  }

  .delivery-container {
    gap: 3.5rem;
  }

  .delivery-illustration-container {
    max-width: 260px; /* Scales down image asset cleanly on small phones */
    margin-bottom: 1.8rem;
  }

  .delivery-grid {
    grid-template-columns: 1fr; /* Snaps safely into uniform vertical stacked cards */
  }

  .delivery-card {
    padding: 2.5rem 2rem;
    gap: 1.5rem;
  }
}
.delivery-card:nth-child(2){
  
    background-color: lightseagreen;
}


/* --- Subscription/Plan Style Section --- */
.opportunities-section {
  padding: 8rem 2rem;
  width: 100%;
  background: transparent;
  font-family: 'Work Sans', -apple-system, sans-serif;
}

.opp-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Plan Grid Frame: No margins, perfectly contiguous */
.opp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border-top: 1.5px solid #e4e4e7;
  border-left: 1.5px solid #e4e4e7;
}

/* Premium Card Architecture */
.opp-card {
  background: #ffffff;
  border-right: 1.5px solid #e4e4e7;
  border-bottom: 1.5px solid #e4e4e7;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 650px; 
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease;
}

/* The Subtle Blue Hover Tint */
.opp-card:hover {
  background-color: #f4f9ff;
}

.opp-card-main {
  width: 100%;
}

/* Plan Badges */
.opp-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: #f4f4f5;
  color: #111111;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
}

.badge-dark { background-color: #111111; color: #ffffff; }
.badge-blue { background-color: var(--primary-blue, #004aef); color: #ffffff; }

/* Plan Headings */
.opp-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
  margin: 0 0 0.5rem 0;
}

/* Pricing Display Mimic */
.opp-price-display {
  font-size: 1.15rem;
  font-weight: 700;
  color: #71717a;
  margin-bottom: 3rem;
}

.text-blue {
  color: var(--primary-blue, #004aef);
}

/* SaaS Style Premium Feature Checklists */
.opp-premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.opp-premium-list li {
  font-size: 1.02rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
  position: relative;
  padding-left: 1.8rem;
}

/* Clean Custom Checkmark Bullets */
.opp-premium-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue, #004aef);
  font-weight: 700;
}

/* Bottom Actions and Footnotes */
.opp-action-block {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.opp-card-footnote {
  font-size: 0.88rem;
  font-weight: 500;
  color: #71717a;
  line-height: 1.4;
  margin: 0;
}

.color-dark { color: #111111; }

/* Subscription Style CTA Buttons */
.opp-cta-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1.5px solid #111111;
  background: transparent;
  color: #111111;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.opp-cta-btn:hover {
  background: #111111;
  color: #ffffff;
}

/* Solid Colored Button for Featured Cards */
.btn-primary {
  background: var(--primary-blue, #004aef);
  border-color: var(--primary-blue, #004aef);
  color: #ffffff;
}

.btn-primary:hover {
  background: #111111;
  border-color: #111111;
}

/* HIGHLIGHTED CARD OPTION (Optional: Adds subtle pop to Taluk) */
.featured-plan {
  box-shadow: inset 0 0 0 2px var(--primary-blue, #004aef);
  background-color: #fcfdfe;
}

/* --- Responsive Layout Shifts --- */
@media (max-width: 1200px) {
  .opp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opp-card {
    min-height: 580px;
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .opportunities-section {
    padding: 4rem 1.2rem;
  }
  
  .opp-grid {
    grid-template-columns: 1fr;
  }

  .opp-card {
    min-height: auto;
    padding: 2.5rem 1.5rem;
  }
  
  .opp-price-display {
    margin-bottom: 2rem;
  }
}


/* --- Clean Minimalist Green Product Catalog --- */
.catalog-section {
  background-color: #5ad182; /* Premium, clean soft sage green backdrop */
  padding: 9rem 0; 
  width: 100%;
  overflow: hidden;
  font-family: 'Work Sans', -apple-system, sans-serif;
}

.catalog-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;

}

/* Header Text Formatting */
.catalog-header-block {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #555c57; /* Subdued sage-tone text line */
  margin-bottom: 1rem;
}

.catalog-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
color: white;
  font-family: 'Riking';
  text-align: center;

  letter-spacing: 1px;
  margin: 0 auto; 
}

/* --- HORIZONTAL TRACK SCROLL AXIS WRAPPER --- */
.catalog-scroll-wrapper {
  display: flex;
  
  overflow-x: auto;
  overflow-y: hidden;
  background-color: white;
  gap: 1.5rem;
  border-radius: 30px;
  margin-left: 3em;
  margin-right: 3em; 
  padding: 5em;
 
  scrollbar-width: none; /* Hides default track elements for clean layout */
 
}

/* Hide scrollbar wrapper fields completely to keep interface purely modern and uncluttered */
.catalog-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* --- MINIMAL CATEGORY CARD ITEM BLOCK (True White, Crisp 5px Borders) --- */
.product-category-card {
  flex: 0 0 310px; 
  scroll-snap-align: start;
  background: #ffffff; /* Stark white interior container layout */
  border: 1px solid #111111; /* Clean 5px flat line frame borders */
  border-radius: 5px; /* Non-rounded minimalist edges */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-category-card:hover {
  transform: translateY(-4px); /* Micro modern translation on desktop hover */
}

/* Description Text Blocks Wrapper */
.category-info {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px; /* Spacious baseline balance */
}

.category-index {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a1a1aa;
  font-family: monospace;
  margin-bottom: 1rem;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111111;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.4px;
}

.category-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Minimalist Link Anchor */
.category-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
  border-bottom: 1.5px solid transparent;
  width: max-content;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-category-card:hover .category-link {
  border-bottom-color: #111111;
  transform: translateX(2px);
}

/* --- Responsive Smartphone Media Breakpoints --- */
@media (max-width: 768px) {
  .catalog-section {
    padding: 6rem 0;
  }
  .catalog-heading{
    font-size: 1.5em;
  }

  .catalog-container {
    gap: 3rem;
  }

  .catalog-header-block {
    padding: 0 1.5rem;
  }

 .catalog-scroll-wrapper {
  display: flex;
  
  overflow-x: auto;
  
  background-color: white;
  gap: 1rem;
  border-radius: 00px;
  margin-left: 0em;
  margin-right: 0em; 
  padding-bottom: 3em;
  padding-top: 3em;
  padding-left: 1.5em;
  padding-right: 1.5em;
 
  scrollbar-width: none; /* Hides default track elements for clean layout */
 
}

  .product-category-card {
    flex: 0 0 270px; 
  }
  
  .category-info {
    padding: 1.8rem 1.5rem;
    min-height: 250px;
  }
}


/* Base reset & fonts (Scoped strictly to this section) */
  .cold-chain-section {
    
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
   
    box-sizing: border-box;
    width: 100%;
  }

  .cold-chain-section *, .cold-chain-section *::before, .cold-chain-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* High-Visibility Animated Ice Card */
  .ice-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 80px 40px;
    border-radius: 28px;
    overflow: hidden;
    
    /* Increased visibility: Distinct frost-blue gradient fallback */
   
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Crisp, frosted structural borders */
  
  }

  /* --- Pure CSS Ice Flake Animation --- */
  .snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }

  .flake {
    position: absolute;
    top: -20px;
    color: rgba(0, 145, 255, 0.689); /* Subtle icy blue flakes */
    font-size: 24px;
    user-select: none;
    animation: fall linear infinite;
  }

  /* Varying speeds, sizes, and paths for realism */
  .f-1 { left: 10%; font-size: 28px; animation-duration: 8s; animation-delay: 0s; }
  .f-2 { left: 25%; font-size: 16px; animation-duration: 12s; animation-delay: 2s; opacity: 0.7; }
  .f-3 { left: 45%; font-size: 32px; animation-duration: 9s; animation-delay: 4s; }
  .f-4 { left: 60%; font-size: 20px; animation-duration: 11s; animation-delay: 1s; opacity: 0.8; }
  .f-5 { left: 75%; font-size: 24px; animation-duration: 7s; animation-delay: 5s; }
  .f-6 { left: 85%; font-size: 18px; animation-duration: 13s; animation-delay: 3s; }
  .f-7 { left: 95%; font-size: 26px; animation-duration: 10s; animation-delay: 0.5s; }

  @keyframes fall {
    0% {
      transform: translateY(0) translateX(0) rotate(0deg);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(450px) translateX(40px) rotate(360deg);
      opacity: 0;
    }
  }

  /* --- Content Styling (Minimal Center) --- */
  .card-content {
    position: relative;
    z-index: 2; /* Sits cleanly above the moving animation */
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .category-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    margin-bottom: 6px;
  }

  .tag-subtext {
    font-size: 14px;
    color: #475569;
    margin-bottom: 36px;
  }

  .main-headline {
    font-size: 4em;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .body-copy {
    font-size: 16px;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 48px;
  }

  /* --- Responsive Grid for Features --- */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    border-top: 1px solid rgba(14, 165, 233, 0.15);
    padding-top: 40px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .temp-badge {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    display: inline-block;
  }

  .feature-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
    max-width: 280px;
  }

  /* Responsive Mobile Layout */
  @media (max-width: 768px) {
    .cold-chain-section {
      padding: 40px 16px;
    }
    
    .ice-card {
      padding: 48px 20px;
      border-radius: 20px;
    }
    
    .main-headline {
      font-size: 28px;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-top: 32px;
    }
    
    @keyframes fall {
      100% {
        transform: translateY(550px) translateX(20px) rotate(360deg);
        opacity: 0;
      }
    }
  }

   .split-faq-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    padding: 100px 40px;
    background: transparent; /* No master section background color */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .split-faq-section *, 
  .split-faq-section *::before, 
  .split-faq-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .faq-workspace {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 0.8fr 2fr; /* Layout Split: Left Heading, Right List */
    gap: 80px;
    align-items: flex-start;
  }

  /* Left Column Sticky Wrapper */
  .faq-sticky-left {
    
    position: sticky;
    top: 60px;
  }

  .giant-faq-title {
    font-size: 130px;
    font-weight: 900;
    line-height: 0.85;
    color: #0f172a;
    letter-spacing: -6px;
    margin-bottom: 24px;
  }

  .faq-editorial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    max-width: 280px;
    text-transform: lowercase; /* Matches experimental aesthetic choices */
  }

  /* Right Column: Premium Curved Top Blue Section */
  .faq-curved-track {
    background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%); /* Vivid Blue shade container */
    border-radius: 140px 32px 40px 32px; /* Curved top configuration */
    padding: 90px 50px 70px 50px;
    box-shadow: 0 30px 60px -15px rgba(2, 132, 199, 0.25);
  }

  /* Spacing Configuration for internal Question Stack */
  .faq-items-stack {
    display: flex;
    flex-direction: column;
    gap: 28px; /* High space allotment between questions */
  }

  /* Row Block Component */
  .faq-row-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.08); /* Clean starting container tint */
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Dynamic Hover Rule: Highlight the entire part */
  .faq-row-item:hover {
    background: #ffffff; /* Bright full block switch */
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(12, 74, 110, 0.18);
  }

  /* Active Open state preservation */
  .faq-row-item[open] {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 24px rgba(12, 74, 110, 0.12);
  }

  /* Summary Layout Configurations */
  .faq-trigger-bar {
    padding: 32px; /* Substantial padding for lots of space look */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .faq-trigger-bar::-webkit-details-marker {
    display: none; /* Strip out Safari artifacts */
  }

  /* Text Case Rules */
  .question-text {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: #ffffff; /* Contrast on un-hovered blue card */
    text-transform: uppercase; /* STRICT UPPERCASE REQUIREMENT */
    transition: color 0.2s ease;
  }

  /* Invert font colors to deep charcoal during parent highlights */
  .faq-row-item:hover .question-text,
  .faq-row-item[open] .question-text {
    color: #0f172a;
  }

  /* Minimal Vector Status Indicators */
  .action-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .faq-row-item:hover .action-circle,
  .faq-row-item[open] .action-circle {
    background: #f0f9ff;
    color: #0284c7;
  }

  /* Cross rotation toggle behavior when active */
  .faq-row-item[open] .action-circle svg {
    transform: rotate(45deg);
  }

  /* Expanded Subpanel Content Area */
  .faq-expansion-panel {
    padding: 0 32px 36px 32px;
    max-width: 90%;
    animation: microFadeReveal 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .answer-text {
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
    text-transform: lowercase; /* STRICT LOWERCASE REQUIREMENT */
  }

  /* Clean entry animation for content reveal */
  @keyframes microFadeReveal {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Comprehensive Responsive Media Queries */
  @media (max-width: 1024px) {
    .faq-workspace {
      grid-template-columns: 1fr; /* Switch to stack alignment */
      gap: 48px;
    }

    .faq-sticky-left {
      position: static;
      text-align: center;
    }

    .giant-faq-title {
      font-size: 100px;
    }

    .faq-editorial-text {
      margin: 0 auto;
    }
    
    .faq-curved-track {
      border-radius: 80px 24px 32px 24px;
      padding: 60px 24px 40px 24px;
    }
  }

  @media (max-width: 768px) {
    .split-faq-section {
      padding: 60px 16px;
    }

    .giant-faq-title {
      font-size: 76px;
      letter-spacing: -3px;
    }

    .faq-trigger-bar {
      padding: 24px 20px;
      gap: 16px;
    }

    .question-text {
      font-size: 15px;
    }

    .faq-expansion-panel {
      padding: 0 20px 24px 20px;
      max-width: 100%;
    }

    .answer-text {
      font-size: 14px;
    }
  }

   .page-fill-cta-section {
    width: 100%;
    background: transparent; /* Allows curved background layer to render fluidly */
    box-sizing: border-box;
    margin-top: px; /* Pulls up slightly to override and overlay previous section clean */
  }

  .page-fill-cta-section *,
  .page-fill-cta-section *::before,
  .page-fill-cta-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Page-Filling White Container with Massive Top Curve */
  .curved-cta-container {
    width: 100%;
    min-height: 90vh; /* Fills up the viewport space generously */
    background-color: #ffffff; /* STRICT Requirement: Clean White Background */
    border-radius:400px 400px 0 0; /* Clear curved top border architecture */
    padding: 140px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.02); /* Subtle definition against previous block */
  }

  /* Centered Alignment Matrix */
  .cta-content-alignment {
    width: 100%;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Vertical Center Execution */
    text-align: center;
    gap: 54px; /* Generous breathing space between structural elements */
  }

  /* --- Element 1: Typography Stacks --- */
  .cta-typography-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Font Type 1: Slightly Bold, Long in Height (Condensed Structural) */
  .tall-bold-heading {
    font-family: 'Barlow Condensed', -apple-system, sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 0.95;
    color: #0f172a;
    letter-spacing: -0.5px;
  }

  /* Font Type 2: Big but with Less Weight (Airy, Minimalist Geometric) */
  .big-light-subheadline {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 24px;
    font-weight: 300; /* Extra light / thin appearance */
    line-height: 1.5;
    color: #475569;
    max-width: 720px;
    margin: 0 auto;
  }

  /* --- Element 2: Playstore Button Configuration --- */
  .cta-action-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .playstore-premium-btn {
    background: #000000;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
    img{
        height: 40px;
    }
  }

  .playstore-premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #000000;
  }

  .playstore-vector-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .btn-label-stack {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
  }

  .label-mini {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 1;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.7);
  }

  .label-brand {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.1;
  }

  /* --- Element 3: Trust Rating Subpanel --- */
  .cta-trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
  }

  .rating-flex-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .rating-score {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
  }

  .star-rating-row {
    display: flex;
    gap: 2px;
  }

  .gold-star {
    width: 20px;
    height: 20px;
    fill: #f59e0b;
  }

  .review-meta-text {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
  }

  /* --- Element 4: QR Module Duplication --- */
  .cta-qr-module {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
  }

  .qr-canvas-holder {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .qr-vector-graphic {
    width: 100%;
    height: 100%;
  }

  .qr-instruction-text {
    text-align: left;
  }

  .qr-main-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
  }

  .qr-sub-title {
    font-size: 12px;
    color: #64748b;
  }

  /* --- Comprehensive Responsive Refinement Engine --- */
  @media (max-width: 1024px) {
    .tall-bold-heading {
      font-size: 46px;
    }
    .big-light-subheadline {
      font-size: 20px;
    }
  }

  @media (max-width: 768px) {
    .curved-cta-container {
      border-radius: 60px 60px 0 0; /* Scale down the curve accent gracefully for portable devices */
      padding: 90px 20px;
    }

    .cta-content-alignment {
      gap: 40px;
    }

    .tall-bold-heading {
      font-size: 36px;
    }

    .big-light-subheadline {
      font-size: 17px;
    }

    .playstore-premium-btn {
      padding: 10px 22px;
    }

    .label-brand {
      font-size: 18px;
    }
  }

  /* Modern Standard Syntax (Firefox) */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) transparent;
}

/* WebKit-based Syntax (Chrome, Safari, Edge) */
html::-webkit-scrollbar {
  width: 6px;  /* Thin vertical line */
  height: 6px; /* Thin horizontal line */
}

/* CRITICAL: Completely hides the top and bottom arrow icons */
html::-webkit-scrollbar-button {
  display: none !important;
  width: 0px;
  height: 0px;
}

html::-webkit-scrollbar-track {
  background: transparent; /* Keeps the track transparent */
}

html::-webkit-scrollbar-thumb {
  background: var(--primary-blue); /* The actual scroll line is green */
  border-radius: 0 !important; /* Sharp square corners */
  border: none !important; /* No borders */
}

/* Optional: Slight shade change on hover for the line */
html::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue)
}