/**
 * importer.less
 *
 * By default, new Sails projects are configured to compile this file
 * from LESS to CSS.  Unlike CSS files, LESS files are not compiled and
 * included automatically unless they are imported below.
 */
/* Variables */
/* ========================================
   DESIGN TOKENS - UNIVERSAL STANDARDS
   All pages must use these variables
   ======================================== */
:root {
  /* ========================================
     COLOR PALETTE - #1a3a52 Tints & Shades
     Based on deep navy monochromatic scale
     Navbar uses separate orange accent (#FF6B35)
     ======================================== */
  /* Base Colors */
  --bg-color: #f8f9fa;
  /* Page background - very light tint */
  --bg-secondary: #ffffff;
  /* Card/component backgrounds */
  /* Primary Text */
  --text-color: #0d1f2e;
  /* Darkest shade - headings, body */
  --text-secondary: #1a3a52;
  /* Base color - links, emphasis */
  --subtle-color: #4a6b85;
  /* Medium tint - descriptions */
  --text-muted: #7a9bb5;
  /* Light tint - captions, placeholders */
  /* Border & Divider Colors */
  --border-light: #e8edf2;
  /* Very light tint - subtle borders */
  --border-medium: #c5d5e2;
  /* Light tint - standard borders */
  --border-dark: #8fa8bc;
  /* Medium tint - strong dividers */
  /* Brand Accent (Navbar only) */
  --accent-color: #FF6B35;
  /* Orange - CTAs, highlights */
  --accent-hover: #e55a25;
  /* Darker orange - hover states */
  /* Primary Color Scale (#1a3a52 base) */
  --primary-darkest: #0d1f2e;
  /* 90% shade - critical text */
  --primary-darker: #142d40;
  /* 70% shade - important elements */
  --primary-base: #1a3a52;
  /* Base color - primary brand */
  --primary-light: #2a5a7a;
  /* 30% tint - secondary elements */
  --primary-lighter: #4a7a9a;
  /* 50% tint - hover states */
  --primary-lightest: #7aa5c0;
  /* 70% tint - subtle accents */
  /* Background Tints */
  --bg-tint-5: #f5f7f9;
  /* 5% tint - alternating rows */
  --bg-tint-10: #e8edf2;
  /* 10% tint - card backgrounds */
  --bg-tint-20: #d0dbe5;
  /* 20% tint - highlighted sections */
  /* Navbar Specifics (Orange - separate from navy palette) */
  --nav-bg: #FF6B35;
  --nav-text: #ffffff;
  --nav-btn-bg: #0d1f2e;
  /* Darkest navy for contrast */
  --nav-btn-text: #ffffff;
  /* ========================================
     TYPOGRAPHY SCALE
     All font sizes follow this scale
     ======================================== */
  /* Display Sizes (Hero titles, major headings) */
  --text-display-lg: clamp(3rem, 8vw, 5.5rem);
  /* 48-88px */
  --text-display: clamp(2.5rem, 7vw, 5rem);
  /* 40-80px */
  --text-display-sm: clamp(2rem, 5vw, 3.5rem);
  /* 32-56px */
  /* Heading Sizes */
  --text-h1: clamp(2.25rem, 5vw, 3.5rem);
  /* 36-56px */
  --text-h2: clamp(1.85rem, 3.2vw, 2.75rem);
  /* 30-44px */
  --text-h3: clamp(1.5rem, 2.5vw, 2rem);
  /* 24-32px */
  --text-h4: 1.5rem;
  /* 24px */
  /* Body Sizes */
  --text-body-lg: 1.25rem;
  /* 20px - body-lead */
  --text-body: 1rem;
  /* 16px - default */
  --text-body-sm: 0.95rem;
  /* 15.2px */
  --text-body-xs: 0.875rem;
  /* 14px */
  /* Small Text */
  --text-caption: 0.85rem;
  /* 13.6px */
  --text-tiny: 0.75rem;
  /* 12px */
  /* ========================================
     FONT FAMILIES
     ======================================== */
  --font-serif: "Playfair Display", serif;
  /* Headings, display text */
  --font-sans: "DM Sans", sans-serif;
  /* Body text, UI elements */
  /* ========================================
     LINE HEIGHTS
     ======================================== */
  --leading-tight: 1.05;
  /* Display text */
  --leading-snug: 1.15;
  /* Headings */
  --leading-normal: 1.6;
  /* Body text */
  --leading-relaxed: 1.7;
  /* Body lead, descriptions */
  /* ========================================
     LETTER SPACING
     ======================================== */
  --tracking-tight: -0.02em;
  /* Display text */
  --tracking-normal: -0.01em;
  /* Body lead */
  --tracking-wide: 0.1em;
  /* Uppercase labels */
}
/* ========================================
   USAGE GUIDELINES
   ========================================
   
   1. ALWAYS use CSS variables for colors, fonts, sizes
   2. NEVER hardcode hex colors or pixel values
   3. Use semantic class names (.display-text, .body-lead, etc.)
   4. Follow the typography scale (don't invent new sizes)
   5. Color palette based on #1a3a52 tints & shades (except navbar & CTAs)
   6. Product pages use navy theme - orange ONLY for CTA buttons
   
   Typography Classes:
   - .display-text     : Hero titles (Playfair Display, 40-80px)
   - .section-title    : Section headings (Playfair Display, 30-44px)
   - .subtitle         : Labels/captions (DM Sans, uppercase, 13.6px)
   - .body-lead        : Lead paragraphs (DM Sans, 20px, relaxed)
   - .tag-pill         : Category tags (DM Sans, uppercase, 14px)
   
   Color Variables (#1a3a52 Tints & Shades):
   TEXT:
   - var(--text-color)       : #0d1f2e (darkest shade - primary text)
   - var(--text-secondary)   : #1a3a52 (base color - links, emphasis)
   - var(--subtle-color)     : #4a6b85 (medium tint - descriptions)
   - var(--text-muted)       : #7a9bb5 (light tint - captions)
   
   BORDERS:
   - var(--border-light)     : #e8edf2 (subtle dividers)
   - var(--border-medium)    : #c5d5e2 (standard borders)
   - var(--border-dark)      : #8fa8bc (strong dividers)
   
   BACKGROUNDS:
   - var(--bg-color)         : #f8f9fa (page background)
   - var(--bg-secondary)     : #ffffff (cards, components)
   - var(--bg-tint-5/10/20)  : Alternating sections
   
   ACCENTS:
   - var(--accent-color)     : #FF6B35 (orange - CTAs ONLY)
   - var(--primary-base)     : #1a3a52 (navy - brand color, specs, highlights)
   
   PRODUCT PAGE CLASSES:
   - .text-accent            : Navy color for spec values (#1a3a52)
   - .text-navy              : Navy text (#1a3a52)
   - .btn-accent             : Navy CTA button (#1a3a52) with white text
   
   NAVBAR (Orange - separate from navy palette):
   - var(--nav-bg)           : #FF6B35
   - var(--nav-btn-bg)       : #0d1f2e (darkest navy)
   
   Font Families:
   - var(--font-serif) : "Playfair Display" (headings)
   - var(--font-sans)  : "DM Sans" (body, UI)
   ======================================== */
