@charset "UTF-8";
/* ============================================================================
   BYTEBEEZ HOMEPAGE STYLES
   Organized by: Theme Styles → Section Styles (matching HTML hierarchy)
   ============================================================================ */
/* -------------------------------------------------------------------------- */
/* COLORS & BREAKPOINTS                                                       */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* FONTS                                                                       */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------------------------------------------------- */
/* SASS TYPOGRAPHY VARIABLES                                                  */
/* -------------------------------------------------------------------------- */
/* Heading multipliers */
/* Line-height defaults */
/* Font stacks */
/* -------------------------------------------------------------------------- */
/* BASE STYLES                                                                */
/* -------------------------------------------------------------------------- */
:root {
  /* Color custom properties */
  --color-primary: #36454F;
  --color-accent: #2F67B2;
  --color-primary-dark: #1C1C1C;
  --color-primary-light: #F5F5F5;
  --color-text: #1C1C1C;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  /* Font size multipliers */
  --fs-xs: 0.75;
  --fs-sm: 0.875;
  --fs-base: 1;
  --fs-lg: 1.125;
  --fs-xl: 1.25;
  --fs-2xl: 1.5;
  /* Base font size - responsive */
  font-size: 16px;
}
@media (min-width: 992px) {
  :root {
    font-size: 18px;
  }
}

body {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  font-size: calc(var(--fs-base) * 1rem);
}

/* -------------------------------------------------------------------------- */
/* HEADING STYLES                                                             */
/* -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #36454F;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: calc(2.5 * 1rem);
  font-weight: 900;
}
@media (max-width: 768px) {
  h1 {
    font-size: calc(1.875 * 1rem);
  }
}

h2 {
  font-size: calc(2 * 1rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  h2 {
    font-size: calc(1.6 * 1rem);
  }
}

h3 {
  font-size: calc(1.5 * 1rem);
  font-weight: 600;
}
@media (max-width: 768px) {
  h3 {
    font-size: calc(1.275 * 1rem);
  }
}

h4 {
  font-size: calc(1.25 * 1rem);
  font-weight: 600;
}

h5 {
  font-size: calc(1.125 * 1rem);
  font-weight: 600;
}

h6 {
  font-size: calc(1 * 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------------- */
/* TEXT UTILITIES                                                             */
/* -------------------------------------------------------------------------- */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text-accent {
  color: #2F67B2;
}

.text-primary {
  color: #36454F;
}

.text-light {
  color: var(--color-text-light);
}

strong,
b {
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* BUTTON/CTA STYLES                                                          */
/* -------------------------------------------------------------------------- */
.btn-primary {
  background-color: #2F67B2;
  color: var(--color-white);
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: calc(var(--fs-lg) * 1rem);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: rgb(36.3466666667, 79.6533333333, 137.6533333333);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #36454F;
  border: 2px solid #36454F;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: calc(var(--fs-lg) * 1rem);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #36454F;
  color: var(--color-white);
}

/* -------------------------------------------------------------------------- */
/* FONT SIZE MIXIN                                                            */
/* -------------------------------------------------------------------------- */
/* ============================================================================
   THEME STYLES - GLOBAL SETTINGS & UTILITIES
   ============================================================================ */
/* -----------------------------------------------------------------------------
   HTML & Body Setup
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body.app-loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.app-loading:not(.app-loading) {
  opacity: 1;
}

/* -----------------------------------------------------------------------------
   Common Section Components
   -------------------------------------------------------------------------- */
.section-label {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2F67B2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-subtitle {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------------------------------
   Global Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
/* -----------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================================================
   PAGE SECTIONS - ORGANIZED BY HTML STRUCTURE
   ============================================================================ */
/* ============================================================================
   #hero - HERO SECTION
   ============================================================================ */
#hero {
  /* Hero Content */
  /* Hero Logo */
  /* Hero Typography */
  /* Hero CTAs */
}
#hero.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  position: relative;
  overflow: hidden;
}
#hero.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(47, 103, 178, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(54, 69, 79, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
#hero.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(54, 69, 79, 0.02) 60px, rgba(54, 69, 79, 0.02) 61px);
  pointer-events: none;
}
#hero .hero-content {
  position: relative;
  z-index: 2;
}
#hero .hero-logo-wrapper {
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}
#hero .hero-logo {
  height: 100px;
  width: auto;
}
@media (max-width: 768px) {
  #hero .hero-logo {
    height: 48px;
  }
}
#hero .hero-headline {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #36454F;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  background: linear-gradient(135deg, #36454F 0%, #1C1C1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  #hero .hero-headline {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  #hero .hero-headline {
    font-size: 2rem;
  }
}
#hero .hero-subheadline {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
@media (max-width: 768px) {
  #hero .hero-subheadline {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  #hero .hero-subheadline {
    font-size: 1rem;
  }
}
#hero .hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}
@media (max-width: 768px) {
  #hero .hero-cta-group {
    flex-direction: column;
  }
}
#hero .btn-hero-primary {
  background-color: #2F67B2;
  color: #FFFFFF;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
