:root {
  --bg: #F5F4F0;
  --soft: #F8F7F3;
  --card: #F1EFEA;
  --white: #FFFFFF;
  --text: #121212;
  --secondary: #505861;
  --green: #49C66E;
  --blue: #75D7F3;
  --dark: #1C1F24;
  --shadow: rgba(18, 18, 18, 0.08);
  --radius-lg: 28px;
  --radius-xl: 34px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #f7f5ef 0%, #f2efe8 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0.25rem;
  border-radius: 16px;
  background: #f2f2f2;
  border: 1.5px solid #d2d2d2;
}

.brand-mark {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  filter: contrast(1.2) brightness(0.8); /* boost logo contrast */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a,
.nav-trigger {
  color: var(--secondary);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active-link,
.nav-trigger:hover,
.product-menu[open] .nav-trigger {
  color: var(--text);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-trigger::marker {
  display: none;
}

.nav-trigger::-webkit-details-marker {
  display: none;
}

.product-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 360px;
  padding: 0.8rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
  display: grid;
  gap: 0.65rem;
}

.product-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(248,247,243,.96),
    rgba(255,255,255,1)
  );
  border: 1px solid rgba(17,17,17,.05);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-row:hover {
  background: linear-gradient(180deg, rgba(232, 248, 252, 0.95), rgba(255, 255, 255, 1));
}

.product-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(127, 225, 244, 0.18);
  font-size: 1rem;
  flex-shrink: 0;
}

.product-label {
  font-size: 0.96rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.product-items {
  color: var(--secondary);
  line-height: 1.65;
  font-size: 0.92rem;
}

.quote-btn,
.primary-btn,
.secondary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quote-btn,
.primary-btn {
  background: linear-gradient(180deg, #1b1f25, #0f1115);
  color: #fff;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 26px rgba(21, 24, 29, 0.18);
  white-space: nowrap;
  
}

.secondary-btn {
  background: var(--blue);
  color: var(--dark);
  padding: 0.9rem 1.35rem;
  
}

.outline-btn {
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--text);
  padding: 0.9rem 1.35rem;
}

.quote-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: transparent;
  color: var(--text);
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.tagline,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 2.1rem + 2.4vw, 4.1rem);
  line-height: 1;
  margin-top: 1rem;
}

.hero-text,
.section-heading p,
.contact-copy p,
.impact-card p,
.testimonial-card p,
.pricing-card p,
.benefit-list p {
  color: var(--secondary);
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
}

.hero-stats span {
  display: block;
  color: var(--secondary);
  margin-top: 0.35rem;
  font-size: 0.94rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-device {
  width: min(100%, 460px);
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(233,228,216,0.85));
  box-shadow: 0 24px 80px var(--shadow);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.device-topbar {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.device-topbar span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.device-tile {
  height: 125px;
  border-radius: 24px;
}

.tile-blue {
  background: linear-gradient(135deg, var(--blue), #d9fbff);
}

.tile-green {
  background: linear-gradient(135deg, var(--green), #d4ffe7);
}

.tile-soft {
  background: linear-gradient(135deg, rgba(17,17,17,0.05), rgba(17,17,17,0.02));
}




.slider {
    position: relative;
    width: 800px;
    max-width: 90%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    flex-shrink: 0;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background: rgba(0,0,0,0.8);
}




.device-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  color: var(--secondary);
  font-weight: 700;
}

.trust-bar {
  padding: 1rem 0 2rem;
}

.section-mini-title {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/*.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-card {
  padding: 1rem;
  text-align: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(17, 17, 17, 0.05);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-card {
  width: 300px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(17,17,17,0.05);
}*/

.partner-banner {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: transparent;
    position: relative;
}

.partner-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logoScroll 20s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.partner-logo img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform .3s ease;
}

.partner-logo img:hover {
    transform: scale(1.08);
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section {
  padding: 5rem 0;
}

.white-bg {
  background: rgba(255,255,255,0.88);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.8rem);
  margin-top: 0.5rem;
  line-height: 1.15;
}

.solutions-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.solution-card,
.pricing-card,
.testimonial-card,
.impact-card {
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 18px 40px rgba(17,17,17,0.06);
}

.solution-card {
  padding: 1.5rem;
}

.solution-card h3,
.impact-card h3,
.pricing-card h3 {
  margin: 1rem 0 0.6rem;
}

.solution-card a,
.impact-card a {
  margin-top: 1rem;
  display: inline-flex;
  font-weight: 800;
  color: var(--dark);
}

.product-total-note {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--secondary);
}

.icon-box {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), #e8fdff);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.impact-card {
  padding: 2rem;
}

.green-badge {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(63, 204, 109, 0.17);
  color: #0c7e3c;
  font-weight: 800;
  margin-bottom: 1rem;
}

.impact-card ul {
  padding-left: 1rem;
  color: var(--secondary);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}

.pricing-card {
  padding: 1.5rem;
}

.price-label {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: var(--secondary);
  font-weight: 800;
}

.pricing-card h3 {
  font-size: 2rem;
  margin: 0.75rem 0;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--secondary);
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}

