/* CSS Design System for JAAMI PRIVATE LIMITED */

/* -------------------------------------------------------------
   1. Design System Tokens & Base Setup
------------------------------------------------------------- */
:root {
  --primary-dark: #1E1713;
  --orange: #E15B31;
  --orange-hover: #C8441D;
  --orange-light: #FFF0EA;
  --bg-light: #FAF6F0;
  --white: #FFFFFF;
  --text-primary: #1E1713;
  --text-secondary: #5C524C;
  --text-muted: #80756E;
  --border-color: #E8E2D9;
  --border-dark: #344054;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  --font-headings: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 30px rgba(16, 24, 40, 0.03);
  --shadow-lg: 0 12px 32px -4px rgba(16, 24, 40, 0.08);
  
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* -------------------------------------------------------------
   2. Reusable Utility Styles
------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   3. Navigation Bar Styling
------------------------------------------------------------- */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 800;
  border-radius: var(--radius-sm);
  font-size: 18px;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
}

.logo-text .dot {
  color: var(--orange);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  transition: var(--transition-smooth);
  transform-origin: left center;
}

/* -------------------------------------------------------------
   4. Hero Section & Interactive Visual
------------------------------------------------------------- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 96px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 580px;
}

.hero-content .eyebrow {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Premium Video Visual Styling */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-container {
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(30, 23, 19, 0.06);
  transition: var(--transition-smooth);
}

.hero-video-container:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 91, 49, 0.3);
  box-shadow: 0 30px 64px rgba(225, 91, 49, 0.12);
}

.hero-video-player {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ecosystem-graphic {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.network-svg {
  filter: drop-shadow(0 10px 30px rgba(225, 91, 49, 0.08));
}

/* SVG Elements style classes */
.conn-line {
  stroke: var(--border-color);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: dash 30s linear infinite;
  transition: var(--transition-smooth);
}

.conn-line.active {
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-dasharray: none;
  animation: none;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.central-hub {
  cursor: pointer;
}

.hub-bg {
  fill: var(--primary-dark);
  transition: var(--transition-smooth);
}

.hub-inner {
  fill: var(--white);
  stroke: var(--orange);
  stroke-width: 2;
  transition: var(--transition-smooth);
}

.hub-text-main {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 14px;
  fill: var(--primary-dark);
}

.hub-text-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  fill: var(--orange);
}

.outer-node {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.node-bg {
  fill: var(--white);
  stroke: var(--border-color);
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.node-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  fill: var(--primary-dark);
  transition: var(--transition-smooth);
}

.node-bg-small {
  stroke-dasharray: 3 3;
}

.node-text-small {
  font-size: 9px;
  fill: var(--text-muted);
}

/* Hover States for Interactive Graphic */
.outer-node:hover .node-bg {
  stroke: var(--orange);
  fill: var(--orange-light);
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(225, 91, 49, 0.2));
}

.outer-node:hover .node-text {
  fill: var(--orange-hover);
  font-weight: 700;
}

.central-hub:hover .hub-bg {
  fill: var(--orange);
}

.central-hub:hover .hub-text-main {
  fill: var(--white);
}

.central-hub:hover .hub-text-sub {
  fill: var(--white);
}

/* -------------------------------------------------------------
   5. Company Trust Strip
------------------------------------------------------------- */
.trust-strip-section {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1.5px solid rgba(255, 255, 255, 0.95);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.95);
  padding: 24px 0;
  position: relative;
  z-index: 10;
  box-shadow: 
    0 4px 24px rgba(30, 23, 19, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-block {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
  cursor: pointer;
}

.trust-block.active {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 15px rgba(30, 23, 19, 0.03);
}

.trust-num {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.25;
  transition: var(--transition-smooth);
}

.trust-block.active .trust-num {
  opacity: 1;
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(225, 91, 49, 0.25);
}

.trust-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition-smooth);
}

.trust-block.active .trust-title {
  color: var(--orange);
}

.trust-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.trust-block.active .trust-desc {
  color: var(--text-secondary);
}

.trust-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--orange);
  transition: none;
}

