:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #e7eefb;
  background: #020814;
  --bg: #020814;
  --surface: rgba(15, 24, 54, 0.78);
  --surface-strong: rgba(10, 16, 34, 0.88);
  --border: rgba(255, 255, 255, 0.08);
  --muted: #9aa4c4;
  --primary: #5f74ff;
  --primary-soft: rgba(95, 116, 255, 0.18);
  --accent: #6e60ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(126, 95, 255, 0.24), transparent 24%),
    radial-gradient(circle at right center, rgba(17, 215, 255, 0.14), transparent 18%),
    /* linear-gradient(180deg, #04070f 0%, #050816 100%); */
}

img {
  max-width: 100%;
}

button,
input,
a {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(18px); /* Safari support */
  backdrop-filter: blur(18px);
  background: rgba(4, 7, 22, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}



.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 50px;
  width: auto;
}
/* .brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #5f74ff, #6e60ff);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
} */

.brand-title {
  display: block;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 400;
}

.brand-subtitle {
  display: block;
  /* color: var(--muted); */
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-align: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.primary-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3ea6ff, #b14cff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fffffe;
}

.primary-nav a.nav-cta::after {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5px 16px 10px;
  border: 1px solid #5f74ff;
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #3ea6ff, #b14cff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.40s ease;
  z-index: -1;
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  transform: scaleX(1);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: transparent;
  color: #ffffff;
}

.nav-cta.active {
  border-color: transparent;
  color: #ffffff;
}

.nav-cta.active::before {
  transform: scaleX(1);
}

@keyframes navCtaActive {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* .nav-cta.active::before {
  animation: navCtaActive 0.45s ease forwards;
} */

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ccd6f6;
  border-radius: 999px;
  position: absolute;
  left: 0;
}

.menu-toggle span:nth-child(1) {
  top: 0.4rem;
}

.menu-toggle span:nth-child(2) {
  top: 0.95rem;
}

.menu-toggle span:nth-child(3) {
  top: 1.5rem;
}

/* .hero {
  padding: 1px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
} */


.hero {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    background: linear-gradient(180deg,  #00030d 0%, #000615 50% , #000411 100%);}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("hero-logo.png") right center/65% no-repeat;
    opacity: 1;
    z-index: 0;
}

/* .hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3,7,20,0.98) 0%,
        rgba(3,7,20,0.92) 35%,
        rgba(3,7,20,0.6) 60%,
        rgba(3,7,20,0.15) 100%
    );

    z-index: 1;
} */

.hero .container {
    position: relative;
    z-index: 2;
    height: 550px;
    display: flex;
    align-items: center;

}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  display: inline-block;
  background: linear-gradient(45deg,  #b14cff, #3ea6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 0.95;
  /* letter-spacing: 0.04em; */
  margin: 0;
}

.hero h1 span {
  /* color: #5f74ff; */
  
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 34rem;
  margin: 1.5rem 0 2rem;
  color: #c8d1ff;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  color: #ffffff;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background: #ffffff0a;
}

.hero-visual {
  display: grid;
  place-items: center;
}







.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-shadow: 0 0 30px rgba(95, 116, 255, 0.55);
}

.icon-row {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.9rem;
}

.icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px); /* Safari support */
  backdrop-filter: blur(8px);
  color: #eaf0ff;
  font-size: 0.9rem;
}