.pricing-card li {
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #111111, #23282f);
  color: #fff;
}

.pricing-card.featured p,
.pricing-card.featured li {
  color: rgba(255,255,255,0.82);
}

.testimonial-card {
  padding: 1.5rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--secondary);
  margin-top: 0.3rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.industry-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  font-weight: 800;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
}

.contact-details {
  margin-top: 1.5rem;
  color: var(--secondary);
  line-height: 1.9;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 1rem 1.1rem;
  font: inherit;
  background: #fcfbf7;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  min-height: 1.25rem;
  font-weight: 700;
}

.form-status.success {
  color: #0b7d41;
}

.form-status.error {
  color: #b42318;
}

.jotform-submit-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 10000;
}

.jotform-submit-modal.is-open {
  display: flex;
}

.jotform-submit-modal__panel {
  width: min(980px, 100%);
  height: min(82vh, 760px);
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.jotform-submit-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.jotform-submit-modal__close {
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
}

.jotform-submit-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/*
.footer {
  background: var(--dark);
  color: #fff;
  padding: 3rem 0;
}*/



footer {
    background: #6d6161; /* Light Grey */
    color: #030405;      /* Dark text */
    padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer h3,
.footer h4 {
  margin-bottom: 0.75rem;
}

.footer p {
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .solutions-grid,
  .pricing-grid,
  .testimonial-grid,
  .brand-grid,
  .industries-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 74px 1rem auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 20px 40px rgba(17,17,17,0.14);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.show-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-item {
    width: 100%;
  }

  .product-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 0.75rem;
    box-shadow: none;
    border: 1px solid rgba(17, 17, 17, 0.08);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .quote-btn {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-stats,
  .solutions-grid,
  .pricing-grid,
  .testimonial-grid,
  .brand-grid,
  .industries-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0.25rem;
  border-radius: 16px;
  background: #f2f2f2;
  border: 1.5px solid #d2d2d2;
}

.brand-mark {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  filter: contrast(1.2) brightness(0.8); /* boost logo contrast */
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(127, 225, 244, 0.18);
  color: #0f5a64;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-note {
  margin-top: 1rem;
  color: var(--secondary);
  line-height: 1.8;
  max-width: 42rem;
}

.device-banner {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.device-banner strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

.banner-label {
  color: var(--secondary);
  font-size: 0.85rem;
}

.advanced-stack {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,247,243,0.95));
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-step {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
}

.workflow-step span {
  display: inline-flex;
  font-weight: 800;
  color: #0f5a64;
  margin-bottom: 0.75rem;
}

.workflow-step h3 {
  margin-bottom: 0.5rem;
}

.workflow-step p {
  color: var(--secondary);
  line-height: 1.8;
}

.metrics-panel {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metrics-panel div {
  padding: 1.2rem 1.3rem;
  border-radius: 20px;
  background: var(--dark);
  color: #fff;
}

.metrics-panel strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.metrics-panel span {
  color: rgba(255,255,255,0.8);
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.outcome-card {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.outcome-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.outcome-card p {
  color: var(--secondary);
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 20px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  text-align: left;
  background: transparent;
  font-weight: 800;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.4rem 1.2rem;
  color: var(--secondary);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.contact-badges span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(127, 225, 244, 0.16);
  color: #0f5a64;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .workflow-grid,
  .metrics-panel,
  .outcome-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .workflow-grid,
  .metrics-panel,
  .outcome-strip {
    grid-template-columns: 1fr;
  }
}

.styled-logo {
  display: flex;
  align-items: center;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  padding: 0;
  margin-right: 1.5rem;
  text-decoration: none;
}

.styled-logo .astra {
  color: #181818;
  font-weight: 900;
}

.styled-logo .vault {
  color: #1ca6cf;
  font-weight: 900;
  margin-left: 0.1em;
}

.styled-logo .reg {
  font-size: 0.7em;
  color: #181818;
  margin-left: 0.18em;
  font-weight: 700;
}

.logo img,
.brand-mark {
  display: none !important;
}
/* ==========================================
   Product Pages Premium Styling Fix
========================================== */

.product-listing-sec {
  padding: 5rem 0;
}

.custom-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.extended-product-card {
  background: rgba(255,255,255,0.95);
  border-radius: 32px;
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 18px 45px rgba(17,17,17,0.06);
  padding: 2rem;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.extended-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(17,17,17,0.12);
  border-color: rgba(117,215,243,.45);
}

.extended-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
    rgba(117,215,243,.12),
    transparent 35%);
  pointer-events: none;
}

.card-badge {
  display: inline-flex;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(117,215,243,.18);
  color: #0f5a64;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.blue-variant {
  background: rgba(117,215,243,.18);
  color: #0f5a64;
}

.secure-variant {
  background: rgba(73,198,110,.18);
  color: #0c7e3c;
}

.extended-product-card h3,
.extended-product-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg,#1b1f25,#0f1115);
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  margin-top: 1rem;
  transition: transform .2s ease;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.card-actions .card-action-btn {
  margin-top: 0;
}

.card-action-secondary {
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.card-action-secondary:hover {
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .card-actions {
    grid-template-columns: 1fr;
  }
}

.card-action-btn:hover {
  transform: translateY(-2px);
}

.av-modal-open {
  overflow: hidden;
}

.av-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 21, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 999;
}

.av-modal-backdrop.is-open {
  display: flex;
}

.av-modal {
  width: min(980px, 100%);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  padding: 1.25rem;
}

.av-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.av-modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0;
}

.av-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
}

.av-modal-subtitle {
  color: var(--secondary);
  line-height: 1.7;
  margin: 0.35rem 0 1.1rem;
}

.av-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.av-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.9rem 1.2rem;
}

.av-btn-primary {
  background: linear-gradient(180deg, #1b1f25, #0f1115);
  color: #fff;
}

.av-btn-secondary {
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
}

.av-pdf-modal {
  width: min(1100px, 100%);
  padding: 1.15rem;
}

.av-pdf-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}

.av-pdf-sidebar {
  background: rgba(248, 247, 243, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  padding: 0.9rem;
}

.av-pdf-label {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--secondary);
  margin-bottom: 0.65rem;
}

.av-pdf-list {
  display: grid;
  gap: 0.6rem;
}

.av-pdf-item {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--text);
  font-weight: 700;
}