@media (max-width: 768px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .trust-block {
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   6. Solutions Section
------------------------------------------------------------- */
.solutions-section {
  padding: 96px 0;
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(rgba(225, 91, 49, 0.04) 1px, transparent 0),
    radial-gradient(rgba(225, 91, 49, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  position: relative;
  overflow: hidden;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.solution-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: 
    0 8px 32px 0 rgba(30, 23, 19, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.solution-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--orange);
  box-shadow: 
    0 16px 40px 0 rgba(225, 91, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.solution-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--orange);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon-wrapper {
  background-color: var(--orange-light);
  color: var(--orange-hover);
}

.solution-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.solution-card-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Additional Solution Areas (Pills) */
.capabilities-additional {
  margin-top: 64px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 48px;
}

.additional-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.pill-tab {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  background-color: var(--orange-light);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.pill-tab:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.pill-tab.active {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(225, 91, 49, 0.2);
}

/* Tab Layout Grid & Glassmorphic Content */
.tab-content-container {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 40px;
  box-shadow: 
    0 12px 40px rgba(30, 23, 19, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tab-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.tab-info-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.tab-info-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.tab-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.tab-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
}

.glass-image-container {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 8px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(30, 23, 19, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.glass-image-container:hover {
  transform: scale(1.02);
  border-color: rgba(225, 91, 49, 0.3);
  box-shadow: 0 12px 32px rgba(225, 91, 49, 0.08);
}

.tab-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustment for tab-grid */
@media (max-width: 768px) {
  .tab-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tab-content-container {
    padding: 32px 24px;
  }
}

/* -------------------------------------------------------------
   7. Capabilities Section (Dark Background)
------------------------------------------------------------- */
.capabilities-dark-section {
  padding: 96px 0;
  background-color: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cap-glow-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 91, 49, 0.12) 0%, rgba(225, 91, 49, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.section-header-light {
  position: relative;
  z-index: 2;
}

.section-header-light .section-title {
  color: var(--white);
}

.section-header-light .section-description {
  color: var(--text-muted);
}

.eyebrow-orange {
  color: var(--orange);
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.dark-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.dark-card:hover {
  border-color: var(--orange);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(225, 91, 49, 0.15);
}

.dark-card-num {
  display: block;
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.7;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.dark-card:hover .dark-card-num {
  transform: translateY(-2px);
  opacity: 1;
  text-shadow: 0 0 12px rgba(225, 91, 49, 0.4);
}

.dark-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.dark-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* -------------------------------------------------------------
   8. Industries Section
------------------------------------------------------------- */
.industries-section {
  padding: 96px 0;
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(rgba(225, 91, 49, 0.04) 1px, transparent 0),
    radial-gradient(rgba(225, 91, 49, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  position: relative;
  overflow: hidden;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.industry-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: 
    0 8px 32px 0 rgba(30, 23, 19, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.industry-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--orange-hover);
  box-shadow: 
    0 16px 40px 0 rgba(225, 91, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.industry-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.industry-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* -------------------------------------------------------------
   9. How We Work (Process Sequence)
------------------------------------------------------------- */
.how-we-work-section {
  padding: 96px 0;
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(rgba(225, 91, 49, 0.05) 1px, transparent 0),
    radial-gradient(rgba(225, 91, 49, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.how-we-work-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(225, 91, 49, 0.06) 0%, rgba(225, 91, 49, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.how-we-work-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225, 91, 49, 0.04) 0%, rgba(225, 91, 49, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.process-orbit-container {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 680px;
  margin: 64px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-orbit-track {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1.5px dashed rgba(225, 91, 49, 0.2);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: rotateTrack 120s linear infinite;
}

@keyframes rotateTrack {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.process-orbit-center {
  position: absolute;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  box-shadow: 
    0 12px 32px rgba(30, 23, 19, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.process-orbit-center-title {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.process-orbit-center-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.process-orbit-card {
  position: absolute;
  width: 250px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 
    0 8px 32px 0 rgba(30, 23, 19, 0.03), 
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  text-align: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.process-orbit-card:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--orange);
  box-shadow: 
    0 16px 40px 0 rgba(225, 91, 49, 0.12), 
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.process-num-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  margin: 0 auto 24px auto;
  transition: var(--transition-smooth);
}

.process-orbit-card:hover .process-num-box {
  border-color: var(--orange);
  background-color: var(--orange-light);
}

.process-num {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}

.process-orbit-card:hover .process-num {
  color: var(--orange);
}

/* Set initial static orbital positions for desktop screens */
@media (min-width: 993px) {
  .process-orbit-card:nth-child(3) { transform: rotate(270deg) translate(250px) rotate(-270deg); }
  .process-orbit-card:nth-child(4) { transform: rotate(0deg) translate(250px) rotate(0deg); }
  .process-orbit-card:nth-child(5) { transform: rotate(90deg) translate(250px) rotate(-90deg); }
  .process-orbit-card:nth-child(6) { transform: rotate(180deg) translate(250px) rotate(-180deg); }
}

/* Fallback responsive grid layout for mobile/tablet screens */
@media (max-width: 992px) {
  .process-orbit-container {
    height: auto;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .process-orbit-track,
  .process-orbit-center {
    display: none;
  }
  
  .process-orbit-card {
    position: static;
    width: 100%;
    transform: none !important;
    padding: 32px 20px;
  }
}

@media (max-width: 576px) {
  .process-orbit-container {
    grid-template-columns: 1fr;
  }
}

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.process-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 220px;
  margin: 0 auto;
}

/* -------------------------------------------------------------
   10. About Section
------------------------------------------------------------- */
.about-section {
  padding: 96px 0;
  background-color: var(--bg-light);
}

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

.about-info {
  position: sticky;
  top: 120px;
}

.about-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* -------------------------------------------------------------
   11. Corporate Positioning Statement
------------------------------------------------------------- */
.statement-section {
  padding: 120px 0;
  background-color: var(--primary-dark);
  color: var(--white);
  text-align: center;
  position: relative;
}

.brand-statement {
  font-family: var(--font-headings);
  font-size: 36px;
  line-height: 1.4;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}

.dust-char {
  display: inline-block;
  opacity: 0;
  filter: blur(15px);
  transform: translate(var(--dx), var(--dy)) scale(1.6);
  transition: opacity 1.8s cubic-bezier(0.1, 0.8, 0.2, 1), 
              filter 1.8s cubic-bezier(0.1, 0.8, 0.2, 1), 
              transform 1.8s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.brand-statement.active .dust-char,
.statement-text.active .dust-char {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0, 0) scale(1);
}

/* -------------------------------------------------------------
   12. Contact Section & B2B Form
------------------------------------------------------------- */
.contact-section {
  padding: 96px 0;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
}

.contact-lead-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item.align-top {
  align-items: flex-start;
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--bg-light);
  color: var(--orange);
  border-radius: var(--radius-sm);
}

.contact-item-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
}

.link-accent:hover {
  color: var(--orange);
}

.address-text {
  font-style: normal;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* B2B Enquiry Form styling */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--primary-dark);
  transition: var(--transition-smooth);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(225, 91, 49, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23667085' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 12px;
  font-size: 16px;
  padding: 14px 28px;
}

.form-submit-btn .btn-loader {
  display: none;
}

.form-submit-btn.submitting .btn-text {
  display: none;
}

.form-submit-btn.submitting .btn-loader {
  display: inline-block;
}

.error-msg {
  display: none;
  font-size: 12px;
  color: #D92D20;
  margin-top: 4px;
  font-weight: 500;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: #FDA29B;
  background-color: #FEF3F2;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #ECFDF3;
  color: #027A48;
  border: 1px solid #D1FADF;
}

.form-status.error {
  display: block;
  background-color: #FEF3F2;
  color: #B42318;
  border: 1px solid #FEE4E2;
}

.contact-cta-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 10px;
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.contact-cta-arrow:hover {
  color: var(--orange-hover);
  transform: translateX(4px);
}

/* -------------------------------------------------------------
   13. Footer Styling
------------------------------------------------------------- */
.footer-wrapper {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-column {
  max-width: 320px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-logo .logo-icon {
  background-color: var(--orange);
}

.footer-description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-header {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  font-size: 14px;
}

.footer-link:hover {
  color: var(--orange-light);
  transform: translateX(2px);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-address {
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
}

/* -------------------------------------------------------------
   14. Responsive Layout Queries (Mobile & Tablet)
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .about-grid, .contact-grid {
    gap: 48px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dark-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu */
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-actions {
    margin-right: 12px;
  }
  
  .nav-cta-btn {
    display: none; /* Hide nav CTA on mobile in favor of hamburger */
  }

  /* Hamburger toggle animation states */
  .mobile-toggle.active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
  }
  .mobile-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
  }

  /* Structural adjustments */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual-wrapper {
    order: -1; /* Graphic above text on mobile */
    max-width: 360px;
    margin: 0 auto;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solutions-grid, .dark-grid, .industries-grid, .process-grid, .contact-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-info {
    position: static;
  }

  .contact-form-wrapper {
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .brand-statement {
    font-size: 26px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* Pulse glow style for random node pulsing in JS auto-cycle */
.pulse-glow {
  transform: scale(1.05);
}
.pulse-glow .node-bg {
  stroke: var(--orange) !important;
  fill: var(--orange-light) !important;
  filter: drop-shadow(0 4px 12px rgba(225, 91, 49, 0.25));
}
.pulse-glow .node-text {
  fill: var(--orange-hover) !important;
  font-weight: 700;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* -------------------------------------------------------------
   13. Home Hub Section
------------------------------------------------------------- */
.home-hub-section {
  padding: 80px 0 120px 0;
  background-color: var(--bg-light);
  position: relative;
}

.home-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hub-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: 
    0 4px 30px rgba(30, 23, 19, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.hub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 91, 49, 0.4);
  box-shadow: 
    0 12px 40px rgba(225, 91, 49, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hub-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.hub-card:hover .hub-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.hub-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.hub-card:hover .hub-card-title {
  color: var(--orange);
}

.hub-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .home-hub-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