html {
  scroll-behavior: smooth;
}
/* Reset & Base - Cleaned */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: var(--leading-normal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-fluid {
  width: 100%;
  height: auto;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}
main {
  min-height: calc(20vh);
  padding-top: 40px;
}
.site-shell {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1025px) {
  .site-shell {
    padding: 0 24px;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-overlay {
    display: none !important;
  }
}
/* Floating Navbar - Cleaned */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--nav-bg);
  border-radius: 100px;
  padding: 12px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Tablet breakpoint - ensure mobile menu works */
@media (max-width: 1024px) {
  .site-header {
    width: calc(68%);
    padding: 12px 24px;
  }
  .primary-nav {
    gap: 20px;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .nav-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
/* Tablet breakpoint - ensure mobile menu works */
@media (max-width: 1024px) {
  .site-header {
    width: calc(68%);
    padding: 12px 24px;
  }
  .primary-nav {
    gap: 20px;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .nav-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
@media (max-width: 767px) {
  .site-header {
    width: calc(76%);
    top: 24px;
    padding: 12px 20px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .primary-nav {
    display: none;
  }
  .card-pro {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .card-pro-image {
    width: 100%;
    margin: 0;
  }
}
.logo-mark {
  box-sizing: border-box;
  color: var(--nav-text);
  cursor: auto;
  display: inline;
  font-size: 1.55rem;
  font-weight: 400;
  height: auto;
  letter-spacing: -0.140778px;
  line-height: 19.708889px;
  text-transform: none;
  transform-box: view-box;
  width: auto;
  -webkit-font-smoothing: antialiased;
}
.site-logo {
  height: 30px;
  width: auto;
  transition: height 0.3s ease;
}
@media (max-width: 767px) {
  .site-logo {
    height: 24px;
  }
}
.logo-svg {
  width: 180px;
  height: auto;
  color: #fff;
  display: block;
}
.logo-mark span {
  font-weight: inherit;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.95rem;
  color: var(--nav-text);
  position: relative;
}
.nav-link-button {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: left;
  appearance: none;
}
.mobile-nav-button {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  line-height: inherit;
  letter-spacing: inherit;
  appearance: none;
}
.nav-link:hover {
  opacity: 0.8;
}
.nav-link.active {
  opacity: 1;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}
.nav-cta {
  background: var(--nav-btn-bg);
  color: var(--nav-btn-text);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: scale(1.02);
  opacity: 1;
}
/* Mobile Menu Toggle - Cleaned & Optimized */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 1002;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  tap-highlight-color: transparent;
}
.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--nav-text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  display: block;
  position: relative;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
/* Mobile Overlay - Cleaned & Optimized */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: #FF6B35;
  background-color: var(--nav-bg);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
/* Overlay backdrop */
.mobile-overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.mobile-overlay.active::before {
  opacity: 1;
  pointer-events: auto;
}
.mobile-overlay.no-anim,
.mobile-overlay.no-anim .mobile-layer {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
/* Close button - Cleaned */
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-close svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.mobile-close:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.55);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 24px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-panel {
  width: 100%;
  max-width: 640px;
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  background: white;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.modal-close:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
}
.modal-close:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.25);
  /* Navy focus ring */
}
.modal-panel:focus {
  outline: none;
}
.modal-overlay:focus {
  outline: none;
}
.modal-overlay .text-2xl {
  margin-top: 0;
}
@media (max-width: 767px) {
  .modal-panel {
    padding: 24px;
  }
  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2400;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(110%);
  transition: transform 0.25s ease;
  backdrop-filter: blur(8px);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.cookie-banner-title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 8px;
}
.cookie-banner-copy {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4B5563;
  max-width: none;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-shrink: 0;
}
.btn-cookie {
  padding: 10px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner-actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .btn-cookie {
    width: auto;
  }
}
.btn-cookie-action {
  background-color: #7DA8A8;
  border-color: #7DA8A8;
  color: white;
}
.btn-cookie-action:hover {
  background-color: transparent;
  color: #7DA8A8;
  opacity: 1;
}
@media (max-width: 767px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .btn-cookie {
    width: 100%;
  }
}
.mobile-close {
  position: fixed;
  top: 24px;
  top: calc(env(safe-area-inset-top, 0px) + 24px);
  right: 24px;
  z-index: 2600;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
}
.mobile-close svg {
  width: 100%;
  height: 100%;
  stroke: white;
  stroke-width: 1.5;
}
/* Mobile Navigation List - Axis Style */
.mobile-nav-list {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 80px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
}
/* Mobile Layer System - Cleaned */
.mobile-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  background-color: var(--nav-bg);
}
.mobile-layer.is-open {
  transform: translate3d(0, 0, 0);
}
.mobile-layer-root {
  z-index: 1;
}
.mobile-layer-sub {
  z-index: 2;
}
/* Mobile Layer Content - Axis Style */
.mobile-layer-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 80px 24px 24px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-layer-content-sub {
  padding-top: 80px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
}
/* Center the Contact Us button */
.mobile-cta-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.mobile-cta {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 200px;
  margin: 0;
  transition: all 0.2s ease;
}
/* Mobile Layer Header (for sub-menus) - Axis Style */
.mobile-layer-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 70px;
  background-color: var(--nav-bg);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-layer-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  flex-shrink: 0;
}
.mobile-layer-back:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-layer-title {
  flex: 1;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 16px;
}
.mobile-submenu {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  max-height: none;
  height: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-submenu::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.mobile-submenu.is-active {
  display: flex;
}
.mobile-panel-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  max-width: 380px;
}
.mobile-panel-back {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-panel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 5vw, 1.6rem);
  color: white;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-panel-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  background: transparent;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  align-items: center;
  max-height: 52vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-group {
  width: 100%;
  text-align: center;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.mobile-nav-link {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  color: white;
  text-decoration: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: opacity 0.2s ease;
  min-height: auto;
}
.mobile-nav-link:hover {
  opacity: 0.7;
  background: transparent;
}
.mobile-nav-link-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-nav-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.mobile-nav-icon {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
  color: white;
}
.mobile-nav-icon::before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
.mobile-nav-link[aria-expanded="true"] .mobile-nav-icon::before {
  transform: rotate(-45deg);
}
.mobile-nav-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-nav-link-dropdown-trigger.active .mobile-nav-icon {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-dropdown-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  padding: 0;
}
.mobile-dropdown-toggle.active {
  background: white;
  color: var(--primary-color);
  transform: rotate(180deg);
}
.mobile-sub-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  width: 100%;
}
.mobile-sub-nav.active {
  display: flex;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-sub-link {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  display: block;
  padding: 14px 0;
  border-radius: 0;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: normal;
  line-height: 1.5;
  width: 100%;
  transition: opacity 0.2s ease;
}
.mobile-sub-link:hover {
  color: white;
  opacity: 0.7;
}
.mobile-nav-link.active {
  opacity: 1;
  font-weight: 700;
}
.mobile-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}
/* Navbar Dropdown */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-link-dropdown-trigger {
  cursor: pointer;
  user-select: none;
}
.nav-dropdown-icon {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  opacity: 0.9;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-dropdown-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
}
.nav-item-dropdown.is-open .nav-dropdown-icon {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 260px;
  /* Increased width to prevent wrapping */
  max-width: calc(76vw);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1100;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  /* Bridge gap */
}
/* Ensure dropdown can be forced-open via JS (hover fallback) */
.nav-item-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(15px);
}
.dropdown-link {
  display: block;
  padding: 10px 24px;
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.dropdown-link:hover {
  background: #f5f5f5;
  color: var(--primary-color);
  opacity: 1;
}
.clickable-card {
  cursor: pointer;
}
.clickable-card:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.22);
  /* Navy focus ring */
}
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-gallery-thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* Horizontal scroll, no wrapping */
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Smooth iOS scrolling */
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 58, 82, 0.3) transparent;
  scroll-snap-type: x mandatory;
  /* Snap thumbnails */
  padding: 8px 12px;
  /* Horizontal padding for borders */
  scroll-behavior: smooth;
}
.product-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
  /* Thin horizontal scrollbar */
}
.product-gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background-color: rgba(26, 58, 82, 0.3);
  border-radius: 2px;
}
.product-gallery-thumbs::-webkit-scrollbar-thumb:hover {
  background-color: rgba(26, 58, 82, 0.5);
}
.product-thumb {
  padding: 0;
  background: transparent;
  border: 1px solid rgba(221, 221, 221, 0.9);
  border-radius: 6px;
  overflow: hidden;
  width: 92px;
  height: 92px;
  appearance: none;
  display: block;
  cursor: pointer;
  margin: 0;
  outline: none;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  /* Center when scrolling */
}
.product-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
  background: #fff;
  filter: grayscale(100%) brightness(0.9);
  mix-blend-mode: multiply;
  opacity: 0.7;
  transform: translateZ(0);
}
.product-thumb.is-active {
  border-color: rgba(26, 58, 82, 0.9);
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.18);
  /* Navy active state */
}
.product-thumb.is-active img {
  filter: none;
  mix-blend-mode: multiply;
  opacity: 1;
}
.product-thumb:hover img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  mix-blend-mode: multiply;
}
.product-gallery-main {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.product-gallery-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid rgba(221, 221, 221, 0.9);
  border-radius: 8px;
  padding: 8px;
  transition: box-shadow 0.2s ease;
  transform: translateZ(0);
  mix-blend-mode: multiply;
}
.product-gallery-main img:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .product-gallery-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }
  .product-thumb {
    flex: 0 0 auto;
    scroll-snap-align: center;
    /* Center active thumbnail */
  }
}
/* Product Description Section Images */
.product-description-image {
  width: 100%;
  overflow: hidden;
}
.product-description-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-description-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.12);
}
@media (max-width: 768px) {
  .order-1-mobile {
    order: 1;
  }
  .order-2-mobile {
    order: 2;
  }
}
/* Mobile Navigation Adjustments */
@media (max-width: 1024px) {
  .primary-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .site-header {
    padding: 12px 24px;
  }
}
/* Cross-browser interaction polish */
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
img {
  image-rendering: auto;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}
/* Buttons (Global) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.btn[disabled],
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 767px) {
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
.btn-primary {
  background: var(--text-color);
  color: var(--bg-color);
  border: 1px solid var(--text-color);
}
.btn-primary:hover {
  background: transparent;
  color: var(--text-color);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}
/* Legal pages */
.page-legal {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.09), rgba(255, 107, 53, 0.02));
}
.page-legal .legal-hero {
  background: transparent;
}
.legal-hero {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.09), rgba(0, 0, 0, 0));
  padding: 64px 0 40px;
}
.legal-hero .site-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.legal-heading-group {
  max-width: 900px;
}
.legal-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .8;
}
.legal-title {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}
.legal-summary {
  margin-top: 14px;
  max-width: 780px;
  color: var(--text-subtle);
}
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 96px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px;
  background: var(--bg-elevated, #fff);
}
.legal-toc h4 {
  font-size: 0.95rem;
  margin: 0 0 8px 0;
}
.legal-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-subtle);
}
.legal-toc a:hover,
.legal-toc a.active {
  color: var(--text-color);
  background: rgba(255, 107, 53, 0.08);
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  background: var(--bg-elevated, #fff);
}
.legal-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 12px 0;
}
.legal-card h4 {
  font-size: 1rem;
  margin: 16px 0 8px 0;
}
.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
  }
}
.btn-ghost:hover {
  border-color: var(--text-color);
  opacity: 1;
}
/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
  margin-top: 80px;
  background-color: var(--bg-color);
  position: relative;
  background-image: radial-gradient(1000px 600px at 0% 0%, rgba(0, 0, 0, 0.03), transparent 65%), radial-gradient(800px 500px at 100% 10%, rgba(0, 0, 0, 0.025), transparent 60%);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1.5fr 1.2fr 1fr;
    /* Solutions column wider for long names */
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1.5fr 1.3fr 1fr;
    /* Even more space on larger screens */
    gap: 48px;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-mark {
  order: 0;
}
.footer-tagline {
  order: 1;
}
.footer-logo {
  order: 2;
}
.footer-mark {
  height: 48px;
  width: auto;
  opacity: 0.9;
}
.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.8;
}
.footer-tagline {
  font-family: 'Niconne', cursive;
  font-size: 1.3rem;
  color: var(--text-color);
  max-width: 300px;
  line-height: 1.4;
}
.footer-tagline::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--primary-color);
  margin-top: 12px;
  border-radius: 2px;
  opacity: 0.6;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--subtle-color);
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
}
.footer-col h4::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin-top: 8px;
  border-radius: 2px;
  opacity: 0.5;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  /* Allow flex/grid children to shrink below content size */
}
.footer-link {
  font-size: 0.9rem;
  color: var(--text-color);
  transition: color 0.2s ease, transform 0.25s ease, opacity 0.2s ease;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(3px);
  opacity: 1;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--subtle-color);
}
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  font-size: 0.85rem;
  color: var(--subtle-color);
}
.footer-legal a:hover {
  color: var(--text-color);
}
/* Jules Studio Inspired Layout Helpers */
.container-fluid {
  width: 100%;
  padding: 0 5%;
}
.section-spacer {
  padding: 60px 0;
}
.section-spacer-sm {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .section-spacer {
    padding: 120px 0;
  }
  .section-spacer-sm {
    padding: 80px 0;
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  /* Reduced gap for mobile */
}
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
  /* Critical fix for grid blowout */
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  /* Reduced gap for mobile */
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    /* More generous spacing */
  }
  .grid-2-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}