.features,
.stats {
  padding: 3rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.section-label {
  color: #6f78ff;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  margin: 0;
  /* font-size: clamp(2rem, 2.5vw, 2.6rem); */
  font-size: 30px;
  line-height: 1.05;
  width: 350px;
}

.section-copy {
  max-width: 42rem;
  color: #aeb8ff;
  line-height: 1.75;
  margin-top: 0.55rem;
  width: 400px;
}

.feature-grid,
.product-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card {
  padding: 14px 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 1.25rem;
  /* background: linear-gradient(135deg, rgba(95, 116, 255, 0.18), rgba(110, 96, 255, 0.2)); */
  /* font-size: 1.4rem; */
}


.feature-card h3 {
  margin: 0 0 0.9rem;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  line-height: 1.8;
  color: #bac4e5;
  text-align: center;
  font-size: 12px;
}


/* .products {
  position: relative;
  overflow: hidden;
  background: #050b18;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(120,140,255,0.28) 0%,
      rgba(120,140,255,0.12) 20%,
      transparent 45%
    ),

    radial-gradient(
        circle at 85% 0%,
        rgba(190,90,255,0.15) 0%,
        transparent 30%
    );

  pointer-events: none;
}
.products h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin: 0;
    color: #ffffff;
    max-width: 500px;
}
.product-copy {
    color: #B7C4E0;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 450px;
}

.product-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.product-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.product-large {
  grid-column: span 2;
}

.product-preview {
  min-height: 240px;
  background: linear-gradient(135deg, #141a36 0%, #272f58 100%);
  position: relative;
}

.small-preview {
  min-height: 180px;
}

.product-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 20%, rgba(95, 116, 255, 0.16), transparent 18%),
    radial-gradient(circle at 75% 75%, rgba(0, 232, 255, 0.12), transparent 15%);
}

.product-content {
  padding: 1.7rem 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-content h3 {
  margin: 0;
  font-size: 1.25rem;
}

.product-content p {
  margin: 0;
  color: #b9c3ed;
  line-height: 1.75;
}

.link {
  margin-top: auto;
  color: #7e8cff;
  text-decoration: none;
  font-weight: 600;
} */

.products {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);

    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(100,120,255,.22) 0%,
            rgba(100,120,255,.08) 22%,
            transparent 48%
        ),
        radial-gradient(
            circle at 90% 0%,
            rgba(180,90,255,.12) 0%,
            transparent 35%
        ),
        #050b18;
}

.eyebrow2{
  display: inline-block;
  background: linear-gradient(45deg,  #b14cff, #3ea6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
}

.products-grids{
    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:24px;
    align-items:start;
}

/* .products-info{
     padding-right:40px;
} */

.products-info h2{
    font-size: 30px;
    line-height:1.1;
    margin:12px 0 28px;
    max-width:420px;
}

.product-copy{
    color:#B8C5E2;
    /* line-height:1.9; */
    font-size:15px;
    max-width:380px;
    margin-bottom:36px;
}

.products-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 26px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    color:white;
    text-decoration:none;
    background:rgba(255,255,255,.03);
}
.product-cards{
    background:rgba(11,20,40,.9);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
}
.product-preview{
    /* height:auto; */
    background:
        radial-gradient(circle at center,
            rgba(110,96,255,.35),
            transparent 60%),
        linear-gradient(180deg,#050b18,#081325);
}
.product-contents{
    padding:0px 20px 20px;
}

.product-contents h3{
  font-size:16px;
  margin:0 0 14px;
}

.product-contents p{
    color:#B8C5E2;
    /* line-height:1.7; */
    /* margin-bottom:18px; */
    font-size:14px;
}

.link {
  margin-top: auto;
  color: #7e8cff;
  text-decoration: none;
  font-weight: 600;
} 

/* .stats {
  margin-top: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-card span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.stat-card p {
  margin: 0;
  color: #b9c3ed;
}

.site-footer {
  padding: 3rem 0 2rem;
} */
.stats {
    padding: 20px 0;
}

.stats-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 36px;

    border-radius: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(8,15,35,0.98),
            rgba(5,11,24,0.98)
        );

    border: 1px solid rgba(255,255,255,0.05);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 10px 40px rgba(0,0,0,0.35);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}
.stat-icon img {
    width: 50px;
    height: 50px;
}
.stat-icon.blue {
    background:
        radial-gradient(
            circle,
            rgba(0,150,255,0.16) 0%,
            rgba(0,150,255,0.05) 55%,
            transparent 100%
        );
}

.stat-icon.purple {
    background:
        radial-gradient(
            circle,
            rgba(190,90,255,0.18) 0%,
            rgba(190,90,255,0.05) 55%,
            transparent 100%
        );
}
.divider {
    width: 1px;
    height: 64px;
    background: rgba(255,255,255,0.06);
}

.stat-content h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.stat-content p {
    margin: 8px 0 0;
    color: #AAB6D5;
    font-size: 1rem;
}
.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.03),
            rgba(255,255,255,0)
        );

    flex-shrink: 0;
}

.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
}