#hero .btn-hero-primary:hover {
  background-color: rgb(38.4773333333, 84.3226666667, 145.7226666667);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(47, 103, 178, 0.3);
  color: #FFFFFF;
}
#hero .btn-hero-primary:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  #hero .btn-hero-primary {
    width: 100%;
    text-align: center;
  }
}
#hero .btn-hero-secondary {
  background-color: transparent;
  color: #36454F;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: 2px solid #36454F;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
#hero .btn-hero-secondary:hover {
  background-color: #36454F;
  border-color: #36454F;
  color: #FFFFFF;
}
#hero .btn-hero-secondary:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  #hero .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================================
   #about - ABOUT SECTION
   ============================================================================ */
#about {
  /* About Content */
  /* Technology Badges */
  /* Core Values Grid */
}
#about.about-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  #about.about-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  #about.about-section {
    padding: 3rem 0;
  }
}
#about .about-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1C1C1C;
  margin-bottom: 1.5rem;
}
#about .about-description:last-of-type {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  #about .about-description {
    font-size: 1rem;
  }
}
#about .tech-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #36454F;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border-radius: 2rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
#about .tech-badge:hover {
  background-color: #1C1C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(54, 69, 79, 0.2);
}
@media (max-width: 576px) {
  #about .tech-badge {
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
  }
}
#about .core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 576px) {
  #about .core-values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#about .value-card {
  padding: 2rem;
  background-color: #F5F5F5;
  border-radius: 0.5rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
  transition: all 0.3s ease;
}
#about .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(54, 69, 79, 0.15);
  border-color: rgba(47, 103, 178, 0.3);
  background-color: #FFFFFF;
}
@media (max-width: 576px) {
  #about .value-card {
    padding: 1.5rem;
  }
}
#about .value-icon {
  font-size: 2.5rem;
  color: #2F67B2;
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 576px) {
  #about .value-icon {
    font-size: 2rem;
  }
}
#about .value-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  #about .value-title {
    font-size: 1.125rem;
  }
}
#about .value-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 576px) {
  #about .value-description {
    font-size: 0.9375rem;
  }
}

/* ============================================================================
   #products - PRODUCTS SECTION
   ============================================================================ */
#products {
  /* Product Showcase Card */
  /* Product Header */
  /* Product Main Content */
  /* Product Benefits */
  /* Product CTA */
  /* Product Image */
  /* Product Highlights */
  /* Future Products Teaser */
}
#products.products-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
  position: relative;
}
@media (max-width: 768px) {
  #products.products-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  #products.products-section {
    padding: 3rem 0;
  }
}
#products .product-showcase {
  background-color: #FFFFFF;
  border-radius: 1.25rem;
  padding: 0;
  box-shadow: 0 8px 32px rgba(54, 69, 79, 0.1);
  border: 1px solid rgba(54, 69, 79, 0.08);
  overflow: hidden;
  margin-bottom: 3rem;
}
#products .product-header {
  padding: 2.5rem 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(47, 103, 178, 0.03) 0%, rgba(54, 69, 79, 0.03) 100%);
  border-bottom: 1px solid rgba(54, 69, 79, 0.08);
}
@media (max-width: 768px) {
  #products .product-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  #products .product-header {
    padding: 1.5rem 1.5rem 1.25rem;
  }
}
#products .product-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #2F67B2 0%, rgb(38.4773333333, 84.3226666667, 145.7226666667) 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(47, 103, 178, 0.3);
}
#products .product-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #36454F;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #products .product-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  #products .product-title {
    font-size: 1.5rem;
  }
}
#products .product-tagline {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 576px) {
  #products .product-tagline {
    font-size: 1rem;
  }
}
#products .product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 2rem;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #10B981;
}
@media (max-width: 992px) {
  #products .product-status {
    margin-top: 1rem;
  }
}
#products .product-status i {
  font-size: 1rem;
}
#products .product-main {
  padding: 2.5rem;
}
@media (max-width: 768px) {
  #products .product-main {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  #products .product-main {
    padding: 1.5rem;
  }
}
#products .product-description-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#products .product-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}
@media (max-width: 768px) {
  #products .product-description {
    font-size: 1rem;
  }
}
#products .product-benefits {
  padding: 1.5rem;
  background-color: #F5F5F5;
  border-radius: 0.75rem;
  border-left: 4px solid #2F67B2;
}
#products .benefits-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #36454F;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
#products .product-features-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
#products .product-features-compact li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1C1C1C;
  line-height: 1.4;
}
#products .product-features-compact li i {
  font-size: 1rem;
  color: #2F67B2;
  flex-shrink: 0;
}
#products .product-cta-inline {
  margin-top: auto;
}
#products .btn-product-primary {
  background-color: #2F67B2;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}
