/* =========  Root & Resets  ========= */
:root {
  --brand-blue:     #507ec7;
  --brand-blue-dark:#193fa8;
  --brand-green:    #0e9a83;
  --brand-black:    #1a202c;
  --gray-900:       #1a202c;
  --gray-800:       #2d3748;
  --gray-700:       #4a5568;
  --gray-200:       #edf2f7;
  --gray-50:        #f7fafc;
  --bg-tint-blue:   #ebf4ff;
  --radius-sm:      .375rem;
  --radius-md:      .5rem;
  --shadow-sm:      0 2px 6px rgba(0,0,0,.06);
  --shadow-md:      0 4px 10px rgba(0,0,0,.08);
  --shadow-lg:      0 10px 18px rgba(0,0,0,.10);
}
.Navbar{

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

body {
  font-family: "Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  line-height:1.6;
  color:var(--gray-800);
  background:var(--gray-50);
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; }

/* =========  Helpers  ========= */

:root {
      --brand-blue-dark: #1e40af;
      --brand-blue-darker: #1e3a8a;
      --radius-sm: 6px;
      --spacing-lg: 4rem;
      --spacing-md: 2rem;
      --spacing-sm: 1rem;
    }

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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: #1f2937;
      background: #ffffff;
    }

    .container {
      max-width: 500px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Hero Section */
    .b2b-hero {
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      color: #fff;
      padding: 5rem 0;
      text-align: center;
    }

    .b2b-hero h4 {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 1rem;
      opacity: 0.95;
    }

    .b2b-hero h2 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Section Styles */
    section {
      padding: var(--spacing-lg) 0;
    }

    section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: var(--spacing-md);
      color: #111827;
    }

    section h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: var(--spacing-sm);
      color: #1f2937;
    }

    section p {
      font-size: 1.125rem;
      margin-bottom: var(--spacing-sm);
      color: #4b5563;
    }

    /* Why Section */
    .why-section {
      background: #f9fafb;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: var(--spacing-md);
    }

    .feature-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .feature-card h4 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--brand-blue-dark);
    }

    .feature-card p {
      font-size: 1rem;
      color: #6b7280;
    }

    /* Process Flow */
    .process-section {
      background: #fff;
    }

    .process-flow {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: var(--spacing-md);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .process-step {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem;
      background: #f9fafb;
      border-radius: 8px;
      border-left: 4px solid var(--brand-blue-dark);
    }

    .process-icon {
      font-size: 2rem;
    }

    .process-text {
      font-size: 1.125rem;
      font-weight: 500;
      color: #374151;
    }

    .process-arrow {
      text-align: center;
      font-size: 1.5rem;
      color: var(--brand-blue-dark);
    }

    /* Benefits Section */
    .benefits-section {
      background: #f9fafb;
    }

    .benefits-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: var(--spacing-md);
    }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}




.data-number, .data-suffix {
  display: inline;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
}

.data-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.data-card:hover {
  transform: translateY(-5px);
}

.benefit-item strong { color: var(--brand-blue-dark); font-size: 1.125rem; }

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.benefit-content {
  flex: 1;
}
    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
      color: #fff;
      text-align: center;
      padding: 4rem 0;
    }

    .cta-section h2 {
      color: #fff;
      margin-bottom: 1.5rem;
    }

    .cta-section p {
      color: rgba(255,255,255,0.9);
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }

    /* Button */
    .get-sample-btn {
      background: #fff;
      color: var(--brand-blue-dark);
      border: none;
      border-radius: var(--radius-sm);
      padding: 0.75rem 2rem;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.125rem;
      transition: transform 0.25s, box-shadow 0.25s;
      display: inline-block;
    }

    .get-sample-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .b2b-hero h2 {
        font-size: 1.75rem;
      }

      .b2b-hero h4 {
        font-size: 1rem;
      }

      section h2 {
        font-size: 1.5rem;
      }

      .feature-grid,
      .benefits-list {
        grid-template-columns: 1fr;
      }
    }