.footer-copy {
  max-width: 34rem;
  line-height: 1.8;
  color: #9da6cd;
  margin-top: 1rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #bac4e5;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-block p,
.contact-block a {
  margin: 0;
}

.footer-button {
  margin-top: 1rem;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding :20px;
  color: #6c76a7;
  font-size: 0.92rem;
}
.footer-2 {
  font-size: 12px;
  margin-top: 1rem;
}
.footer-2 p {
  margin: 20px 0 0;
  text-align: center;
  color: #6c76a7;
  font-size: 12px;
}
.footer-2 .footer-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-meta {
  display: flex;
  gap: 1rem;
}

.footer-meta a {
  color: #6c76a7;
  text-decoration: none;
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(180deg, #030714 0%, #030a1b 50%, #030714 100%);  
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("about-logo.png") right center/55% no-repeat;
    opacity: 1;
    z-index: 0;
}
.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3,7,20,0.98) 0%,
        rgba(3,7,20,0.92) 35%,
        rgba(3,7,20,0.6) 60%,
        rgba(3,7,20,0.15) 100%
    );

    z-index: 1;
}
.about-hero .container {
  position: relative;
  z-index: 2;
  height: 500px;
  display: flex;
  align-items: center;
}

/* Mission & Vision Section */
/* .mv-layout{
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    gap:4rem;
    align-items:center;
} */
.mission-vision {
  padding: 25px 90px;
  position: relative;
  overflow: hidden;
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:4rem;
  align-items:center;
}

.mission-vision .container {
  position: relative;
  z-index: 1;
}

.mv-separator {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5f74ff, transparent);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 30px;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  max-width: 500px;
}

.section-description {
  font-size: 15px;
  line-height: 1.8;
  color: #aeb8ff;
  max-width: 450px;
  margin-bottom: 1.5rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, background 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
}

.mv-icon img{
  width: 60px;
  height: 60px;
  padding-bottom: 1rem;
}

.mv-card h3 {
  font-size: 20px;
  margin: 0 0 0.7rem;
  color: #ffffff;
}

.mv-card p {
  margin: 0;
  font-size: 15px;
  color: #bac4e5;
  line-height: 1.8;
}

/* Values Section */
.values {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(5, 11, 24, 0.5) 0%,
    rgba(8, 15, 35, 0.3) 100%
  );
}

/* .values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(95, 116, 255, 0.12),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
} */

.values .container {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.8rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: #bac4e5;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Journey Section */
/* .journey {
  padding: 4rem 0;
}

.journey .container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(95, 116, 255, 0.5),
    transparent
  );
  transform: translateX(-1px);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
  left: calc(50% - 100px);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: calc(50% + 32px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 0;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  width: 100px;
  top: 0;
  z-index: 2;
}

.timeline-year {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.timeline-content {
  position: relative;
  padding: 1.5rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
}

.timeline-content h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  color: #ffffff;
}

.timeline-content p {
  margin: 0;
  color: #bac4e5;
  line-height: 1.7;
} */
/* =========================
   JOURNEY SECTION
========================= */

.journey {
    padding: 30px 0;
    background: radial-gradient(circle at center, #071426 0%, #020814 100%);
    overflow: hidden;
}

.journey .section-label {
    text-align: center;
    color: #a855f7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* .journey .section-title {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 90px;
} */

/* Timeline Container */
.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Horizontal Line */
.timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8%;
    width: 84%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #a855f7,
        #7c3aed,
        #4f46e5,
        #2563eb,
        #06b6d4
    );
    border-radius: 50px;
    z-index: 1;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 2;
}

/* Circle Marker */
.timeline-marker {
    width: 80px;
    height: 80px;
    margin: 0 auto 35px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.95);
    border: 2px solid rgba(168, 85, 247, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 20px rgba(168,85,247,0.25),
        inset 0 0 15px rgba(168,85,247,0.1);
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    backdrop-filter: blur(15px);
    transition: 0.4s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 0 35px rgba(168,85,247,0.45),
        0 0 60px rgba(37,99,235,0.25);
}
.timeline-marker img {
    width: 50px;
    height: 50px;
}
.timeline-year {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.timeline-year.blue {
    color: #3ea6ff;
}
.timeline-year.purple {
    color: #b14cff;
}
/* Content Card */
.timeline-content {
    padding: 25px;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    backdrop-filter: blur(15px);
    transition: 0.4s ease;
    min-height: 220px;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px);
    border-color: rgba(168,85,247,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.timeline-content h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}

.timeline-content p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.8;
}