/* Typography - Using Design Tokens */
.display-text {
  font-family: var(--font-serif);
  font-size: var(--text-display);
  line-height: var(--leading-tight);
  margin-bottom: 24px;
  overflow-wrap: normal;
  word-break: normal;
  min-width: 0;
  letter-spacing: var(--tracking-tight);
}
@media (min-width: 768px) {
  /* .display-text font-size handled by clamp() */
}
.page-product-detail h1.display-text {
  font-size: var(--text-h1);
}
.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  line-height: var(--leading-snug);
  margin: 0 0 24px;
}
.subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-caption);
  color: var(--subtle-color);
  margin-bottom: 16px;
  display: block;
}
.body-lead {
  font-family: var(--font-sans);
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  color: var(--subtle-color);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: var(--tracking-normal);
}
/* ============================================
   CAPABILITY CARD COMPONENT
   Reusable product/service card for listing pages
   Structure: Image → Title → Description → Tags
   ============================================ */
.capability-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  /* Ensure equal height in grid layouts */
  min-width: 0;
  /* Prevent grid blowout */
}
/* Card Content Container */
.capability-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* Fill remaining space after image */
  min-height: 0;
  /* Allow content to shrink */
}
/* Product Image - 1:1 Aspect Ratio */
.capability-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  /* 1:1 aspect ratio */
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.capability-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  box-sizing: border-box;
}
/* Hover Effect */
.capability-card:hover .capability-image {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}
/* Product Title - Fixed 3-line height */
.capability-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  height: 3.9em;
  /* Exactly 3 lines (1.25rem × 1.3 × 3) */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Product Description - Fixed 4-line height */
.capability-description {
  color: var(--subtle-color);
  line-height: 1.6;
  font-size: 0.95rem;
  height: 6.08em;
  /* Exactly 4 lines (0.95rem × 1.6 × 4) */
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Technical Tags - Bottom aligned */
.capability-tags {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle-color);
  margin-top: auto;
  /* Push to bottom of card */
  padding-top: 8px;
  /* Consistent spacing above tags */
  min-height: 1.4em;
  /* Ensure consistent baseline */
}
/* Project/Feature Cards */
.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  /* Prevent grid blowout */
}
.project-image {
  width: 100%;
  aspect-ratio: 1.33333333;
  -webkit-aspect-ratio: 1.33333333;
  -moz-aspect-ratio: 1.33333333;
  background-color: #f0f0f0;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.project-card:hover .project-image::after {
  background: rgba(0, 0, 0, 0);
}
.project-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.02);
  transition: background 0.3s ease;
}
.project-desc {
  color: var(--subtle-color);
  font-size: 0.95rem;
  line-height: 1.6;
}
.display-text-sm {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .display-text-sm {
    font-size: 1.5rem;
  }
}
.service-desc-detail {
  text-align: left;
  max-width: 100%;
  margin-top: 8px;
}
.text-left {
  text-align: left;
}
.project-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.project-tags {
  font-size: 0.85rem;
  color: var(--subtle-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* (removed unused: .service-item, .service-name, .service-desc) */
:root {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  height: 100%;
}
/* ========================================
   Hero Sections - Unified Design
   ======================================== */
/* 
 * Unified Hero Section Design System
 * Used across all Products & Services pages
 * 
 * Components:
 * 1. .hero-section - Base hero with background image (homepage category pages)
 * 
 * Styling:
 * - Dark gradient background (#0b0d17 to #1a1d2d)
 * - White text with subtle shadows
 * - Consistent padding and spacing
 * - Mobile-responsive with adjusted padding
 */
/* Base Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: #0b0d17;
  background-size: cover;
  background-position: center;
  color: white;
  margin-top: -40px;
  padding: 120px 0 60px;
  width: 100%;
  overflow: hidden;
}
/* Dynamic viewport units */
@supports (height: 100dvh) {
  .hero-section {
    min-height: 100dvh;
  }
}
@supports (-webkit-touch-callout: none) {
  .hero-section {
    min-height: -webkit-fill-available;
  }
}
/* Page-specific hero backgrounds */
.hero-detection {
  background-image: url('/images/homepage_UAV_Detection_Defense.webp');
}
.hero-platforms {
  background-image: url('/images/homepage_Autonomous_Ecosystem.webp');
}
.hero-services {
  background-image: url('/images/homepage_Professional_Services.webp');
}
.hero-products {
  background-image: url('/images/homepage_Autonomous_Ecosystem.webp');
}
/* Hero overlay gradient */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
/* Hero content */
.hero-section .site-shell {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-section .subtitle {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-section .display-text {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.05;
}
.hero-section .body-lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.45;
}
/* Hero buttons */
.hero-section .btn-primary {
  background: white;
  color: #1c1c1c;
  border-color: white;
}
.hero-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
}
.hero-section .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}
/* Mobile hero styles */
@media (max-width: 767px) {
  .hero-section {
    min-height: 65vh;
    padding: 80px 0 32px;
    border-radius: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 35%;
  }
  .hero-section .display-text {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
    line-height: 1.1;
  }
  .hero-section .body-lead {
    font-size: 1rem;
    line-height: 1.4;
  }
  .hero-subtitle {
    font-size: 0.85rem;
  }
  .hero-detection {
    background-position: 58% 30%;
  }
  .hero-platforms,
  .hero-products {
    background-position: 52% 28%;
  }
  .hero-services {
    background-position: 50% 26%;
  }
}
/* Loading Splash */
#loading-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
#loading-splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--nav-bg);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Utilities */
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-120 {
  margin-top: 120px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-3 {
  margin-bottom: 12px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-80 {
  margin-bottom: 80px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pb-60 {
  padding-bottom: 60px;
}
.p-3 {
  padding: 12px;
}
.p-8 {
  padding: 8px;
}
.p-12 {
  padding: 12px;
}
.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}
.pt-32 {
  padding-top: 32px;
}
.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.gap-80 {
  gap: 40px;
}
.border {
  border: 1px solid var(--border-color);
}
.border-t {
  border-top: 1px solid var(--border-color);
}
.border-dashed {
  border-style: dashed;
}
.border-gray-200 {
  border-color: #E5E7EB;
}
.border-gray-300 {
  border-color: #D1D5DB;
}
.border-green-400 {
  border-color: #4ADE80;
}
.rounded-4 {
  border-radius: 4px;
}
.bg-green-100 {
  background: #DCFCE7;
}
.text-green-700 {
  color: #15803D;
}
.hidden {
  display: none !important;
}
.relative {
  position: relative;
}
.cursor-pointer {
  cursor: pointer;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
@media (min-width: 640px) {
  .sm-inline {
    display: inline;
  }
}
@media (min-width: 768px) {
  .gap-80 {
    gap: 80px;
  }
}
/* Numbered Header Component */
.numbered-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 8px;
}
.numbered-header > * {
  min-width: 0;
}
/* Fluid Header for Products */
.fluid-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  /* Ensure gap when wrapped */
}
.fluid-header > * {
  min-width: 0;
}
.text-center {
  text-align: center;
}
.text-center .body-lead {
  text-align: center;
}
.body-lead.text-center {
  text-align: center !important;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-700 {
  max-width: 700px;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-900 {
  max-width: 900px;
}
.max-w-1000 {
  max-width: 1000px;
}
.flex-col {
  flex-direction: column;
}
.flex-col-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-between {
  justify-content: space-between;
}
.flex {
  display: flex;
}
/* Order utilities for responsive layouts */
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
@media (min-width: 768px) {
  .md-order-1 {
    order: 1;
  }
  .md-order-2 {
    order: 2;
  }
}
/* Minor layout helper used in platform cards */
.vertical-layout {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-sans {
  font-family: var(--font-sans);
}
.font-serif {
  font-family: var(--font-serif);
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.uppercase {
  text-transform: uppercase;
}
.bg-light {
  background-color: #f8f9fa;
}
/* Subtle off-white, not yellowish */
.rounded-8 {
  border-radius: 8px;
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.object-cover {
  object-fit: cover;
}
.w-full {
  width: 100%;
}
.w-100 {
  width: 100%;
}
.h-full {
  height: 100%;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
@media (min-width: 768px) {
  .md-order-1 {
    order: 1;
  }
  .md-order-2 {
    order: 2;
  }
}
/* Capability Cards */
/* Table Styles - Reusable */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.specs-table th {
  padding: 0.5rem 0.5rem 0.5rem 0;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}
.specs-table td {
  padding: 0.5rem 0.5rem 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.specs-table td:first-child {
  font-weight: 600;
}
/* Process Step */
.process-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}
.process-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.6;
}
/* Case Study Card */
.case-study-card {
  display: grid;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}
@media (min-width: 992px) {
  .case-study-card {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}
.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-study-result {
  border-left: 4px solid var(--primary-color);
}
/* List Check */
.list-check {
  list-style: none;
}
.list-check li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 8px;
}
/* Spec Card - Mobile-friendly key-value display */
.specs-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}
.specs-card + .specs-card {
  margin-top: 0.75rem;
}
/* Stat Card */
.stat-card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
/* Promise Card */
.promise-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  align-items: start;
}
.promise-icon {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.6;
  line-height: 1;
}
.promise-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Challenge Card */
.challenge-card {
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}
.challenge-card:hover {
  border-color: var(--primary-color);
}
.specs-card-header {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.specs-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.specs-card-item {
  display: flex;
  flex-direction: column;
}
.specs-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--subtle-color);
  margin-bottom: 2px;
}
.specs-card-value {
  font-size: 0.85rem;
  color: var(--text-color);
}
/* Mobile: show cards, hide table */
@media (max-width: 767px) {
  .specs-table-desktop {
    display: none;
  }
  .specs-cards-mobile {
    display: block;
  }
}
/* Desktop: show table, hide cards */
@media (min-width: 768px) {
  .specs-table-desktop {
    display: table;
  }
  .specs-cards-mobile {
    display: none;
  }
}
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  background: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: all 0.2s ease;
}
.chip:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.feature-image-lg {
  width: 100%;
  aspect-ratio: 1.77777778;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.feature-image-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-alt {
  background-color: #f7f5f2;
}
.vision-mission-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.03);
}
/* Use Case Filter */
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 12px 48px 12px 24px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.filter-select:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.select-wrapper {
  display: inline-block;
  position: relative;
}
.filter-arrow {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--subtle-color);
}
.filter-arrow svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}
/* Use Case Cards */
.use-case-card-wrapper {
  height: 100%;
}
.use-case-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}
.use-case-card:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.btn-block {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}
.btn-reset {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
.alert {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.alert-danger {
  border-color: rgba(185, 28, 28, 0.25);
  background: rgba(185, 28, 28, 0.08);
  color: #991b1b;
}
.card-icon {
  width: 100%;
  background: transparent;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}
.card-icon img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.tag-pill {
  font-family: var(--font-sans);
  font-size: var(--text-body-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 7px 16px;
  border-radius: 2px;
  background: transparent;
  color: var(--subtle-color);
  border: 1px solid var(--border-medium);
  transition: all 0.2s ease;
}
.tag-pill:hover {
  border-color: var(--primary-base);
  color: var(--primary-base);
  background: var(--bg-tint-5);
}
.card-title {
  font-family: var(--font-serif);
  font-size: var(--text-h4);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-color);
}
.card-desc {
  font-family: var(--font-sans);
  font-size: var(--text-body-sm);
  color: var(--subtle-color);
  line-height: var(--leading-normal);
  margin-bottom: 24px;
  flex-grow: 1;
}
/* Modal Overrides */
.use-case-modal {
  padding: 0;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.use-case-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.modal-content-scroll {
  overflow-y: auto;
  padding: 40px;
  max-height: 100%;
}
/* Generic Helpers */
.hidden {
  display: none !important;
}
@media (max-width: 767px) {
  .vision-mission-card {
    padding: 24px;
  }
}
/* Utilities Extended */
.gap-large {
  gap: 24px;
}
@media (min-width: 768px) {
  .gap-large {
    gap: 60px;
  }
}
.border-bottom-text {
  border-bottom: 1px solid var(--border-color);
}
.list-disc {
  list-style-type: disc;
}
.pl-20 {
  padding-left: 20px;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
/* Feature list (homepage) */
.feature-list-simple {
  list-style: disc;
  margin: 0;
  padding-left: 24px;
}
@media (min-width: 768px) {
  .feature-list-simple {
    padding-left: 28px;
  }
}
.feature-list-simple li {
  padding-left: 4px;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
/* Utilities moved to end of file */
/* Ecosystem Stack Diagram */
.ecosystem-section {
  color: #ccc;
}
.ecosystem-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ecosystem-text {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}
.ecosystem-text .display-text {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}
.ecosystem-stack {
  max-width: 960px;
  margin: 0 auto;
}
.stack-row {
  margin-bottom: 16px;
}
.stack-row.split-row {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .stack-row.split-row {
    flex-direction: column;
  }
}
.layer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 20px;
  transition: all 0.3s ease;
}
.layer-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.layer-card.app-layer {
  border-left: 4px solid #4CAF50;
}
.layer-card.platform-layer {
  border-left: 4px solid #2196F3;
}
.layer-card.hardware-layer {
  border-left: 4px solid #FF9800;
}
.layer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.layer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: white;
}
.stack-role-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: #aaa;
}
.layer-subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 16px;
}
.stack-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-bubble {
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 100px;
  color: #ccc;
}
@media (max-width: 767px) {
  .stack-row.split-row {
    flex-direction: column;
  }
}
/* Why Wayo Section & Features */
.why-wayo-section {
  background-color: var(--bg-color);
}
.intro-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}
.intro-display {
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  margin-bottom: 24px;
}
.intro-lead {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-color);
  margin-bottom: 40px;
  max-width: 100%;
}
.visionaries-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}
.visionaries-divider::before,
.visionaries-divider::after {
  content: '';
  height: 1px;
  background: var(--border-color);
  flex: 1;
  max-width: 100px;
}
.visionaries-text {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--subtle-color);
  margin: 0 24px;
}
/* Feature Grid */
.features-grid {
  row-gap: 60px;
  column-gap: 80px;
}
.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.feature-item > * {
  min-width: 0;
}
.feature-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--border-color);
  /* Subtle number */
  font-weight: 700;
  line-height: 1;
}
.feature-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-color);
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--subtle-color);
  line-height: 1.6;
}
/* Login Page */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Ensure full height */
  width: 100%;
  padding-top: 100px;
  /* Space for fixed navbar */
  padding-bottom: 100px;
  /* Balanced padding for vertical centering */
}
.login-card {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.login-card h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-family: var(--font-serif);
  /* Match site standard */
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--subtle-color);
  font-family: var(--font-sans);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}