#products .btn-product-primary i {
  font-size: 1.125rem;
}
#products .btn-product-primary:hover {
  background-color: rgb(38.4773333333, 84.3226666667, 145.7226666667);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 103, 178, 0.35);
  color: #FFFFFF;
}
#products .btn-product-primary:active {
  transform: translateY(0);
}
#products .product-image-container {
  margin-bottom: 1.5rem;
}
#products .product-image-frame {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(54, 69, 79, 0.12);
  background-color: #F5F5F5;
  border: 1px solid rgba(54, 69, 79, 0.08);
}
#products .product-screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
#products .product-screenshot:hover {
  transform: scale(1.02);
}
#products .product-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  #products .product-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  #products .product-highlights-grid {
    grid-template-columns: 1fr;
  }
}
#products .highlight-item {
  padding: 1.25rem;
  background-color: #F5F5F5;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid rgba(54, 69, 79, 0.08);
  transition: all 0.3s ease;
}
#products .highlight-item:hover {
  background-color: #FFFFFF;
  border-color: #2F67B2;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(54, 69, 79, 0.1);
}
@media (max-width: 576px) {
  #products .highlight-item {
    padding: 1rem;
  }
}
#products .highlight-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(47, 103, 178, 0.1);
  color: #2F67B2;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}
@media (max-width: 576px) {
  #products .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
#products .highlight-value {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
@media (max-width: 576px) {
  #products .highlight-value {
    font-size: 0.9375rem;
  }
}
#products .highlight-label {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.3;
}
@media (max-width: 576px) {
  #products .highlight-label {
    font-size: 0.75rem;
  }
}
#products .future-products-compact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(47, 103, 178, 0.05) 0%, rgba(54, 69, 79, 0.05) 100%);
  border-radius: 1rem;
  border: 2px dashed rgba(54, 69, 79, 0.15);
}
@media (max-width: 768px) {
  #products .future-products-compact {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  #products .future-products-compact {
    padding: 1.5rem;
  }
}
#products .future-icon-inline {
  flex-shrink: 0;
  font-size: 2.5rem;
  color: #2F67B2;
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 576px) {
  #products .future-icon-inline {
    font-size: 2rem;
  }
}
#products .future-content {
  flex: 1;
}
#products .future-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  #products .future-title {
    font-size: 1.125rem;
  }
}
#products .future-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}
@media (max-width: 576px) {
  #products .future-description {
    font-size: 0.9375rem;
  }
}

/* ============================================================================
   #services - CUSTOM DEVELOPMENT SECTION
   ============================================================================ */