/* Why Choose Section */
.why-choose {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* .why-choose::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at 100% 50%,
    rgba(110, 96, 255, 0.2),
    transparent 60%
  );
  pointer-events: none;
} */

.why-choose-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-copy h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 1rem 0 2rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  padding: 0.8rem 0;
  color: #bac4e5;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3ea6ff;
  font-weight: bold;
  font-size: 1.2rem;
}

.stat-box {
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
}

.stat-box h3 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.stat-box p {
  margin: 0;
  color: #bac4e5;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(95, 116, 255, 0.15),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  color: #aeb8ff;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Styles */
.site-footer {
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(5, 11, 24, 0.5) 0%,
    rgba(2, 8, 20, 1) 100%
  );
}

.footer-content {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 1rem;
  margin: 0 0 1.2rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-section p {
  margin: 0 0 0.8rem;
  color: #bac4e5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section a {
  color: #bac4e5;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #6c76a7;
  font-size: 0.9rem;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 1.5rem;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero{
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: linear-gradient(180deg, #00010e 0%, #00010e 50%, #00010e 100%);
  padding: 4rem 0;
}
.contact-hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background: url("get-in-touch-logo.png") right center/55% no-repeat;
    opacity: 1;
    z-index: 0;
}
.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3,7,20,0.98) 0%,
        rgba(3,7,20,0.92) 35%,
        rgba(3,7,20,0.6) 60%,
        rgba(3,7,20,0.15) 100%
    );

    z-index: 1;
}
.contact-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 380px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-hero-copy {
  max-width: 600px;
}

.contact-hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.contact-hero-copy h1 span {
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero-copy p {
  font-size: 1.1rem;
  color: #c8d1ff;
  line-height: 1.8;
  margin: 0 0 2rem;
}

/* .contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.benefit-icon {
  font-size: 1.5rem;
} */
.contact-benefits {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.benefit-item:last-child {
    border-right: none;
    padding-right: 0;
}

.benefit-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text {
    font-size: 12px;
    color: #c8d1ff;
    /* font-weight: 400; */
    white-space: nowrap;
}

/* @media (max-width: 768px) {
    .contact-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .benefit-item {
        border-right: none;
        padding-right: 0;
    }
} */
.contact-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
}
.terms-hero {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    background: linear-gradient(180deg, #000612 0%, #010811 50%, #010811 100%);  
    padding: 4rem 0;
}
.terms-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 350px;
}
.terms-hero .container h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}
.terms-hero .container h1 span {
    background: linear-gradient(45deg, #3ea6ff, #b14cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.terms-hero .container p {
    font-size: 1.1rem;
    color: #c8d1ff;
    line-height: 1.8;
    margin: 0 0 2rem;
    max-width: 600px;
}
.terms-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("tearms-logo.png") right center/65% no-repeat;
    opacity: 1;
    z-index: 0;
}


/* ===== CAREERS PAGE STYLES ===== */

.careers-hero{
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: linear-gradient(180deg, #00010e 0%, #00010e 50%, #00010e 100%);
  padding: 0;
}
.careers-hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background: url("careers-logo.png") right center/65% no-repeat;
    opacity: 1;
    z-index: 0;
}
.careers-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3,7,20,0.98) 0%,
        rgba(3,7,20,0.92) 35%,
        rgba(3,7,20,0.6) 60%,
        rgba(3,7,20,0.15) 100%
    );

    z-index: 1;
}
.careers-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.careers-hero-copy {
  max-width: 600px;
}

.careers-hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.careers-hero-copy h1 span {
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.careers-hero-copy p {
  font-size: 1.1rem;
  color: #c8d1ff;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.work {
    padding: 30px 0;
    background: radial-gradient(circle at center, #071426 0%, #020814 100%);
    overflow: hidden;
}

.work .work-label p {
    text-align: center;
    color: #a855f7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.work .work-label h2{
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 15px;
}
.work .work-copy p{
    text-align: center;
    color: #aeb8ff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    margin-bottom: 15px;
}
.work-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 36px;

    border-radius: 18px;

    /* background: */
        /* linear-gradient(
            90deg,
            rgba(8,15,35,0.98),
            rgba(5,11,24,0.98)
        ); */

    /* border: 1px solid rgba(255,255,255,0.05); */

    /* box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 10px 40px rgba(0,0,0,0.35); */
}

.work-content h3 {
  text-align: center;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: white;
  line-height: 1;
}
.work-content p {
  text-align: center;
  margin: 8px 0 0;
  color: #AAB6D5;
  font-size: 12px;
}
.divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.06);
}

