
:root {
  /* — Design Tokens — */
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Color system */
  --color-navy: #0f1b2d;
  --color-navy-light: #1a2940;
  --color-navy-dark: #0a1120;
  --color-blue: #54a7f5;
  --color-blue-light: #93c5fd;
  --color-blue-dark: #3b82f6;
  --color-cyan: #06b6d4;
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --color-white: #ffffff;
  --color-success: #10b981;
  --color-warning: #f59e0b;

  /* Semantic tokens */
  --background-color: var(--color-white);
  --default-color: var(--color-slate-700);
  --heading-color: var(--color-navy);
  --accent-color: var(--color-blue);
  --surface-color: var(--color-white);
  --contrast-color: var(--color-white);

  --nav-color: rgba(255, 255, 255, 0.9);
  --nav-hover-color: var(--color-blue-light);
  --nav-mobile-background-color: var(--color-white);
  --nav-dropdown-background-color: var(--color-white);
  --nav-dropdown-color: var(--color-slate-700);
  --nav-dropdown-hover-color: var(--color-blue);

  /* Override Bootstrap's blue */
  --bs-primary: #54a7f5;
  --bs-primary-rgb: 84, 167, 245;
  --bs-link-color: #54a7f5;
  --bs-link-color-rgb: 84, 167, 245;
  --bs-link-hover-color: #3b82f6;
  --bs-link-hover-color-rgb: 59, 130, 246;
}

.dark-background {
  --background-color: var(--color-navy);
  --default-color: var(--color-white);
  --heading-color: var(--color-white);
  --surface-color: var(--color-navy-light);
  --contrast-color: var(--color-navy);
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-blue-dark);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.3;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(15, 27, 45, 0.85);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 14px 0;
  transition: all 0.5s;
  z-index: 997;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 28px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.header .logo span {
  color: var(--color-blue-light);
  font-size: 38px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff !important;
  font-size: 14px;
  padding: 10px 28px;
  margin: 0 0 0 30px;
  border-radius: 6px;
  transition: 0.3s;
  background: #54a7f5 !important;
  border: none;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: #3b82f6 !important;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.index-page .header {
  --background-color: rgba(15, 27, 45, 0);
}

.index-page.scrolled .header {
  --background-color: rgba(15, 27, 45, 0.92);
}

/*--------------------------------------------------------------
# Navigation — Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 16px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.2px;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--color-blue);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/*--------------------------------------------------------------
# Navigation — Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 8px;
    margin: 2px 8px;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--color-slate-100);
    color: var(--color-blue);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(15, 27, 45, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--color-navy-dark);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 60px 0 30px;
  background-color: var(--color-navy);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 16px;
}

.footer .footer-about .logo img {
  max-height: 32px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
  color: var(--color-white);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
  color: var(--color-slate-400);
  line-height: 1.8;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  color: var(--color-white);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: var(--color-slate-400);
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--color-blue-light);
}

.footer .copyright {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--color-slate-500);
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--color-navy);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid transparent;
  border-color: var(--color-blue) transparent var(--color-blue) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--color-blue);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Sections — Global
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: linear-gradient(135deg, rgba(15, 27, 45, 0.92) 0%, rgba(15, 27, 45, 0.75) 50%, rgba(37, 99, 235, 0.3) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--color-blue-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--color-white);
}

.hero h2 span {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--color-white);
}

.hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-slate-300);
  margin: 20px 0 0;
  max-width: 560px;
  line-height: 1.7;
}

.hero .hero-subtitle-center {
  font-size: 1.15rem;
  color: var(--color-slate-300);
  margin: 16px auto 0;
  max-width: 600px;
  line-height: 1.7;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}

.hero .hero-actions .btn-primary-hero:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.hero .hero-actions .btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero .hero-actions .btn-outline-hero:hover {
  border-color: var(--color-blue-light);
  color: var(--color-blue-light);
  background: rgba(37, 99, 235, 0.1);
}

/* Hero feature boxes */
.hero .feature-box {
  padding: 28px 20px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.hero .feature-box i {
  font-size: 28px;
  line-height: 1;
  color: var(--color-blue-light);
}

.hero .feature-box h3 {
  font-weight: 600;
  margin: 12px 0 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.4;
}

.hero .feature-box h3 a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}