/* Removed duplicate .btn-primary override to prevent conflicts; global .btn-primary above remains authoritative */
/* 
 * ==============================
 * New About Page Design
 * ==============================
 */
.about-hero {
  background-color: white;
  color: #111827;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
}
.about-hero .subtitle {
  font-weight: 600;
}
@media (max-width: 767px) {
  .about-hero {
    padding: 120px 0 80px;
  }
}
.about-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: stretch;
  height: auto;
}
.about-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
  object-fit: contain;
}
.about-hero .about-image-wrapper {
  height: 650px;
}
.about-hero .about-image-wrapper img {
  width: auto;
  height: 100%;
}
.about-image-wrapper img.aboutus-stack {
  height: 100%;
}
.rounded-lg {
  border-radius: 16px;
}
.milestone-svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
  .order-1-mobile {
    order: 1;
  }
  .order-2-mobile {
    order: 2;
  }
  .mb-mobile-32 {
    margin-bottom: 32px;
  }
  .gap-large {
    gap: 40px;
  }
  /* Ensure the illustration shows and scales on mobile */
  .about-image-wrapper {
    height: auto;
  }
  .about-image-wrapper img,
  .about-image-wrapper img.aboutus-stack {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.about-prose p {
  margin-bottom: 20px;
}
.about-prose p:last-child {
  margin-bottom: 0;
}
.about-milestones {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-milestones li {
  position: relative;
  padding: 0 0 32px 0;
}
.about-milestones li:last-child {
  padding-bottom: 0;
}
.about-milestone-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 8px;
}
.about-milestone-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.2;
}
.about-principles {
  border-top: 1px solid #E5E7EB;
}
.bg-dark .about-principles {
  border-top: none;
}
.about-principle {
  padding: 22px 0;
  border-bottom: 1px solid #E5E7EB;
}
.bg-dark .about-principle {
  border-bottom: none;
  padding: 32px 0;
}
.about-principle-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.2;
}
.about-principle p.project-desc {
  margin-bottom: 0;
}
/* Timeline Container */
.about-timeline {
  position: relative;
  padding: 40px 0;
  width: 100%;
}
/* Mobile Layout (Default) */
.about-timeline-line {
  display: none;
  /* Hidden on mobile */
}
.about-phase {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.about-timeline-marker {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 2px solid #111827;
  margin-right: 24px;
  margin-top: 6px;
  /* Align with title */
  position: relative;
  z-index: 2;
}
/* Vertical line for mobile */
.about-phase::before {
  content: '';
  position: absolute;
  left: 7px;
  /* Center of 16px marker */
  top: 22px;
  bottom: -42px;
  /* Connect to next */
  width: 2px;
  background: #E5E7EB;
  z-index: 1;
}
.about-phase:last-child::before {
  display: none;
}
.about-phase-card {
  flex-grow: 1;
  padding: 0;
  /* Minimal padding on mobile */
}
.about-phase-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #F3F4F6;
  color: #4B5563;
  margin-bottom: 12px;
}
.about-timeline-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.2;
}
.about-phase p.project-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4B5563;
}
/* Desktop Layout */
@media (min-width: 768px) {
  .about-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 56px 1fr;
    /* Top Row, Middle Line, Bottom Row */
    gap: 0 40px;
    align-items: center;
    /* Center items in their grid cells */
    padding: 40px 0;
  }
  .about-timeline-line {
    display: block;
    grid-column: -1;
    grid-row: 2;
    width: 100%;
    height: 1px;
    background: #E5E7EB;
    align-self: center;
    z-index: 0;
  }
  .about-phase {
    display: contents;
    /* Allow children to participate in grid */
  }
  /* Reset mobile styles */
  .about-phase::before {
    display: none;
  }
  .about-phase-card {
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.03);
  }
  .about-timeline-marker {
    margin: 0;
  }
  /* Marker Positioning */
  .about-timeline-marker {
    grid-row: 2;
    justify-self: center;
    align-self: center;
    width: 20px;
    height: 20px;
    border-width: 3px;
    background: white;
    z-index: 2;
    /* Reset mobile margins */
  }
  /* Top Items (Phase 1, 3 -> Children 2, 4) */
  .about-phase:nth-child(even) .about-phase-card {
    grid-row: 1;
    align-self: end;
    /* Align to bottom of top row */
    margin-bottom: 40px;
    /* Space from center line */
    position: relative;
  }
  .about-phase:nth-child(even) .about-timeline-marker {
    grid-column: auto;
    /* Inherit from nth-child logic below */
  }
  /* Phase Labels Coloring */
  .about-phase:nth-child(even) .about-phase-label {
    background: #FFF7ED;
    color: #C2410C;
  }
  .about-phase:nth-child(odd) .about-phase-label {
    background: #F3F4F6;
    color: #374151;
  }
  /* Hover Effects */
  .about-phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
}
/* Combined Section Utilities */
.align-start {
  align-items: start;
}
.border-bottom-gray-dashed {
  border-bottom: 1px dashed #E5E7EB;
}
.border-top-gray-dashed {
  border-top: 1px dashed #E5E7EB;
}
.pt-80 {
  padding-top: 80px;
}
.pt-0 {
  padding-top: 0;
}
.max-w-700 {
  max-width: 700px;
}
.bg-primary-light {
  background-color: rgba(26, 58, 82, 0.1);
}
/* Navy tint */
/* =========================================
   UTILITIES & OVERRIDES (Must be last)
   ========================================= */