.careers-section{
    width:90%;
    max-width:1400px;
    margin:80px auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.jobs-container,
.benefits-card{
    background:linear-gradient(
        135deg,
        rgba(8,18,45,.95),
        rgba(3,10,25,.95)
    );

    border:1px solid rgba(138,92,255,.18);
    border-radius:20px;
    padding:30px;
    -webkit-backdrop-filter:blur(15px);
    backdrop-filter:blur(15px);
}

.careers-title{
    color:#b84cff;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.jobs-container h2{
  font-size:25px;
  margin-bottom:15px;
}

.job-card{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 24px;
    margin-bottom:18px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;

    background:rgba(255,255,255,.02);

    transition:.3s;
}

.job-card:hover{
    transform:translateY(-4px);
    border-color:#8a5cff;
    box-shadow:0 0 25px rgba(138,92,255,.2);
}

.job-info h3{
  margin-top : 0;
  font-size:15px;
  font-weight:500;
  margin-bottom:12px;
}

.job-info h3 span{
    background:#8a5cff2f;
    color: #c9b5fdbd;

    font-size:12px;
    padding:5px 10px;
    border-radius:30px;
    margin-left:12px;
}

.job-meta{
    display:flex;
    gap:25px;
    color:#9ca3af;
    font-size:14px;
}

.job-card button{
    background:transparent;
    color:white;

    border:1px solid #8a5cff;
    border-radius:10px;

    padding:6px 12px;
    cursor:pointer;

    transition:.3s;
}

.job-card button:hover{
    background:linear-gradient(
        90deg,
        #6f54ff,
        #b84cff
    );

    box-shadow:0 0 20px rgba(138,92,255,.5);
}

.view-all{
    display:inline-block;
    margin-top:20px;
    text-decoration:none;
    color:#b84cff;
    font-weight:600;
}

.benefits-card{
    position:relative;
}

.perk{
    display:flex;
    gap:20px;
    align-items:flex-start;

    margin-bottom:35px;
    color:#d0d7e2;
    line-height:1.7;
}

.icon{
    width:52px;
    height:52px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:1px solid #8a5cff;
    border-radius:50%;

    color:#b84cff;
    font-size:24px;

    box-shadow:0 0 20px rgba(138,92,255,.25);
}

/* ------------- BLOG PAGE ------------- */

.blog-hero{
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: linear-gradient(180deg, #00010e 0%, #00010e 50%, #00010e 100%);
  padding: 0;
}
.blog-hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background: url("blog-logo.png") right center/70% no-repeat;
    opacity: 1;
    z-index: 0;
}
.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3,7,20,0.98) 0%,
        rgba(3,7,20,0.92) 35%,
        rgba(3,7,20,0.6) 60%,
        rgba(3,7,20,0.15) 100%
    );

    z-index: 1;
}
.blog-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 350px;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.blog-hero-copy {
  max-width: 600px;
}