/* =========  Perfect B2B Hero Section  ========= */
.b2b-hero {
  background: linear-gradient(135deg, var(--bg-tint--blue) 0%, var(--gray-50) 100%);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem) clamp(4rem, 10vw, 8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.b2b-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(34, 84, 215, 0.1) 0%, transparent 60%);
  /* animation: slideLeftRight 12s ease-in-out infinite; */
  pointer-events: none;
}

.b2b-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(34, 84, 215, 0.08) 0%, transparent 50%);
  animation: slideRightLeft 15s ease-in-out infinite;
  pointer-events: none;
}

.b2b-hero .container {
  position: relative;
  z-index: 2;
  animation: slideInFromLeft 1s ease-out backwards;
}

.b2b-hero .container > * {
  animation: slideInFromLeft 1s ease-out backwards;
}

.b2b-hero .container > *:nth-child(1) { animation-delay: 0.4s; }
.b2b-hero .container > *:nth-child(2) { animation-delay: 0.5s; }
.b2b-hero .container > *:nth-child(3) { animation-delay: 0.7s; }
.b2b-hero .container > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideLeftRight {
  0%, 100% { 
    transform: translateX(-10%);
    opacity: 1;
  }
  50% { 
    transform: translateX(10%);
    opacity: 0.8;
  }
}

@keyframes slideRightLeft {
  0%, 100% { 
    transform: translateX(10%);
    opacity: 1;
  }
  50% { 
    transform: translateX(-10%);
    opacity: 0.9;
  }
}

@keyframes slideInFromLeft {
  from { 
    opacity: 0; 
    transform: translateX(-50px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}
/* =========  Perfect Container  ========= */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive container adjustments */
@media (min-width: 640px) {
  .container {
    width: 85%;
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 80%;
    padding: 0 32px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}

/* =========  Enhanced Hero Content Styling  ========= */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 400;
}

/* =========  Perfect Button Grid for Diagonal Flow  ========= */
.diagonal-button-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin: 4rem auto;
  max-width: 800px;
  perspective: 1000px;
}

.diagonal-button-grid .btn1:nth-child(1) {
  transform: rotate(-8deg) translateY(-20px) scale(0.95);
  animation: perfectSlideIn 1s ease 0.2s forwards;
}

.diagonal-button-grid .btn1:nth-child(2) {
  transform: rotate(3deg) translateY(10px) scale(0.95);
  animation: perfectSlideIn 1s ease 0.5s forwards;
}

.diagonal-button-grid .btn1:nth-child(3) {
  transform: rotate(-5deg) translateY(-15px) scale(0.95);
  animation: perfectSlideIn 1s ease 0.8s forwards;
}

/* =========  Perfect Button Styling  ========= */
.btn1 {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--gray-800);
  
  border: 2px solid transparent;
  border-radius: 12px;
  
  padding: 16px 32px;
  
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.5px;
  
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(34, 84, 215, 0.15);
  
  position: relative;
  overflow: hidden;
}

.btn1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.btn1:hover::before {
  left: 100%;
}

.btn1:hover {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue-dark);
  
  transform: rotate(0deg) translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(34, 84, 215, 0.3);
}

/* =========  Perfect Animations  ========= */
@keyframes perfectSlideIn {
  from {
    opacity: 0;
    transform: rotate(-20deg) translateY(100px) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: rotate(2deg) translateY(-10px) scale(1.05);
  }
  to {
    opacity: 1;
    transform: rotate(-3deg) translateY(0) scale(1);
  }
}