.bg-dark {
  background-color: #0b0d17 !important;
}
.text-white {
  color: white !important;
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}
.text-white-30 {
  color: rgba(255, 255, 255, 0.3) !important;
}
.border-top-white-10 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-ccc {
  color: #cccccc !important;
}
.text-subtle {
  color: var(--subtle-color) !important;
}
.text-gray-900 {
  color: #111827 !important;
}
.text-gray-600 {
  color: #4B5563 !important;
}
.text-gray-400 {
  color: #9CA3AF !important;
}
.text-gray-300 {
  color: #D1D5DB !important;
}
.leading-relaxed {
  line-height: 1.625;
}
/* Partner/Philosophy Cards */
.partner-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.05);
}
/* Responsive Grid Adjustments */
@media (max-width: 767px) {
  .about-combined-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-combined-section .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* Engineering / Consulting Aesthetic */
.engineering-card {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: none;
  background: #fff;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}
.engineering-card::before {
  /* Technical corner accent - simpler and thinner */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: 1;
}
.engineering-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.engineering-card:hover::before {
  width: 12px;
  height: 12px;
}
.blueprint-style {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  /* Monochrome technical look */
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.3s ease;
}
.engineering-card:hover .blueprint-style {
  filter: none;
  /* Reveal color on hover */
}
.blueprint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle technical grid */
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 10;
}
/* Technical Tags */
.tag-technical {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-color);
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 2px;
}
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.careers-accordion {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.careers-acc-item + .careers-acc-item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.careers-acc-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-sans);
}
.careers-acc-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}
.careers-acc-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.careers-acc-meta {
  color: var(--subtle-color);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.careers-acc-icon {
  color: rgba(17, 24, 39, 0.75);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.careers-acc-trigger[aria-expanded="true"] .careers-acc-icon {
  transform: rotate(180deg);
}
.careers-acc-panel {
  padding: 18px 20px 22px 20px;
  background: rgba(17, 24, 39, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.careers-acc-item.is-open .careers-acc-trigger {
  background: rgba(26, 58, 82, 0.04);
  /* Navy hover tint */
}
.careers-panel {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.careers-alert {
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.careers-alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.22);
  color: #065f46;
}
.careers-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.22);
  color: #7f1d1d;
}
.careers-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.careers-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.careers-dropzone {
  border: 1px dashed rgba(0, 0, 0, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-bottom: 18px;
}
.careers-dropzone:focus {
  outline: none;
  border-color: rgba(26, 58, 82, 0.65);
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.14);
  /* Navy focus */
}
.careers-dropzone.is-dragover {
  border-color: rgba(26, 58, 82, 0.65);
  background: rgba(26, 58, 82, 0.04);
  /* Navy drag state */
}
.careers-dropzone-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #111827;
}
.careers-dropzone-subtitle {
  color: var(--subtle-color);
  font-size: 0.95rem;
}
.careers-dropzone-filename {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.85);
  word-break: break-word;
}
.careers-hot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.careers-jd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: rgba(17, 24, 39, 0.85);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-right: 10px;
}
.careers-wait-overlay,
.contact-wait-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.65);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.careers-wait-overlay.active,
.contact-wait-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.careers-wait-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  padding: 28px;
  text-align: center;
}
.careers-spinner {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 4px solid rgba(26, 58, 82, 0.15);
  border-top-color: #1a3a52;
  /* Navy spinner */
  margin: 0 auto 14px auto;
  animation: careersSpin 0.9s linear infinite;
}
@keyframes careersSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.careers-wait-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 8px;
}
.careers-wait-subtitle {
  color: var(--subtle-color);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.contact-card-muted {
  background: rgba(255, 255, 255, 0.75);
}
.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}
.contact-card-subtitle {
  color: var(--subtle-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-card-link {
  display: inline-block;
  cursor: pointer;
  border-bottom: 1px solid rgba(26, 58, 82, 0.35);
  /* Navy underline */
  padding-bottom: 4px;
}
.contact-card-button {
  border: 1px solid rgba(26, 58, 82, 0.45);
  background: transparent;
  color: #1a3a52;
  /* Navy text */
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.contact-card-button:hover {
  background: rgba(255, 107, 53, 0.08);
  opacity: 1;
}
.contact-panel {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.contact-panel-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
}
.contact-alert {
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.22);
  color: #065f46;
}
.contact-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.22);
  color: #7f1d1d;
}
.contact-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-input:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.14);
}
.contact-select {
  appearance: none;
}
.contact-textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-captcha {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.contact-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 1024px) {
  .contact-panel {
    padding: 24px;
  }
}
/* ========================================
   Customization Page Styles
   ======================================== */
/* Why Customization Matters Section */
.text-4xl {
  font-size: 2.5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .text-4xl {
    font-size: 2rem;
  }
  .space-y-12 > * + * {
    margin-top: 8px;
  }
  .gap-12 {
    gap: 12px;
  }
}
/* Impact Stats Grid */
.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .impact-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.impact-stat {
  text-align: center;
  padding: 0 16px;
}
/* Promises List */
.promises-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .promises-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
.promise-item {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
/* Roadblocks List */
.roadblocks-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .roadblocks-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
.roadblock-item {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.roadblock-percentage {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}
/* Solution Box for Roadblocks */
.solution-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-left: 3px solid var(--primary-color);
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.solution-box strong {
  color: var(--text-color);
  font-weight: 600;
}
/* Link Arrow */
.link-arrow {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.link-arrow:hover {
  gap: 8px;
}
/* Mobile Optimizations */
@media (max-width: 767px) {
  /* Hero Section */
  .display-text-sm {
    font-size: 2rem;
    line-height: 1.2;
  }
  /* Reduce spacing on mobile */
  .section-spacer {
    padding: 60px 0;
  }
  .mb-40 {
    margin-bottom: 32px !important;
  }
  /* Impact Stats */
  .impact-stat {
    padding: 0 8px;
  }
  .impact-stat .display-text {
    font-size: 2.5rem;
  }
  /* Promises & Roadblocks */
  .promise-item,
  .roadblock-item {
    padding: 24px;
  }
  .roadblock-percentage {
    font-size: 2.5rem;
  }
  /* Buttons */
  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
  .flex.flex-wrap.gap-16 {
    flex-direction: column;
  }
  /* Cards */
  .capability-card {
    padding: 24px;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* Hero Content - Left Aligned for Products & Services pages */
.hero-content-left {
  text-align: left;
}
.hero-content-left .display-text {
  text-align: left;
}
.hero-content-left .body-lead {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.hero-content-left .hero-subtitle {
  text-align: left;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
/* Results Bar */
.results-bar {
  background-color: #0b0d17;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.result-item {
  display: flex;
  flex-direction: column;
}
.result-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #FF6B35;
  font-weight: 600;
}
.result-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
/* What We Do Section */
.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.what-we-do-content .subtitle {
  color: #FF6B35;
}
.what-we-do-visual {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 0, 0, 0.03) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transformation-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
}
.transformation-step {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 140px;
}
.transformation-step.highlight {
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}
.transformation-icon {
  margin-bottom: 12px;
}
.transformation-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 4px;
}
.transformation-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--subtle-color);
}
.transformation-arrow {
  font-size: 1.5rem;
  color: #FF6B35;
  opacity: 0.5;
}
/* Service Lines Grid */
.service-lines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-line-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-line-card:hover {
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}
.service-line-icon {
  margin-bottom: 24px;
}
.service-line-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 16px;
}
.service-line-description {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--subtle-color);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-line-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}
.service-line-features li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--subtle-color);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.service-line-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FF6B35;
}
.service-line-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #FF6B35;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.service-line-link:hover {
  opacity: 0.7;
}
/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content .subtitle {
  color: #FF6B35;
}
.why-features {
  margin-top: 32px;
}
.why-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.why-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
  font-size: 14px;
  flex-shrink: 0;
}
.why-feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 4px;
}
.why-feature-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--subtle-color);
  line-height: 1.5;
}
.why-visual {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 0, 0, 0.03) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
/* Industry Reach Grid */
.industry-reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.industry-reach-item {
  padding: 24px;
}
.industry-reach-icon {
  margin-bottom: 16px;
}
.industry-reach-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: #FF6B35;
  font-weight: 600;
  margin-bottom: 8px;
}
.industry-reach-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 8px;
}
.industry-reach-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
/* Customization Pillars */
.customization-pillar {
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
/* Impact Stats */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.impact-stat {
  padding: 24px;
}
.impact-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: #FF6B35;
  font-weight: 600;
  margin-bottom: 8px;
}
.impact-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.impact-description {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
/* Five Promises */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.promise-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.promise-card:hover {
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}
.promise-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: rgba(255, 107, 53, 0.3);
  font-weight: 600;
  margin-bottom: 12px;
}
.promise-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 12px;
}
.promise-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--subtle-color);
  line-height: 1.5;
  margin-bottom: 16px;
}
.promise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.promise-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--subtle-color);
  background: rgba(255, 107, 53, 0.08);
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Customization Grid */
.customization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.customization-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.customization-card:hover {
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}
.customization-header {
  margin-bottom: 16px;
}
.customization-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.customization-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.1);
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.customization-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 12px;
}
.customization-description {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--subtle-color);
  line-height: 1.6;
  margin-bottom: 16px;
}
.customization-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.customization-list li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--subtle-color);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.customization-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FF6B35;
}
.customization-link a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #FF6B35;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.customization-link a:hover {
  opacity: 0.7;
}
/* Methodology */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.methodology-step {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.methodology-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(255, 107, 53, 0.15);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.methodology-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 12px;
}
.methodology-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--subtle-color);
  line-height: 1.6;
  margin-bottom: 16px;
}
.methodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.methodology-list li {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--subtle-color);
  padding: 4px 0;
  padding-left: 12px;
  position: relative;
}
.methodology-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #FF6B35;
}
/* Roadblocks Section */
.roadblocks-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.roadblock-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.roadblock-item:hover {
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}
.roadblock-percentage {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 16px;
}
.solution-box {
  background: rgba(255, 107, 53, 0.08);
  padding: 16px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.5;
}
.solution-box strong {
  color: #FF6B35;
}
/* Partnership Section */
.partnership-section {
  background-color: #0F1420;
  padding-bottom: 80px;
}
.partnership-intro {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.partnership-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.model-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.model-card:hover {
  border-color: #FF6B35;
  background: rgba(255, 107, 53, 0.05);
}
.model-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #FF6B35;
  opacity: 0.6;
  display: block;
  margin-bottom: 16px;
}
.model-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.model-description {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.model-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.model-features li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.model-features li::before {
  content: '•';
  color: #FF6B35;
  margin-right: 8px;
}
/* CTA Section */
.cta-section {
  background-color: #0b0d17;
  padding: 100px 0;
}
.cta-content .btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
/* Utility Classes for Services Page */
.max-w-900 {
  max-width: 900px;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-700 {
  max-width: 700px;
}
.max-w-600 {
  max-width: 600px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-64 {
  margin-bottom: 48px;
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
/* Responsive Styles */
@media (max-width: 1200px) {
  .industry-reach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-visual {
    min-height: 300px;
  }
  .service-lines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promises-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .customization-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .partnership-models {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .roadblocks-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .transformation-diagram {
    flex-wrap: wrap;
  }
  .transformation-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .result-number {
    font-size: 2rem;
  }
  .service-lines-grid {
    grid-template-columns: 1fr;
  }
  .industry-reach-grid {
    grid-template-columns: 1fr;
  }
  .industry-reach-number {
    font-size: 2.5rem;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  .promises-grid {
    grid-template-columns: 1fr;
  }
  .customization-grid {
    grid-template-columns: 1fr;
  }
  .roadblocks-list {
    grid-template-columns: 1fr;
  }
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }
  .impact-number {
    font-size: 2.5rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .mb-64 {
    margin-bottom: 32px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
/* Services Hero */
.hero-services {
  background-image: url('/images/homepage_Professional_Services.webp');
  background-size: cover;
  background-position: center;
}
.hero-services .hero-overlay {
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
}
/* Grid 4 Column */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
/* Process Steps */
.process-step {
  text-align: center;
  padding: 24px;
}
.process-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(255, 107, 53, 0.2);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
/* Capability List */
.capability-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}
.capability-list li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--subtle-color);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}
.capability-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 0.7rem;
}
/* Pillar Card */
.pillar-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}
/* Model Card */
.model-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease;
}
.model-card:hover {
  border-color: #FF6B35;
}
.model-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #FF6B35;
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.model-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.model-description {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.model-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.model-features li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.model-features li:last-child {
  border-bottom: none;
}
.model-features li::before {
  content: '•';
  color: #FF6B35;
  margin-right: 8px;
}
/* CTA Section */
.cta-section {
  background-color: #0b0d17;
}
.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
}
/* ========================================
   Services Page - Professional Responsive Design
   ======================================== */
/* Hero Section */
.hero-pro {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
}
.hero-pro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 50%, rgba(15, 52, 96, 0.85) 100%);
}
.hero-pro-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-pro-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.hero-pro-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-pro-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-pro-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* Section Styles */
.section-pro {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}
.section-pro-bg {
  background-color: #1a1a2e;
}
.section-pro-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.92);
}
.section-pro-gray {
  background-color: #f8f8f8;
}
.section-pro-dark {
  background-color: #0f1420;
}
.section-pro-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}
.section-pro-header-light .section-pro-title {
  color: #ffffff;
}
.section-pro-header-light .section-pro-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.section-pro-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 16px;
}
.section-pro-subtitle {
  font-size: 1.15rem;
  color: var(--subtle-color);
  max-width: 600px;
  margin: 0 auto;
}
/* Grid System */
.grid-pro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}
.grid-pro-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-pro-3 {
  grid-template-columns: repeat(3, 1fr);
}
/* Card Style */
.card-pro {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  /* For absolute positioned badges */
}
.card-pro:hover {
  border-color: #FF6B35;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
/* Image Container - Full Bleed Design */
.card-pro-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}
/* Image - Full Width Enforcement */
.card-pro-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
.card-pro:hover .card-pro-image img {
  transform: scale(1.05);
}
/* Card Content */
.card-pro-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Benefit Number Badge */
.benefit-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  background: gray;
  /* Navy gradient */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.25);
  /* Navy shadow */
  z-index: 1;
}
/* Enhanced CTA Button for Solution Pages */
.cta-button-enhanced {
  background: white !important;
  color: var(--primary-color) !important;
  border: 3px solid white !important;
  font-weight: 700 !important;
  padding: 18px 48px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-button-enhanced:hover {
  background: transparent !important;
  color: gray !important;
  border-color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
}
.card-pro-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 16px;
}
.card-pro-desc {
  font-size: 1rem;
  color: var(--subtle-color);
  line-height: 1.7;
  margin-bottom: 24px;
}
.card-pro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
}
.card-pro-list li {
  font-size: 0.95rem;
  color: var(--subtle-color);
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  border-top: 1px solid #f0f0f0;
}
.card-pro-list li:first-child {
  border-top: none;
}
.card-pro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #FF6B35;
  border-radius: 50%;
}
/* Feature Block */
.feature-pro {
  text-align: center;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-pro-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(255, 107, 53, 0.4);
  line-height: 1;
  margin-bottom: 20px;
}
.feature-pro-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
.feature-pro-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
/* Capability Block */
.capability-pro {
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.capability-pro:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.capability-pro-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.capability-pro-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
}
.capability-pro-desc {
  font-size: 0.95rem;
  color: var(--subtle-color);
  line-height: 1.7;
}
/* Process Section */
.process-pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.process-pro-step {
  text-align: center;
}
.process-pro-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.process-pro-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}
.process-pro-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
/* Engagement Block */
.engage-pro {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.engage-pro-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
.engage-pro-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.engage-pro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.engage-pro-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 6px 14px;
  border-radius: 4px;
}
/* CTA Section */
.cta-pro {
  text-align: center;
  padding: 60px 0;
}
.cta-pro-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 20px;
}
.cta-pro-desc {
  font-size: 1.15rem;
  color: var(--subtle-color);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
/* CTA Section - Dark Background Variant */
.section-pro-dark .cta-pro-title {
  color: #ffffff;
}
.section-pro-dark .cta-pro-desc {
  color: rgba(255, 255, 255, 0.8);
}
/* Button Styles */
.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}
.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
/* Industry Section Styles */
.industry-pro {
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.industry-pro:hover {
  border-color: #FF6B35;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.industry-pro-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-radius: 8px;
  color: #FF6B35;
  margin-bottom: 20px;
}
.industry-pro-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
}
.industry-pro-desc {
  font-size: 0.95rem;
  color: var(--subtle-color);
  line-height: 1.7;
}
/* Enablement Platform Styles */
.enablement-pro {
  padding: 60px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}