.blog-hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.blog-hero-copy h1 span {
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-hero-copy p {
  font-size: 1.1rem;
  color: #c8d1ff;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.blog-section{
    padding:50px;
}

.blog-container{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}



.top-bar{
    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
}

.filters{
    display:flex;
    gap:15px;
    padding: 10px 15px;
}


select,input{
    background:#09142a;
    border:1px solid #1e293b;
    color:white;
    padding:12px;
    border-radius:10px;
}
select:hover{
    border-color:#7c3aed;
    box-shadow:0 0 25px rgba(124,58,237,.4);
}
input:hover{
    border-color:#7c3aed;
    box-shadow:0 0 25px rgba(124,58,237,.4);
}

/* select:focus,
input:focus { */
  /* outline: none;
  background: rgba(255, 255, 255, 0.08); */
  /* border-color: rgba(62, 166, 255, 0.3);
} */
.blog-card{
    display:flex;
    gap:20px;
    background:linear-gradient(135deg,#081325,#0f172a);
    border:1px solid #1e293b;
    border-radius:20px;
    padding:20px;
    margin-bottom:25px;
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
    border-color:#7c3aed;
    box-shadow:0 0 25px rgba(124,58,237,.4);
}

.blog-card img{
    width:240px;
    height:240px;
    object-fit:cover;
    border-radius:15px;
}

.tag{
    color:#b388ff;
    border:1px solid #7c3aed;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
}

.content h3{
    margin:15px 0;
    font-size:28px;
}

.content p{
    color:#94a3b8;
    line-height:1.7;
}

.meta{
    margin-top:20px;
    display:flex;
    gap:20px;
    align-items:center;
}

.meta a{
    color:#3b82f6;
    text-decoration:none;
}

.side-card,
.newsletter{
    background:#081325;
    border:1px solid #1e293b;
    border-radius:20px;
    padding:25px;
    margin-bottom:25px;
}

.side-card ul{
    list-style:none;
}

.side-card li{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #1e293b;
}

.newsletter button{
    width:100%;
    margin-top:15px;
    padding:14px;
    border:none;
    border-radius:12px;
    background:linear-gradient(90deg,#7c3aed,#3b82f6);
    color:white;
    font-size:16px;
    cursor:pointer;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}


/* ---------- Solutions page --------- */
.solutions-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    /* background: linear-gradient(180deg,  #00030d 0%, #000615 50% , #000411 100%); */
}

.solutions-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("solutions-logo.png") right center/50% no-repeat;
    opacity: 1;
    z-index: 0;
}

.solutions-hero .container {
    position: relative;
    z-index: 2;
    height: 500px;
    display: flex;
    align-items: center;

}

.solutions-hero-copy {
  max-width: 550px;
}

/* .eyebrow {
  display: inline-block;
  background: linear-gradient(45deg,  #b14cff, #3ea6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 1.4rem;
  font-weight: 700;
} */

.solutions-hero h1 {
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 0.95;
  /* letter-spacing: 0.04em; */
  margin: 0;
}

.solutions-hero h1 span {
  /* color: #5f74ff; */
  
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solutions-hero p {
  max-width: 34rem;
  margin: 1.5rem 0 2rem;
  color: #c8d1ff;
  line-height: 1.8;
}

.solutions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  
}


.feature-grid2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1.5rem;
}


/* ==========================
   SOLUTION CARDS
========================== */

.solution-grids{
    display:grid;
    /* grid-template-columns:repeat(4,1fr); */
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap:30px;
    align-items:start;
}
.solution-cards{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:20px 18px;
    /* min-width:150px; */
}

/* Dashed line */

.solution-cards:not(:last-child)::after{
    content:"";
    position:absolute;
    top:20px;
    left:70%;
    width:110%;
    border-top:1px dashed rgba(255,255,255,.12);
}

/* Number */

.solution-cards::before{
    content:attr(data-step);
    position:absolute;
    top:0;
    width:32px;
    height:32px;
    border-radius:50%;
    background:linear-gradient(135deg,#8d4bff,#6b5cff);
    color:#fff;
    font-size:13px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3;
}

/* Icon Circle */

.solution-preview{
    width:76px;
    height:76px;
    margin-top:28px;
    margin-bottom:22px;
    border-radius:50%;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(135,98,255,.35);

    background:
    radial-gradient(circle at top,
    rgba(140,75,255,.12),
    rgba(255,255,255,0) 70%);
}


/* Inner glow */

.solution-preview::before{
    content:"";
    position:absolute;
    width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid rgba(150,110,255,.15);
}

/* Placeholder Icon */

/* .solution-preview::after{
    content:"✦";
    font-size:28px;
    color:#8b5dff;
    z-index:2;
} */

.solution-img {
    width:50px;
    height:50px;
    object-fit:contain;
    z-index:2;
}

/* Text */

.solution-contents h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:14px;
}

.solution-contents p{
    color:#b4bdd4;
    font-size:15px;
    line-height:1.75;
    max-width:220px;
}

/* Hover */

.solution-cards:hover .solution-preview{
    border-color:#8d4bff;
    transform:translateY(-5px);
    transition:.35s;
    box-shadow:0 0 30px rgba(124,84,255,.15);
}

.solution-cards:hover .solution-preview::after{
    transform:scale(1.1);
    transition:.35s;
}





@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin: 0 0 2rem;
  color: #ffffff;
}