.hero .feature-box:hover {
  border-color: var(--color-blue);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

.hero .feature-box:hover h3 a {
  color: var(--color-white);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
}

.hero-stats .stat-item {
  text-align: left;
}

.hero-stats .stat-item .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--heading-font);
}

.hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: var(--color-slate-400);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero h2 {
    font-size: 2.25rem;
  }
  .hero .hero-subtitle,
  .hero .hero-subtitle-center {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-stats .stat-item .stat-value {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Products Overview Section
--------------------------------------------------------------*/
.products-overview {
  background: var(--color-slate-50);
}

.products-overview .product-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px 40px;
  height: 100%;
  border: 1px solid var(--color-slate-200);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.products-overview .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.products-overview .product-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.products-overview .product-card:hover::before {
  opacity: 1;
}

.products-overview .product-card .product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.products-overview .product-card .product-icon.blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-blue);
}

.products-overview .product-card .product-icon.cyan {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue-dark);
}

.products-overview .product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.products-overview .product-card .product-tagline {
  font-size: 15px;
  color: var(--color-slate-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.products-overview .product-card .product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.products-overview .product-card .product-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-slate-600);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.products-overview .product-card .product-features li i {
  color: var(--color-success);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.products-overview .product-card .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.products-overview .product-card .btn-learn-more:hover {
  gap: 12px;
}

/*--------------------------------------------------------------
# About / Company Section
--------------------------------------------------------------*/
.about-section {
  background: var(--color-white);
}

.about-section .about-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-section .about-content p {
  color: var(--color-slate-600);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-section .about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.about-section .value-item {
  display: flex;
  gap: 16px;
}

.about-section .value-item .value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue);
  font-size: 20px;
}

.about-section .value-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.about-section .value-item p {
  font-size: 14px;
  color: var(--color-slate-500);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-section .about-values {
    grid-template-columns: 1fr;
  }
}

/* About pillars — 4-column value props */
.about-pillar {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  transition: all 0.3s;
  height: 100%;
}

.about-pillar:hover {
  background: var(--color-slate-50);
}

.about-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue);
  margin-bottom: 20px;
}

.about-pillar-icon .icon {
  width: 22px;
  height: 22px;
}

.about-pillar h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.about-pillar p {
  font-size: 14px;
  color: var(--color-slate-500);
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: var(--color-slate-50);
}

.features .features-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s;
}

.features .features-item:hover {
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.features .features-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.features .features-item i {
  font-size: 36px;
  color: var(--color-blue);
  margin-top: 4px;
  flex-shrink: 0;
}

.features .features-item p {
  font-size: 15px;
  color: var(--color-slate-600);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--color-white);
}

.contact .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact .info-item + .info-item {
  margin-top: 32px;
}

.contact .info-item i {
  color: var(--color-white);
  background: var(--color-blue);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--color-slate-600);
}

.contact .form-control {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-slate-200);
  transition: all 0.3s;
  background: var(--color-slate-50);
}

.contact .form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--color-white);
}

.contact .btn-primary,
.btn-primary {
  background-color: #54a7f5 !important;
  border-color: #54a7f5 !important;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  color: #fff;
}

.contact .btn-primary:hover,
.btn-primary:hover {
  background-color: #3b82f6 !important;
  border-color: #3b82f6 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/*--------------------------------------------------------------
# Product Page Specific
--------------------------------------------------------------*/
.page-hero {
  padding: 160px 0 80px;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--color-blue-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--color-slate-400);
  max-width: 560px;
  line-height: 1.7;
}

.page-hero .btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 24px;
}

.page-hero .btn-demo:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
}

/* Feature grid for product pages */
.feature-grid .feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s;
}

.feature-grid .feature-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.feature-grid .feature-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue);
  font-size: 22px;
}

.feature-grid .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-grid .feature-card p {
  font-size: 15px;
  color: var(--color-slate-500);
  margin-bottom: 8px;
  line-height: 1.6;
}