.enablement-pro-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 20px;
}
.enablement-pro-desc {
  font-size: 1.1rem;
  color: var(--subtle-color);
  line-height: 1.7;
  margin-bottom: 24px;
}
.enablement-pro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.enablement-pro-list li {
  font-size: 1rem;
  color: var(--text-color);
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.enablement-pro-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 600;
}
/* Section CTA Inline */
.section-pro-cta {
  text-align: center;
  padding-top: 40px;
}
.cta-inline-text {
  font-size: 1.15rem;
  color: var(--subtle-color);
  margin-bottom: 20px;
}
/* Process Enhancements */
.process-pro-question {
  font-size: 0.85rem;
  color: rgba(255, 107, 53, 0.8);
  font-style: italic;
  margin-bottom: 8px;
}
.process-pro-footer {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
/* CTA Enhancements */
.cta-pro-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  margin-bottom: 32px;
}
.cta-pro-hint {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}
/* Outline Button Variant */
.btn-outline {
  background: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--text-color);
  color: #ffffff;
}
/* Industry Accordion Styles */
.industry-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.industry-accordion-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.industry-accordion-item:hover {
  border-color: rgba(255, 107, 53, 0.3);
}
.industry-accordion-item.is-active {
  border-color: #1a3a52;
  /* Navy border for active */
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.08);
}
.industry-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.industry-accordion-header:hover {
  background: rgba(26, 58, 82, 0.03);
  /* Subtle navy hover */
}
.industry-accordion-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.industry-accordion-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(107, 114, 128, 0.05) 100%);
  /* Gray gradient for default */
  border-radius: 8px;
  color: #6b7280;
  /* Gray icon color */
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.industry-accordion-item.is-active .industry-accordion-icon {
  background: #1a3a52;
  /* Navy background when active */
  color: #ffffff;
}
.industry-accordion-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.industry-accordion-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  transition: color 0.2s ease;
}
.industry-accordion-item.is-active .industry-accordion-title {
  color: #1a3a52;
  /* Navy title when active */
}
.industry-accordion-subtitle {
  font-size: 0.85rem;
  color: var(--subtle-color);
  margin: 0;
}
.industry-accordion-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtle-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.industry-accordion-item.is-active .industry-accordion-arrow {
  transform: rotate(180deg);
  color: #1a3a52;
  /* Navy arrow when active */
}
.industry-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.industry-accordion-item.is-active .industry-accordion-content {
  max-height: 3000px;
}
.industry-accordion-content-inner {
  padding: 0 28px 24px 96px;
}
.industry-accordion-desc {
  font-size: 0.95rem;
  color: var(--subtle-color);
  line-height: 1.7;
  margin-bottom: 16px;
}
.industry-accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.industry-accordion-list li {
  font-size: 0.9rem;
  color: var(--text-color);
  padding-left: 20px;
  position: relative;
}
.industry-accordion-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #FF6B35;
  border-radius: 50%;
}
/* Responsive for Industry Accordion */
@media (max-width: 768px) {
  .industry-accordion-header {
    padding: 20px;
  }
  .industry-accordion-icon {
    width: 40px;
    height: 40px;
  }
  .industry-accordion-title {
    font-size: 1rem;
  }
  .industry-accordion-content-inner {
    padding: 0 20px 20px 20px;
  }
  .industry-accordion-list {
    grid-template-columns: 1fr;
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .hero-pro-title {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .section-pro {
    padding: 80px 0;
  }
  .grid-pro-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-pro {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .hero-pro-title {
    font-size: 2.5rem;
  }
  .section-pro-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-pro {
    min-height: 60vh;
  }
  .hero-pro-title {
    font-size: 2rem;
  }
  .hero-pro-desc {
    font-size: 1.1rem;
  }
  .hero-pro-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-pro-actions .btn {
    width: 100%;
    text-align: center;
  }
  .section-pro {
    padding: 60px 0;
  }
  .section-pro-title {
    font-size: 1.75rem;
  }
  .grid-pro-2,
  .grid-pro-3 {
    grid-template-columns: 1fr;
  }
  .process-pro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-pro-num {
    font-size: 3rem;
  }
  .card-pro {
    padding: 32px 24px;
  }
  .capability-pro {
    padding: 32px 24px;
  }
  .cta-pro-title {
    font-size: 1.75rem;
  }
  .enablement-pro {
    padding: 40px 24px;
  }
  .enablement-pro-title {
    font-size: 1.5rem;
  }
  .industry-pro {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .hero-pro-title {
    font-size: 1.75rem;
  }
  .section-pro-title {
    font-size: 1.5rem;
  }
  .card-pro-title {
    font-size: 1.25rem;
  }
  .feature-pro-num {
    font-size: 2.5rem;
  }
}
/* =========================================
   Solutions Page Styles
   ========================================= */
/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--subtle-color);
}
.breadcrumb-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.breadcrumb-link:hover {
  opacity: 1;
  color: #0f2438;
  /* Darker navy on hover */
}
.breadcrumb-separator {
  color: var(--border-color);
}
.breadcrumb-current {
  color: var(--text-color);
}
/* Solution Architecture */
.solution-architecture {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.solution-architecture img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Solution Cards (Overview Page) */
.solution-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.solution-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.solution-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  mix-blend-mode: multiply;
}
.solution-card:hover .solution-image {
  transform: scale(1.05);
}
.solution-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.solution-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.3;
}
.solution-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--subtle-color);
  margin-bottom: 24px;
  flex: 1;
}
/* Value Cards */
.value-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
}
.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--subtle-color);
}
/* Tag Pills */
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.08);
  color: var(--primary-color);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 8px;
  margin-bottom: 8px;
}
.tag-large {
  padding: 8px 20px;
  font-size: 0.875rem;
}
/* Section Navigation - Sticky */
.section-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f5f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  margin-bottom: 40px;
}
.section-nav .section-nav-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .section-nav .section-nav-list {
    gap: 12px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }
}
/* ========================================
   Solution Pages - Enhanced Feature Boxes
   ======================================== */