.info-block {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-block:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.info-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.info-block p {
  margin: 0.3rem 0;
  color: #bac4e5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-block a {
  color: #7e8cff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: #b14cff;
}

.info-hours {
  font-size: 0.85rem;
  color: #9aa4c4;
  margin-top: 0.5rem;
}

.info-block.social {
  border-bottom: none;
  flex-direction: column;
  margin-bottom: 0;
  padding-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #7e8cff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(62, 166, 255, 0.1);
  border-color: rgba(62, 166, 255, 0.3);
  color: #3ea6ff;
}

/* Contact Form */
.contact-form-wrapper {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.contact-form-wrapper h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.form-description {
  margin: 0 0 1.5rem;
  color: #bac4e5;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: #c8d1ff;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(62, 166, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(62, 166, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6c76a7;
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.char-count {
  margin-top: 0.5rem;
  text-align: right;
  font-size: 0.85rem;
  color: #9aa4c4;
}

.form-group input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  accent-color: #3ea6ff;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checkbox-label {
  color: #bac4e5;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: #7e8cff;
  text-decoration: none;
}

.checkbox-label a:hover {
  color: #b14cff;
  text-decoration: underline;
}

.privacy-notice {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(62, 166, 255, 0.08);
  border: 1px solid rgba(62, 166, 255, 0.2);
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* .privacy-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
} */

.privacy-notice p {
  margin: 0;
  color: #aeb8ff;
  font-size: 0.85rem;
  line-height: 1.5;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn .arrow {
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn:hover .arrow {
  transform: translateX(4px);
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  position: relative;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.map-container {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.map-iframe {
  border: 0;
  border-radius: 16px;
  filter: invert(0.9) hue-rotate(180deg);
}

.map-info {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.map-location h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.map-location p {
  margin: 0 0 1rem;
  color: #bac4e5;
  font-size: 0.95rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7e8cff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: #b14cff;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  position: relative;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-item {
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
}

.faq-item h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  color: #bac4e5;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    height: 300px;
  }

  .contact-globe {
    font-size: 10rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .contact-hero .container {
    min-height: auto;
  }

  .contact-hero-copy h1 {
    font-size: 2rem;
  }

  .contact-benefits {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1;
    min-width: 200px;
  }

  .contact-globe {
    font-size: 8rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .map-section h2,
  .faq-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 560px) {
  .contact-hero-visual {
    height: 250px;
  }

  .contact-globe {
    font-size: 6rem;
  }

  .contact-info h2,
  .contact-form-wrapper h2 {
    font-size: 1.3rem;
  }

  .info-block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

/* Responsive Styles for About Page */
@media (max-width: 980px) {
  .mv-grid,
  .values-grid,
  .why-choose-content {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    left: 0;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
    padding-left: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
}

@media (max-width: 780px) {
  .mv-grid,
  .values-grid,
  .why-choose-content,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-bottom .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 560px) {
  .mv-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .why-list li {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .product-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .product-large {
    grid-column: auto;
  }

  .section-heading {
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .hero-grid,
  .product-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .product-large {
    grid-column: auto;
  }

  .section-heading {
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    inset: auto 1rem 0;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-top: 0.8rem;
    background: rgba(4, 7, 22, 0.96);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(18px); /* Safari support */
    backdrop-filter: blur(20px);
  }

  .primary-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

  .feature-card,
  .product-cards,
  .stat-card,
  .footer-links {
    border-radius: 22px;
  }
  
}


@media (max-width: 560px) {
  .hero-copy,
  .hero-visual {
    width: 100%;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== PRODUCTS PAGE STYLES ===== */

/* Breadcrumb Navigation */
.breadcrumb-section {
  padding: 1rem 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
  background: rgba(5, 11, 24, 0.3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #7e8cff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #b14cff;
}

.breadcrumb .separator {
  color: #6c76a7;
}

.breadcrumb .current {
  color: #c8d1ff;
  font-weight: 500;
}

/* Products Hero Section */
.products-hero {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,rgba(5, 11, 24, 0.3) 0%, rgba(5, 11, 24, 0.3) 50%, rgba(5, 11, 24, 0.3) 100%);
}
.products-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("products-logo.png") right center/65% no-repeat;
    opacity: 1;
    z-index: 0;
}



.products-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3,7,20,0.98) 0%,
        rgba(3,7,20,0.92) 35%,
        rgba(3,7,20,0.6) 60%,
        rgba(3,7,20,0.15) 100%
    );

    z-index: 1;
}
.products-hero .container {
  position: relative;
  z-index: 2;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 300px;
}

.products-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
  color: #ffffff;
}

.products-hero-copy p {
  font-size: 1.1rem;
  color: #c8d1ff;
  line-height: 1.8;
  margin: 0;
  max-width: 500px;
}

.products-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.hero-icon {
  font-size: 12rem;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

/* Filter Section */
.products-filter-section {
  padding: 24px 0;
  /* sticky: top; */
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(2, 8, 20, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-tabs-container {
  flex: 1;
  overflow: hidden;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow-x: hidden;
  padding-bottom: 0;
}

.filter-arrow {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  color: #bac4e5;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.filter-arrow:hover {
  border-color: rgba(62, 166, 255, 0.3);
  color: #ffffff;
  background: rgba(62, 166, 255, 0.1);
}

.filter-arrow:active {
  transform: scale(0.95);
}

.filter-tab {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: transparent;
  color: #bac4e5;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-tab:hover {
  border-color: rgba(62, 166, 255, 0.3);
  color: #ffffff;
}

.filter-tab.active {
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  border-color: transparent;
  color: #ffffff;
}

.filter-search {
  margin-left: auto;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 150px;
}

.filter-search::placeholder {
  color: #6c76a7;
}

.filter-search:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(62, 166, 255, 0.3);
}

/* Products Section */
.products-section {
  padding: 3rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 1;
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(62, 166, 255, 0.3);
  box-shadow: 0 20px 50px rgba(62, 166, 255, 0.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 4px 12px;
  background: linear-gradient(45deg, #3ea6ff, #b14cff);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #141a36 0%, #272f58 100%);
  overflow: hidden;
  position: relative;
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(95, 116, 255, 0.1),
    transparent 70%
  );
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
}

.product-category {
  margin: 0 0 1rem;
  color: #7e8cff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-description {
  margin: 0 0 1rem;
  color: #bac4e5;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7e8cff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.product-link:hover {
  color: #b14cff;
  transform: translateX(4px);
}

/* Custom Solution CTA */
/* .custom-solution-cta {
  padding: 3rem 0;
  position: relative;
  margin-top: 2rem;
}

.cta-content {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(95, 116, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.cta-content > * {
  position: relative;
  z-index: 1;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.cta-content h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.cta-content p {
  font-size: 1.05rem;
  color: #aeb8ff;
  margin: 0 0 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
} */

/* Responsive Styles for Products Page */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-icon {
    font-size: 8rem;
  }

  .filter-wrapper {
    gap: 0.8rem;
  }

  .filter-search {
    flex: 0 1 200px;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-hero {
    padding: 2rem 0;
  }

  .products-hero-grid {
    min-height: 200px;
    gap: 1.5rem;
  }

  .products-hero-copy h1 {
    font-size: 1.8rem;
  }

  .products-hero-copy p {
    font-size: 1rem;
  }

  .hero-icon {
    font-size: 6rem;
  }

  .filter-wrapper {
    gap: 0.6rem;
  }

  .filter-tabs {
    gap: 0.8rem;
  }

  .filter-tab {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .filter-arrow {
    padding: 6px 10px;
    min-width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .filter-search {
    flex: 0 1 160px;
    min-width: 130px;
  }

  .product-card {
    max-width: 100%;
  }

  .cta-content {
    padding: 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .products-hero {
    padding: 1.5rem 0;
  }

  .products-hero-copy h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .products-hero-copy p {
    font-size: 0.9rem;
  }

  .hero-icon {
    font-size: 4rem;
  }

  .products-hero-grid {
    min-height: auto;
  }

  .filter-wrapper {
    gap: 0.4rem;
  }

  .filter-tabs {
    gap: 0.6rem;
  }

  .filter-tab {
    padding: 6px 10px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .filter-arrow {
    padding: 6px 8px;
    min-width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .filter-search {
    padding: 6px 10px;
    font-size: 0.75rem;
    flex: 0 1 110px;
    min-width: 100px;
  }

  .product-image {
    height: 150px;
  }

  .product-content {
    padding: 1rem;
  }

  .product-content h3 {
    font-size: 1rem;
  }

  .product-description {
    font-size: 0.85rem;
  }

  .cta-content {
    padding: 1rem;
  }

  .cta-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .cta-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .cta-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}