/* =========  Responsive Perfection  ========= */
@media (max-width: 1024px) {
  .b2b-hero {
    padding: 4rem 1.5rem 6rem;
  }
  
  .diagonal-button-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .b2b-hero {
    padding: 3rem 1rem 4rem;
  }
  
  .diagonal-button-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .diagonal-button-grid .btn1 {
    transform: rotate(-2deg) scale(1) !important;
    font-size: 20px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .btn1 {
    font-size: 18px;
    padding: 10px 20px;
  }
}
.text-center { text-align:center; }
.mb-6 { margin-bottom:1.5rem; }
.mb-12{ margin-bottom:3rem; }
.py-16{ padding-block:4rem; }

.bg-white   { background:#fff; }
.bg-gray-100{ background:var(--gray-50); }
.bg-blue-50 { background:var(--bg-tint-blue); }

/* =========  Typography  ========= */
h1, h2, h3, h4 {
  color:var(--gray-900);
  font-weight:700;
  margin-bottom:1rem;
}
h1 { font-size:2.5rem; }
h2 { font-size:2rem;   }
h3 { font-size:1.75rem;}
h4 { font-size:1.5rem; }

/* =========  Header  ========= */
/* header {
  position:sticky; top:0; z-index:50;
  background:#d2de30ae;
  box-shadow:var(--shadow-md);
  padding-block:1rem;
} */
/* header .container { display:flex; justify-content:space-between; align-items:center; } */

.logo {
  font-size:1.6rem;
  font-weight:700;
  color:var(--brand-blue);
  /* letter-spacing:.5px; */
  user-select:none;
}

nav a {
  /* margin-left:1.5rem; */
  color:var(--gray-700);
  text-decoration:none;
  font-weight:500;
  transition:color .25s;
}
nav a:hover { color:var(--brand-Yellow); }

.get-sample-btn {
  background: var(--brand-blue-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.25s, transform 0.25s;
}
.email-highlight {
  display: inline-block;
  /* padding: 12px 24px; */
  /* background: linear-gradient(135deg, #1e3a8a 0%, #767e8a 100%); */
  color: rgb(18, 224, 73);
  border-radius: 8px;
  font-weight: 600;
  /* transition: all 0.3s ease; */
}


/* .get-sample-btn:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-1px);
} */
.get-sample-btn:hover {
  background: color-mix(in srgb, var(--brand-blue-dark) 85%, black);
  transform: translateY(-1px);
} 
/* =========  Simple Button Boxes  ========= */
/* .btn1 {
  background: #ffffff;
  color: var(--gray-800);
  
  /* border: 2px solid var(--brand-blue);
  border-radius: var(--radius-sm); */
  /*
  padding: 12px 24px;
  
  font-weight: 500;
  font-size: 30px;
  
  cursor: pointer;
  /* display: inline-block; 
  text-decoration: none;
  text-align: center;
  
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
*/
/* .btn1:hover {
  background: var(--brand-blue-dark);
  color: #ffffff;
  border-color: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}*/ 
*/
.btn1 {
  background: #ffffff;
  color: var(--gray-800);
  padding: 12px 24px;
  font-weight: 500;
  font-size: 30px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  
  /* Diagonal positioning */
  display: inline-block;
  margin: 20px;
  position: relative;
  opacity: 0;
  
  /* Initial transformation */
  transform: rotate(-5deg) scale(0.8);
}

.btn1:hover {
  background: var(--brand-blue-dark);
  color: #ffffff;
  border-color: var(--brand-blue-dark);
  
  /* Hover transformations */
  transform: rotate(0deg) scale(1.1) translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* Diagonal Container */
/* .diagonal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
} */

/* Individual positioning for diagonal effect */
/* .diagonal-container .btn1:nth-child(1) {
  align-self: flex-start;
  transform: rotate(-8deg) scale(0.8) translateX(-50px);
  animation: diagonalSlideIn 0.8s ease 0.2s forwards;
}

.diagonal-container .btn1:nth-child(2) {
  align-self: center;
  transform: rotate(3deg) scale(0.8);
  animation: diagonalSlideIn 0.8s ease 0.5s forwards;
}

.diagonal-container .btn1:nth-child(3) {
  align-self: flex-end;
  transform: rotate(-6deg) scale(0.8) translateX(50px);
  animation: diagonalSlideIn 0.8s ease 0.8s forwards;
} */

/* Diagonal slide-in animation */
@keyframes diagonalSlideIn {
  from {
    opacity: 0;
    transform: rotate(-15deg) scale(0.6) translateY(100px);
  }
  50% {
    opacity: 1;
    transform: rotate(-2deg) scale(1.05) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: rotate(-3deg) scale(1) translateY(0);
  }
}

/* Alternative: Zigzag Flow */
.zigzag-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 60px 20px;
  align-items: center;
}

.zigzag-flow .btn1:nth-child(1) {
  justify-self: start;
  transform: rotate(-10deg) translateY(-30px);
  animation: zigzagEntry 1s ease 0.2s forwards;
}

.zigzag-flow .btn1:nth-child(2) {
  justify-self: center;
  transform: rotate(5deg) translateY(30px);
  animation: zigzagEntry 1s ease 0.5s forwards;
}

.zigzag-flow .btn1:nth-child(3) {
  justify-self: end;
  transform: rotate(-8deg) translateY(-20px);
  animation: zigzagEntry 1s ease 0.8s forwards;
}

@keyframes zigzagEntry {
  from {
    opacity: 0;
    transform: rotate(25deg) scale(0.3) translateY(150px);
  }
  60% {
    opacity: 1;
    transform: rotate(-5deg) scale(1.1) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: rotate(-3deg) scale(1) translateY(0);
  }
}


 /* Header Styles */
header {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

/* .logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 1001;
} */
 /* Option 1: Make white background transparent using mix-blend-mode */
.logo-img {
  width: 200px;
  height: 80px;
  border-radius: 6px;
  mix-blend-mode: multiply;
  /* This makes white pixels transparent while keeping colored pixels */
}

/* Option 2: If logo has pure white (#FFFFFF), use CSS filter */
.logo-img-filter {
  width: 200px;
  height: 80px;
  border-radius: 6px;
  background: transparent;
  margin-left: auto;
  /* Adjust brightness and contrast to remove white bg */
  /* filter: brightness(1.2) contrast(1.1); */
}

/* Option 3: Simple transparent background (if the image itself needs styling) */
.logo-img-simple {
  width: 200px;
  height: 80px;
  border-radius: 6px;
  background-color: transparent;
  object-fit: contain;
}

/* Option 4: Dark mode compatible version */
/* .logo-img-dark {
  width: 200px;
  height: 80px;
  border-radius: 6px;
  mix-blend-mode: multiply;
  background: transparent;
} */

/* For better results on your purple header background */
.logo-on-purple {
  width: 200px;
  height: 100px;
  border-radius: 30px;
  mix-blend-mode: white;
  margin-right: auto;
  margin-left: 0;
  left: 1rem;
  /* This blends well with colored backgrounds */
}


/* Desktop Navigation */
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
}

.get-sample-btn {
  background: rgb(32, 95, 203);
  color: #667eea;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.get-sample-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.95);
}
/* Header Styles with Custom Color */

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0;
  width: 100%;
  padding: 0 2rem;
}

/* Navigation Links */
header nav a {
  color: rgb(239, 227, 227);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

header nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transform: translateY(-2px);
}

/* Responsive container adjustments */
@media (min-width: 640px) {
  header .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  header .container {
    padding: 0 32px;
  }
}

@media (min-width: 1280px) {
  header .container {
    padding: 0 40px;
  }
}

/* Hamburger menu styling */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  header nav {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  header nav.active {
    right: 0;
  }
  
  header nav a {
    display: block;
    padding: 1rem;
    margin: 0.5rem 0;
    text-align: left;
  }
}
/* Hide mobile elements on desktop */
.hamburger {
  display: none;
}

.mobile-overlay {
  display: none;
}

.mobile-get-sample {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Hide desktop navigation and button */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav a {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    text-align: left;
    border-left: 3px solid transparent;
  }

  nav a:hover {
    background: rgba(255,255,255,0.15);
    border-left-color: white;
  }

  /* Mobile Overlay */
  .mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Show mobile get sample button, hide desktop */
  .desktop-get-sample {
    display: none;
  }

  .mobile-get-sample {
    display: block;
    margin-top: 1rem;
    text-align: center;
  }
}

/* =========  Primary & Outline Buttons  ========= */
.btn-primary,
.btn-outline {
  display:inline-block;
  border-radius:var(--radius-sm);
  font-weight:600;
  padding:.85rem 2rem;
  transition:all .25s;
  text-decoration:none;
  text-align:center;
  cursor:pointer;
  border:2px solid;
}
.btn-primary {
  background:var(--brand-blue); 
  color:#fff; 
  border-color:var(--brand-blue);
}
.btn-primary:hover {
  background:var(--brand-blue-dark); 
  border-color:var(--brand-blue-dark);
}
.btn-outline {
  background:#fff; 
  color:var(--brand-blue); 
  border-color:var(--brand-blue);
}
.btn-outline:hover {
  background:var(--brand-blue); 
  color:#fff;
  box-shadow:var(--shadow-sm);
}

/* =========  Grid Utilities  ========= */
.grid-cols-3, .grid-cols-2 {
  display:grid; gap:1.5rem;
}
.grid-cols-3 { grid-template-columns:repeat(3,1fr); }
.grid-cols-2 { grid-template-columns:repeat(2,1fr); }
@media (max-width:768px){
  .grid-cols-3, .grid-cols-2 { grid-template-columns:1fr; }
}

/* =========  Cards  ========= */
.card {
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  padding:1.5rem;
  transition:transform .25s, box-shadow .25s;
}
.card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

/* =========  Forms  ========= */
form {
  max-width:600px;
  margin:2rem auto;
}
form input,
form textarea {
  width:100%; padding:.75rem;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-sm);
  margin-bottom:1rem;
  font:inherit;
}
form button {
  width:100%;
  background:var(--brand-blue); color:#fff;
  border:none; border-radius:var(--radius-sm);
  padding:.75rem;
  font-weight:600; cursor:pointer;
  transition:background .25s;
}
form button:hover { background:var(--brand-blue-dark); }

/* =========  Back Button  ========= */
.back-btn {
  background:var(--brand-blue); color:#fff;
  border:none; border-radius:var(--radius-sm);
  padding:.5rem 1rem; font-size:.875rem;
  cursor:pointer; transition:background .25s;
}
.back-btn:hover { background:var(--brand-blue-dark); }

/* =========  Data Totals  ========= */
.data-totals { background:var(--bg-tint-blue); padding-block:4rem; }
.data-totals h2 { text-align:center; margin-bottom:2.5rem; }

.data-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:1.75rem; justify-items:center;
}
.data-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