/* Feature Grid for Overview Sections */
.solution-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
/* Individual Feature Box */
.solution-feature-box {
  padding: 20px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  border-left: 3px solid #7DA8A8;
  transition: all 0.3s ease;
}
.solution-feature-box:hover {
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.12), rgba(255, 107, 53, 0.08));
  border-left-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.solution-feature-box h4,
.solution-feature-box .h5 {
  color: #2D3748;
  margin-bottom: 8px;
  font-weight: 600;
}
.solution-feature-box p {
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 0;
}
/* System Integration Box */
.solution-integration-box {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  border-left: 4px solid #7DA8A8;
}
.solution-integration-box h4,
.solution-integration-box .h5 {
  color: #2D3748;
  margin-bottom: 12px;
  font-weight: 600;
}
.solution-integration-box p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Operational Impact Box */
.solution-impact-box {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  border-left: 4px solid #FF6B35;
}
.solution-impact-box h4,
.solution-impact-box .h5 {
  color: #2D3748;
  margin-bottom: 12px;
  font-weight: 600;
}
.solution-impact-box ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.solution-impact-box ul li {
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 8px;
}
.solution-impact-box ul li:last-child {
  margin-bottom: 0;
}
/* Products Enrolled Box */
.solution-products-enrolled {
  background: #f5f5f5;
  padding: 32px;
  border-radius: 8px;
  padding-left: 24px !important;
  margin-left: 0 !important;
}
.solution-products-enrolled strong {
  display: block;
  margin-bottom: 16px;
  color: #2D3748;
}
.solution-products-enrolled p {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  color: #4A5568;
  margin-bottom: 0;
}
/* Rich Text Content Area */
.solution-rich-text {
  padding-left: 0 !important;
}
.solution-rich-text > p,
.solution-rich-text > ul {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.solution-rich-text > p.body-lead {
  margin-bottom: 24px;
}
.solution-rich-text > p.text-lg {
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 24px;
}
.solution-rich-text ul.list-disc {
  list-style-position: inside;
}
.solution-rich-text ul.list-disc li {
  padding-left: 0 !important;
  margin-bottom: 16px;
}
.solution-rich-text ul.list-disc li strong {
  font-weight: 600;
}
/* At-a-Glance Summary Box */
.at-a-glance-box {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 40px;
}
@media (max-width: 768px) {
  .at-a-glance-box {
    padding: 28px;
  }
}
.at-a-glance-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}
.at-a-glance-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a3a52;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.at-a-glance-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.at-a-glance-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.at-a-glance-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.at-a-glance-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.at-a-glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.at-a-glance-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
}
.at-a-glance-list li:last-child {
  margin-bottom: 0;
}
.at-a-glance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38a169;
  font-weight: 700;
}
/* Executive Summary - Two Column Layout */
.executive-summary-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  /* More generous spacing */
  align-items: start;
}
@media (max-width: 968px) {
  .executive-summary-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.executive-summary-left {
  display: flex;
  flex-direction: column;
}
.executive-summary-right {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 36px;
}
@media (max-width: 968px) {
  .executive-summary-right {
    padding: 28px;
  }
}
/* Key Metrics Grid */
.key-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: auto;
}
@media (max-width: 768px) {
  .key-metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.metric-box {
  text-align: center;
  padding: 24px 16px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.metric-box:hover {
  border-color: #1a3a52;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .metric-box {
    padding: 18px 12px;
  }
}
.metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a3a52;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .metric-value {
    font-size: 2rem;
  }
}
.metric-label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* How It Works List */
.how-it-works-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}
.how-it-works-list li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2d3748;
}
.how-it-works-list li:last-child {
  margin-bottom: 0;
}
.how-it-works-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  background: #1a3a52;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.how-it-works-list li strong {
  color: #1a202c;
  font-weight: 600;
}
/* ========================================
   Case Study Illustration - Clean Minimal Style
   Features: Simple image with caption, no boxes
   ======================================== */
.case-study-illustration-style-1 {
  width: 100%;
  margin-bottom: 24px;
}
.case-study-illustration-style-1 img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  margin-bottom: 12px;
}
/* ========================================
   Architecture Diagrams - Carousel Layout
   ======================================== */