.feature-grid .feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-grid .feature-card ul li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--color-slate-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-grid .feature-card ul li i {
  color: var(--color-success);
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* How it works */
.how-it-works {
  background: var(--color-navy);
  color: var(--color-white);
}

.how-it-works .step-card {
  text-align: center;
  padding: 32px 24px;
}

.how-it-works .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  color: var(--color-blue-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.how-it-works h4 {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.how-it-works p {
  color: var(--color-slate-400);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--color-slate-400);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-section .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-section .btn-cta:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Utility classes
--------------------------------------------------------------*/
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: var(--color-blue-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-line {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
  width: 100%;
  margin: 0 0 40px;
}

.section-line::before,
.section-line::after {
  content: '';
  flex: 1;
  height: 1px;
  margin: 0 24px;
  background: var(--color-slate-200);
}

.colored-line {
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
  height: 3px;
  width: 80px;
  display: block;
  border: none;
  margin: 16px auto;
  border-radius: 2px;
}

/* Logo styles */
.logo-img {
  height: 26px;
}

.logo-img-short {
  height: 20px;
}

/* Prod summary (legacy compat) */
.prod-summary-hdr {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--color-navy);
  margin-bottom: 8px;
}

.prod-summary-dtl {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--default-font);
  color: var(--color-slate-600);
  line-height: 1.8;
}

.header-underline {
  border-bottom: 2px solid var(--color-blue);
  width: 60px;
  margin: 16px 0 24px;
}

/*--------------------------------------------------------------
# SVG Icon System (Lucide-style inline SVGs)
--------------------------------------------------------------*/
.icon {
  /* IMPORTANT: fixed pixel size — never inherit from parent font-size */
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Size variants — always explicit pixels */
.icon-xs  { width: 12px; height: 12px; }
.icon-sm  { width: 16px; height: 16px; }
.icon-md  { width: 24px; height: 24px; }
.icon-lg  { width: 28px; height: 28px; }
.icon-xl  { width: 36px; height: 36px; }

/* Badge / pill icons */
.hero-badge .icon,
.page-hero .hero-badge .icon {
  width: 14px;
  height: 14px;
}

/* Button icons — small inline */
.btn-primary-hero .icon,
.btn-outline-hero .icon,
.btn-demo .icon,
.btn-cta .icon,
.btn-learn-more .icon,
.btn-contact .icon,
.btn-getstarted .icon {
  width: 16px;
  height: 16px;
}

/* Hero feature box icons */
.hero .feature-box .icon {
  width: 28px;
  height: 28px;
  stroke: var(--color-blue-light);
}

/* Product card header icons */
.products-overview .product-card .product-icon .icon {
  width: 24px;
  height: 24px;
}

/* Checklist / bullet icons — small */
.products-overview .product-card .product-features li .icon,
.feature-grid .feature-card ul li .icon {
  width: 14px;
  height: 14px;
  stroke: var(--color-success);
  margin-top: 3px;
}

/* Feature card header icons */
.feature-grid .feature-card .card-icon .icon {
  width: 22px;
  height: 22px;
}

/* About section value icons */
.about-section .value-item .value-icon .icon {
  width: 20px;
  height: 20px;
}

/* Contact info icons */
.contact .info-item .icon-wrap {
  color: var(--color-white);
  background: var(--color-blue);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.contact .info-item .icon-wrap .icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
}

/* Scroll top */
.scroll-top .icon {
  width: 20px;
  height: 20px;
  stroke: #fff !important;
  color: #fff !important;
}

/* Mobile nav toggle */
.mobile-nav-toggle .icon {
  width: 24px;
  height: 24px;
}

/* Integration cards */
.integration-card-icon {
  display: block;
  width: 28px;
  height: 28px;
  stroke: var(--color-blue);
  margin: 0 auto 12px;
}

/* Connector cards */
.connector-icon {
  display: block;
  width: 28px;
  height: 28px;
  stroke: var(--color-blue);
  margin: 0 auto 12px;
}

/*--------------------------------------------------------------
# PHP Email Form (kept for compat)
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #ef4444;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: var(--color-success);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}