.data-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px 20px ;
  text-align: center;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  transition: transform .2s, box-shadow .2s;
}

.data-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-lg); 
}

/* For mobile - stack vertically */
@media (max-width: 768px) {
  .data-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .data-card {
    max-width: 100%;
    width: 100%;
  }
}

.data-number { font-size:.5000 rem; font-weight:700; color:var(--brand-blue-dark); line-height:1; }
.data-label  { margin-top:.35rem; font-size:.8rem; font-weight:600;
               color:var(--gray-700); text-transform:uppercase; letter-spacing:.5px; }

/* =========  Premium B2B Hero  ========= */
/* .b2b-hero { 
  background:var(--gray-200); 
  padding:4rem 5rem; 
  text-align:center;
} */

.hero-title { font-size:2.6rem; margin-bottom:1rem; }
.hero-title span { color:var(--brand-black); }

.hero-sub { 
  font-size:1.15rem; 
  max-width:700px; 
  margin:0 auto 2.75rem; 
  color:var(--gray-700); 
}

.hero-badges {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:.75rem; margin-bottom:3rem;
}
.hero-badges span {
  background:#fff; color:var(--brand-blue); font-size:.8rem; font-weight:600;
  padding:.6rem 1.1rem; border-radius:20px; box-shadow:var(--shadow-sm);
  text-transform:uppercase; letter-spacing:.4px;
}