.architecture-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #4a5568;
}
.carousel-nav:hover {
  background: #1a3a52;
  border-color: #1a3a52;
  color: #ffffff;
  transform: scale(1.02);
  /* More subtle scale */
}
.carousel-nav:active {
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }
}
.carousel-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
  /* Sharper corners */
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.carousel-slide {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  min-height: 500px;
}
@media (max-width: 768px) {
  .carousel-slide {
    min-height: 350px;
  }
}
@media (max-width: 480px) {
  .carousel-slide {
    min-height: 250px;
  }
}
.carousel-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  margin: 0 auto 12px auto;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.carousel-slide img:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .carousel-slide img {
    max-height: 350px;
  }
}
@media (max-width: 480px) {
  .carousel-slide img {
    max-height: 250px;
  }
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.indicator {
  width: 10px;
  /* Slightly smaller */
  height: 10px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.indicator:hover {
  border-color: #1a3a52;
  background: rgba(26, 58, 82, 0.05);
}
.indicator:focus {
  outline: 2px solid #1a3a52;
  outline-offset: 2px;
}
.indicator.active {
  background: #1a3a52;
  border-color: #1a3a52;
  transform: scale(1.15);
  /* More subtle scale */
}
@media (max-width: 768px) {
  .indicator {
    width: 9px;
    height: 9px;
  }
}
.architecture-caption {
  font-size: 0.8125rem;
  color: #9ca3af;
  /* Lighter, more subtle */
  line-height: 1.6;
  text-align: center;
  margin-top: 0;
  font-style: italic;
  /* Adds sophistication */
}
/* ========================================
   Case Study Illustration - Style 2: Technical Documentation
   Inspired by: AWS, Azure, enterprise tech docs
   Features: Simple label, clean layout
   ======================================== */
.case-study-illustration-style-2 {
  width: 100%;
  margin-bottom: 24px;
}
.case-study-illustration-style-2 .style-2-header {
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .case-study-illustration-style-2 .style-2-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
.case-study-illustration-style-2 .style-2-label {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3182ce;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 12px;
}
.case-study-illustration-style-2 .style-2-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
}
.case-study-illustration-style-2 img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  margin-bottom: 12px;
}
.case-study-illustration-style-2 .style-2-caption {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.6;
}
/* ========================================
   Case Study Illustration - Style 3: Editorial Magazine
   Inspired by: Harvard Business Review, MIT Tech Review
   Features: Clean image, simple caption
   ======================================== */
.case-study-illustration-style-3 {
  width: 100%;
  margin-bottom: 24px;
}
.case-study-illustration-style-3 img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  margin-bottom: 12px;
}
.case-study-illustration-style-3 .style-3-caption-box {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.6;
}
.case-study-illustration-style-3 .style-3-caption-box .style-3-figure {
  font-weight: 700;
  color: #1a3a52;
  margin-right: 4px;
}
.case-study-illustration-style-3 .style-3-caption-box .style-3-text {
  color: #2d3748;
  font-weight: 500;
}
/* Section Spacing Variants */
.section-spacer-compact {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  scroll-margin-top: 100px;
  animation: fadeInUp 0.6s ease-out;
}
.section-spacer-standard {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  scroll-margin-top: 100px;
  animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hero Section Bottom Padding */
.hero-section-bottom-padding {
  padding-bottom: 60px;
}
/* Centered Flex Container */
.flex-centered {
  display: flex !important;
  justify-content: center !important;
  width: 100%;
}
/* Diagram Placeholder */
.solution-diagram-placeholder {
  background: #f8f9fa;
  border: 2px dashed #e0e0e0;
  border-radius: 12px;
  padding: 80px 40px;
  text-align: center;
}
.solution-diagram-placeholder p:first-child {
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.solution-diagram-placeholder p:last-child {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 0;
}
/* Clickable Card Cursor */
.clickable-card {
  cursor: pointer;
}
/* Solution Cards */
.solution-card.clickable-card {
  cursor: pointer;
}
/* ========================================
   Utility Classes - Inline Style Replacements
   ======================================== */
/* Max Width Utilities */
.max-w-480 {
  max-width: 48rem;
  /* 768px */
}
.max-w-820 {
  max-width: 820px;
}
/* Background Image Utilities */
.bg-image-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Error Page Specific */
.error-hero-body {
  margin: 0 !important;
  padding: 0 !important;
}
/* ========================================
   Combined Utility Classes for Common Patterns
   ======================================== */
/* Centered Content Block */
.content-centered {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* Section Subtitle Primary */
.section-subtitle-primary {
  display: block;
  margin-bottom: 16px;
  color: #7DA8A8;
  /* text-primary */
}
/* Display Text Small Responsive */
.display-text-sm-responsive {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 24px;
}
/* Body Lead Large */
.body-lead-lg {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A5568;
}
/* Flex Center Wrapper */
.flex-center-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
/* Grid 2 Columns Responsive */
.grid-2-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
/* Spacing Utilities */
.mt-24 {
  margin-top: 24px !important;
}
.mb-60 {
  margin-bottom: 60px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
/* Text Size */
.text-lg {
  font-size: 1.125rem;
  line-height: 1.8;
}
/* ========================================
   Combined Classes - Reduce Multiple Class Usage
   ======================================== */
/* Hero Section Common Pattern */
.hero-content-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
}
/* Solution Page Header */
.solution-page-header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
}
/* Display Text Large with Margin */
.display-text-large-mb {
  margin-bottom: 24px;
}
/* Body Lead Centered Large */
.body-lead-centered-lg {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  font-size: 1.125rem;
  line-height: 1.8;
}
/* Tags Flex Center */
.tags-flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
/* Section Spacer with Background */
.section-spacer-bg-light {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  scroll-margin-top: 100px;
  background-color: #f5f5f5;
}
.section-spacer-bg-gradient-light {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  scroll-margin-top: 100px;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.5), rgba(255, 255, 255, 0.8));
}
/* Subtitle with Primary Color */
.subtitle-primary-mb {
  display: block;
  margin-bottom: 16px;
  color: #7DA8A8;
}
/* Display Text Small Responsive with Margin */
.display-text-sm-responsive-mb {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 24px;
}
/* Architecture Diagram Wrapper */
.architecture-diagram-wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* Products Section Header */
.products-section-header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* Rich Text List Clean */
.rich-text-list-clean {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style-position: inside;
}
/* Integration Box Standard */
.integration-box-standard {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  border-left: 4px solid #7DA8A8;
}
/* Impact Box Standard */
.impact-box-standard {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  border-left: 4px solid #FF6B35;
}
/* CTA Section Centered */
.cta-section-centered {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* ========================================
   Solution Pages - Standard Styles
   ======================================== */
/* Solution Architecture Diagram */
.solution-architecture {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.solution-architecture img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Value Proposition Cards */
.value-prop-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  /* Sharper corners for technical feel */
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.value-prop-card:hover {
  border-color: #1a3a52;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  /* Very subtle lift - premium feel */
}
/* Section Navigation - Sticky */
.section-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
  margin-bottom: 60px;
}
.section-nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.section-nav-link {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 12px;
  transition: all 0.2s ease;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  outline: none;
}
.section-nav-link:hover {
  color: #1a3a52 !important;
  background: rgba(26, 58, 82, 0.04);
}
.section-nav-link:focus {
  outline: 2px solid #1a3a52;
  outline-offset: 2px;
}
.section-nav-link.active {
  color: #1a3a52 !important;
  font-weight: 600;
}
/* Mobile Responsive for Section Nav */
@media (max-width: 768px) {
  .section-nav-list {
    gap: 12px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .section-nav-link {
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
  }
}
/* Smooth Scrolling for Solution Pages */
html {
  scroll-behavior: smooth;
}
/* Section Scroll Margins */
section[id] {
  scroll-margin-top: 100px;
}
/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.feature-grid > div {
  padding: 20px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  border-left: 3px solid #7DA8A8;
}
/* Rich Text Alignment */
.rich-text-aligned {
  padding-left: 0 !important;
}
.rich-text-aligned p {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.rich-text-aligned ul {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style-position: inside;
}
.rich-text-aligned ul li {
  padding-left: 0 !important;
  margin-bottom: 16px;
}
/* Info Box with Gradient */
.info-box-gradient {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #7DA8A8;
}
.info-box-gradient h4 {
  color: #2D3748;
  margin-bottom: 12px;
}
.info-box-gradient p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Impact Box */
.impact-box {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(125, 168, 168, 0.08), rgba(255, 107, 53, 0.05));
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #FF6B35;
}
.impact-box h4 {
  color: #2D3748;
  margin-bottom: 12px;
}
.impact-box ul {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style: none;
}
.impact-box ul li {
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 8px;
}
.impact-box ul li:last-child {
  margin-bottom: 0;
}
/* Products Enrolled Box */
.products-enrolled-box {
  background: #f5f5f5;
  padding: 32px !important;
  border-radius: 8px;
  padding-left: 24px !important;
  margin-left: 0 !important;
}
.products-enrolled-box p {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  color: #4A5568;
}
/* Scroll Margin for Sections */
.section-scroll-margin {
  scroll-margin-top: 100px;
}
/* Main Centered */
main {
  display: block;
  width: 100%;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Responsive */
@media (max-width: 767px) {
  .solution-architecture {
    padding: 20px;
  }
  .grid-2,
  .grid-3 {
    gap: 24px;
  }
  .value-card {
    padding: 24px;
  }
}
/* ========================================
   Image Modal - Full Size View
   ======================================== */
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: modalFadeIn 0.3s ease forwards;
}
.image-modal-overlay.closing {
  animation: modalFadeOut 0.2s ease forwards;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
  padding: 0;
}
.image-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}
.image-modal-close:active {
  transform: scale(0.95);
}
@media (max-width: 768px) {
  .image-modal-close {
    top: -50px;
    width: 40px;
    height: 40px;
  }
  .image-modal-close svg {
    width: 24px;
    height: 24px;
  }
}
.image-modal-img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: transparent;
}
/* Product Accordion */
.product-accordion {
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}
.product-accordion-item {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  width: 100%;
  transition: all 0.2s ease;
}
.product-accordion-item:last-child {
  border-bottom: none;
}
.product-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--text-body-lg);
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.2s ease;
  line-height: var(--leading-normal);
}
.product-accordion-header:hover {
  color: var(--accent-color);
}
.product-accordion-item.is-active .product-accordion-header {
  color: var(--text-color);
}
.product-accordion-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.product-accordion-item.is-active .product-accordion-arrow {
  transform: rotate(180deg);
  color: var(--accent-color);
}
.product-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}
.product-accordion-item.is-active .product-accordion-content {
  max-height: 2000px;
}
.product-accordion-content-inner {
  padding: 0 48px 40px 48px;
}
.product-accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-accordion-list li {
  font-size: var(--text-body-sm);
  color: var(--text-color);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: var(--leading-normal);
}
.product-accordion-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}
.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.product-spec-table tr {
  border-bottom: 1px solid var(--bg-tint-5);
}
.product-spec-table tr:last-child {
  border-bottom: none;
}
.product-spec-table td {
  padding: 12px 0;
  font-size: var(--text-body-sm);
  line-height: var(--leading-normal);
}
.product-spec-table td:first-child {
  font-weight: 600;
  color: var(--text-color);
  width: 40%;
  padding-right: 16px;
}
.product-spec-table td:last-child {
  color: var(--subtle-color);
}
@media (max-width: 768px) {
  .product-accordion {
    margin-top: 32px;
  }
  .product-accordion-header {
    padding: 28px 24px;
    font-size: 1rem;
  }
  .product-accordion-content-inner {
    padding: 0 24px 32px 24px;
  }
  .product-spec-table td:first-child {
    width: 45%;
  }
}
/* Product Page Utility Classes - Navy Theme */
.text-accent {
  color: var(--primary-base) !important;
}
.text-navy {
  color: var(--text-secondary) !important;
}
.btn-accent {
  background-color: var(--primary-base) !important;
  border-color: var(--primary-base) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}
.btn-accent:hover {
  background-color: var(--primary-darker) !important;
  border-color: var(--primary-darker) !important;
}
/* Product Hero Grid Layout */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 100%;
  /* Prevent overflow */
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}
/* Ensure gallery doesn't overflow on mobile */
.product-gallery {
  max-width: 100%;
  overflow: hidden;
}
.product-info-column {
  padding-top: 8px;
}
/* Key Specs - Minimal Horizontal Layout */
.product-key-specs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-value {
  font-family: var(--font-sans);
  font-size: var(--text-body-lg);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-secondary);
}
.spec-label {
  font-family: var(--font-sans);
  font-size: var(--text-body-xs);
  color: var(--subtle-color);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.spec-dot {
  color: var(--border-medium);
  font-size: var(--text-body-lg);
  line-height: 1;
  margin-top: 20px;
}
/* Value Proposition in Hero */
.product-value-prop {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-tint-5);
}
.value-prop-text {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--subtle-color);
  margin: 0;
}
/* Larger CTA Button */
.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
/* Text Link Button */
.btn-link {
  display: inline-block;
  padding: 12px 0;
  color: var(--subtle-color);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.btn-link:hover {
  color: var(--accent-color);
}
/* Footer CTA Section */
.product-cta-footer {
  max-width: 900px;
  margin: 64px auto 0 auto;
  padding: 48px;
  background: var(--bg-secondary);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(13, 31, 46, 0.08);
}
.cta-content {
  text-align: center;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-actions .btn {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-info-column {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .product-key-specs {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
  }
  .spec-dot {
    display: none;
  }
  .spec-item {
    flex: 1 1 calc(38%);
    min-width: 120px;
  }
  .product-cta-footer {
    padding: 32px 24px;
    margin-top: 48px;
  }
  /* Product Hero - Mobile Fixes */
  .product-hero-grid {
    gap: 32px;
    padding: 0 4px;
    /* Prevent edge overflow */
  }
  .product-gallery-main {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* Square aspect ratio */
    position: relative;
  }
  .product-gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Scale image to fit within square */
    max-width: none;
    /* Override max-width to allow full container fill */
    border-radius: 6px;
    padding: 4px;
  }
  .product-gallery-thumbs {
    gap: 8px;
    padding: 8px 12px 4px 12px;
    /* Horizontal padding for borders */
    overflow-x: auto;
    /* Ensure scrollable */
    flex-wrap: nowrap;
    /* Prevent wrapping */
    scroll-snap-type: x mandatory;
    /* Snap thumbnails */
  }
  .product-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    scroll-snap-align: center;
    /* Center active thumbnail */
  }
  .product-thumb img {
    max-width: 100%;
    height: auto;
  }
  .product-info-column {
    padding: 0 4px;
    /* Match gallery padding */
  }
}
/* Small mobile screens */
@media (max-width: 480px) {
  .product-hero-grid {
    gap: 24px;
  }
  .product-gallery-main {
    padding-bottom: 100%;
    /* Maintain square ratio */
  }
  .product-thumb {
    width: 64px;
    height: 64px;
  }
  .product-gallery-thumbs {
    gap: 6px;
    padding: 8px 12px 4px 12px;
    /* Horizontal padding for borders */
    overflow-x: auto;
    /* Ensure scrollable */
    flex-wrap: nowrap;
    /* Prevent wrapping */
    scroll-snap-type: x mandatory;
    /* Snap thumbnails */
  }
  .product-thumb {
    width: 64px;
    height: 64px;
    scroll-snap-align: center;
    /* Center active thumbnail */
  }
}