.av-pdf-item.is-active {
  border-color: rgba(117, 215, 243, 0.8);
  box-shadow: 0 10px 26px rgba(117, 215, 243, 0.22);
}

.av-pdf-viewer {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
}

.av-pdf-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.av-pdf-iframe {
  width: 100%;
  height: min(70vh, 720px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: #fff;
}

.av-pdf-empty {
  color: var(--secondary);
  padding: 1rem;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  border-radius: 22px;
}

@media (max-width: 860px) {
  .av-pdf-layout {
    grid-template-columns: 1fr;
  }
  .av-pdf-iframe {
    height: 65vh;
  }
}

@media (max-width:1100px) {
  .custom-products-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:760px) {
  .custom-products-grid {
    grid-template-columns: 1fr;
  }
}
/* ==============================
   DATA DIODE NEW DESIGN
============================== */

.datadiode-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.datadiode-image-box {
  text-align: center;
}

.datadiode-mini-title {
  color: #40b8e8;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.datadiode-image {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  display: block;
  margin: auto;
}

.datadiode-title-small {
  color: #40b8e8;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.datadiode-main-title {
  font-size: clamp(2.4rem, 2rem + 1vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.datadiode-desc {
  color: var(--secondary);
  line-height: 2;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.datadiode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.datadiode-grid h4 {
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-size: 1.2rem;
}

.datadiode-grid p {
  color: var(--secondary);
  line-height: 1.8;
}

.diode-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
}

@media(max-width:900px) {
  .datadiode-layout {
    grid-template-columns: 1fr;
  }

  .datadiode-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   DATA DIODE PAGE DESIGN
================================ */

.datadiode-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.datadiode-image-box {
  text-align: center;
}

.datadiode-mini-title {
  color: #42b9e7;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 2rem;
}

.datadiode-image {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  display: block;
  margin: auto;
}

.datadiode-title-small {
  color: #42b9e7;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}

.datadiode-main-title {
  font-size: clamp(2.5rem, 2rem + 1vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.datadiode-desc {
  color: var(--secondary);
  line-height: 2;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.datadiode-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
}

.datadiode-grid h4 {
  margin-bottom: .5rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.datadiode-grid p {
  color: var(--secondary);
  line-height: 1.8;
}

.diode-btn {
  margin-top: 2rem;
}

@media(max-width:900px) {
  .datadiode-layout {
    grid-template-columns: 1fr;
  }

  .datadiode-grid {
    grid-template-columns: 1fr;
  }
}
/* inventory card clickable fix */

.inventory-link {
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
}

.inventory-link:hover {
  transform: translateY(-6px);
}

.inventory-link p {
  color: var(--secondary);
  line-height: 1.8;
}

.inventory-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(117,215,243,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
/* ===== INVENTORY CARD FIX ===== */

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.inventory-link {
  text-decoration: none;
  color: inherit;
}

.inventory-card {
  background: #fff;
  border-radius: 32px;
  padding: 2rem;
  min-height: 260px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
  transition: all .25s ease;
}

.inventory-card:hover {
  transform: translateY(-8px);
  border-color: rgba(117,215,243,.5);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.inventory-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(117,215,243,.28);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 44px; /* icon size bigger */
  line-height: 1;

  margin-bottom: 1.5rem;
}

.inventory-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.inventory-text {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1rem;
}

@media(max-width:900px) {
  .inventory-grid {
    grid-template-columns: 1fr;
  }
}
.construction-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  height: 52px;
  display: flex;
  align-items: center;
}

.scrolling-text {
  width: 100%;
  overflow: hidden;
}

.scrolling-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: constructionMarquee 16s linear infinite;
}

.scrolling-track span {
  display: inline-block;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  padding-right: 2.5rem;
}

@keyframes constructionMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body {
  padding-bottom: 64px;
}

/* Copyright Footer */
.footer-copyright {
    background: #ffffff;
    text-align: center;
    color: #333;
    font-size: 14px;
    padding: 10px 0;
    border-top: 1px solid #e5e5e5;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .scrolling-track span {
    font-size: 13px;
    padding-right: 1.75rem;
  }

  .construction-banner {
    height: 48px;
  }

  body {
    padding-bottom: 58px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}