/* =========  Footer  ========= */
footer {
  background:var(--gray-900); color:#fff; padding:3rem 0;
}
footer a { color:var(--gray-200); text-decoration:none; transition:color .25s; }
footer a:hover { color:#fff; }
.footer-content {
  display:flex; flex-wrap:wrap; justify-content:space-between; row-gap:2rem;
}
.quick-links ul { list-style:none; margin-top:.5rem; }
.quick-links li { margin:.5rem 0; }

/* =========  Icons  ========= */
.icon { width:20px; height:20px; margin-right:8px; vertical-align:middle; }

/* =========  Premium B2B Hero Section - ONLY RESPONSIVE ADDITIONS  ========= */

/* Keep ALL existing styles exactly as they are */
/* Only add responsive breakpoints below */

/* =========  Responsive Design - Mobile First  ========= */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
  .b2b-hero {
    padding: 4rem 1.5rem 6rem;
  }
  
  .diagonal-button-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .diagonal-button-grid .btn1:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .b2b-hero {
    padding: 3rem 1rem 4rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
    margin-bottom: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    max-width: 500px;
    margin-bottom: 2.5rem;
  }
  
  .diagonal-button-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 3rem auto;
  }
  
  .diagonal-button-grid .btn1 {
    transform: rotate(-2deg) scale(1) !important;
    font-size: 20px;
    padding: 12px 24px;
  }
  
  .diagonal-button-grid .btn1:nth-child(3) {
    grid-column: 1;
  }
  
  .hero-badges {
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-badges span {
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
  }
  
  .zigzag-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .zigzag-flow .btn1 {
    align-self: center !important;
    justify-self: center !important;
    transform: rotate(-2deg) scale(1) !important;
  }
  
  .btn1 {
    font-size: 24px;
    padding: 10px 20px;
  }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  .b2b-hero {
    padding: 2.5rem 1rem 3.5rem;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    margin-bottom: 2rem;
  }
  
  .diagonal-button-grid {
    gap: 1rem;
    margin: 2.5rem auto;
  }
  
  .btn1 {
    font-size: 18px;
    padding: 10px 20px;
  }
  
  .hero-badges {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-badges span {
    font-size: 0.7rem;
    padding: 0.5rem 0.9rem;
  }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
  .b2b-hero {
    padding: 2rem 0.75rem 3rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn1 {
    padding: 10px 20px;
    font-size: 16px;
  }
  
  .hero-badges span {
    font-size: 0.65rem;
    padding: 0.45rem 0.8rem;
  }
}

/* Landscape mode adjustments for mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .b2b-hero {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    margin-bottom: 1.5rem;
  }
  
  .diagonal-button-grid {
    margin: 2rem auto;
    gap: 1rem;
  }
  
  .btn1 {
    padding: 10px 24px;
  }
}

/* Compliance Section Styles */
.compliance-section h4 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.25rem;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bbb-item  {
  height: 70px;
  max-width: 400px;
  border-radius: 10px;
  display: block;
  margin-bottom: 1.5rem;
}

.other-compliance {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.other-compliance img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s;
}

.other-compliance img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 480px) {
  .bbb-item img {
    max-width: 180px;
    height: 60px;
  }
  
  .other-compliance {
    gap: 0.75rem;
  }
  
  .other-compliance img {
    width: 50px;
    height: 50px;
  }
}