#services {
  /* Service Introduction */
  /* Service Stats */
  /* Service Highlights */
  /* Development Process */
  /* Service CTA */
}
#services.services-section {
  padding: 6rem 0 0rem 0;
  background-color: #FFFFFF;
  position: relative;
}
@media (max-width: 768px) {
  #services.services-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  #services.services-section {
    padding: 3rem 0;
  }
}
#services .service-intro {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  #services .service-intro {
    margin-bottom: 3rem;
  }
}
@media (max-width: 992px) {
  #services .service-intro-content {
    text-align: center;
  }
}
#services .service-intro-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  #services .service-intro-title {
    font-size: 1.5rem;
  }
}
#services .service-intro-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1.25rem;
}
#services .service-intro-description:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #services .service-intro-description {
    font-size: 1rem;
  }
}
#services .service-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#services .stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  border-radius: 0.75rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
  transition: all 0.3s ease;
}
#services .stat-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(54, 69, 79, 0.1);
  border-color: rgba(47, 103, 178, 0.3);
}
@media (max-width: 992px) {
  #services .stat-item {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  #services .stat-item {
    padding: 1.25rem;
  }
}
#services .stat-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2F67B2;
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1.75rem;
}
@media (max-width: 576px) {
  #services .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
#services .stat-content {
  text-align: left;
}
@media (max-width: 992px) {
  #services .stat-content {
    text-align: center;
  }
}
#services .stat-value {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #36454F;
  line-height: 1;
  margin-bottom: 0.25rem;
}
@media (max-width: 576px) {
  #services .stat-value {
    font-size: 1.25rem;
  }
}
#services .stat-label {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1;
}
@media (max-width: 576px) {
  #services .stat-label {
    font-size: 0.875rem;
  }
}
#services .service-highlights {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  #services .service-highlights {
    margin-bottom: 3rem;
  }
}
#services .service-card {
  height: 100%;
  padding: 2rem;
  background-color: #F5F5F5;
  border-radius: 0.75rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
  transition: all 0.3s ease;
}
#services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(54, 69, 79, 0.12);
  background-color: #FFFFFF;
  border-color: #2F67B2;
}
#services .service-card:hover .service-card-icon {
  background-color: #2F67B2;
  color: #FFFFFF;
}
@media (max-width: 576px) {
  #services .service-card {
    padding: 1.5rem;
  }
}
#services .service-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(47, 103, 178, 0.1);
  color: #2F67B2;
  border-radius: 0.5rem;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  #services .service-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
#services .service-card-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 576px) {
  #services .service-card-title {
    font-size: 1.125rem;
  }
}
#services .service-card-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}
@media (max-width: 576px) {
  #services .service-card-description {
    font-size: 0.9375rem;
  }
}
#services .development-process {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(54, 69, 79, 0.03) 0%, rgba(47, 103, 178, 0.03) 100%);
  border-radius: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  #services .development-process {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  #services .development-process {
    padding: 1.5rem;
  }
}
#services .process-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #36454F;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  #services .process-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
#services .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
@media (max-width: 576px) {
  #services .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#services .process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#services .process-step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2F67B2 0%, rgb(36.3466666667, 79.6533333333, 137.6533333333) 100%);
  color: #FFFFFF;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(47, 103, 178, 0.3);
}
@media (max-width: 576px) {
  #services .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
}
#services .process-step-content {
  flex: 1;
}
#services .process-step-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  #services .process-step-title {
    font-size: 1rem;
  }
}
#services .process-step-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}
@media (max-width: 576px) {
  #services .process-step-description {
    font-size: 0.875rem;
  }
}
#services .service-cta-wrapper {
  margin-top: 3rem;
}
#services .service-cta-box {
  padding: 2.5rem;
  background: linear-gradient(135deg, #36454F 0%, #1C1C1C 100%);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(54, 69, 79, 0.2);
}
@media (max-width: 768px) {
  #services .service-cta-box {
    padding: 2rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  #services .service-cta-box {
    padding: 1.5rem;
  }
}
#services .service-cta-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  #services .service-cta-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  #services .service-cta-title {
    font-size: 1.25rem;
  }
}
#services .service-cta-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 768px) {
  #services .service-cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
#services .btn-service-cta {
  background-color: #2F67B2;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
#services .btn-service-cta:hover {
  background-color: rgb(38.4773333333, 84.3226666667, 145.7226666667);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 103, 178, 0.4);
  color: #FFFFFF;
}
#services .btn-service-cta:active {
  transform: translateY(0);
}
@media (max-width: 992px) {
  #services .btn-service-cta {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================================
   .site-footer - THIN FOOTER
   ============================================================================ */
.site-footer {
  padding: 2rem 0;
  background-color: #36454F;
  color: #FFFFFF;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .site-footer {
    margin-top: 3rem;
  }
}
.site-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .site-footer .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.site-footer .copyright {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.8;
}
.site-footer .footer-link {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.9;
}
.site-footer .footer-link:hover {
  opacity: 1;
  color: #2F67B2;
}/*# sourceMappingURL=home.css.map */