/* ═══════════════════════════════════════════════════════
   SOURCECORE LOGISTICS PORTAL — Global Design System
   style.css
   ═══════════════════════════════════════════════════════ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — CSS Custom Properties
   ═══════════════════════════════════════════════════════ */
:root {
  /* Colors */
  --color-primary:        #0A1628;
  --color-primary-mid:    #0D2550;
  --color-primary-light:  #1A3A6E;
  --color-accent:         #E87B2C;
  --color-accent-soft:    #F0A050;
  --color-gold:           #F5C842;
  --color-white:          #FFFFFF;
  --color-off-white:      #F4F6FB;
  --color-text-light:     #CBD5E8;
  --color-text-muted:     #7A8BAA;
  --color-glass-bg:       rgba(255, 255, 255, 0.06);
  --color-glass-border:   rgba(255, 255, 255, 0.12);

  /* Gradients */
  --gradient-hero:    linear-gradient(135deg, #0A1628 0%, #0D2550 50%, #1A3A6E 100%);
  --gradient-accent:  linear-gradient(135deg, #E87B2C, #F5C842);
  --gradient-blue:    linear-gradient(135deg, #0D2550, #1565C0);
  --gradient-card:    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));

  /* Typography */
  --font-display:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 120px;

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  --shadow-card:  0 4px 24px rgba(10, 22, 40, 0.12);
  --shadow-card-hover: 0 20px 60px rgba(232, 123, 44, 0.2);
  --shadow-nav:   0 8px 40px rgba(10, 22, 40, 0.4);

  /* Transitions */
  --transition-fast:   0.2s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base:   0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow:   0.7s cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container-max: 1200px;
  --section-pad-desktop: 120px;
  --section-pad-mobile:  60px;
  --nav-height: 80px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-white);
  background: var(--color-primary);
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.page-transitioning {
  opacity: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.9rem, 3.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem);   font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem;  font-weight: 600; }
h6 { font-size: 1rem;    font-weight: 600; }

p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.font-mono {
  font-family: var(--font-mono);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT SYSTEM
   ═══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: var(--section-pad-desktop) 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-mobile) 0;
  }
}

/* Dark sections */
.section-dark {
  background: var(--gradient-hero);
  color: var(--color-white);
}

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

/* Light sections */
.section-light {
  background: var(--color-off-white);
  color: var(--color-primary);
}

.section-light h2,
.section-light h3 {
  color: var(--color-primary);
}

.section-light .section-sub {
  color: #4A5568;
}

.section-light .eyebrow {
  color: var(--color-accent);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-top: 20px;
  opacity: 0.85;
}

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Responsive split layout utility */
.split-layout {
  display: grid;
  grid-template-columns: var(--cols, 1fr 1fr);
  gap: var(--gap, 80px);
  align-items: var(--align, start);
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-layout { gap: 40px; }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr !important; gap: 32px; }
}

/* Flexbox utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 16px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* ═══════════════════════════════════════════════════════
   GLASS MORPHISM
   ═══════════════════════════════════════════════════════ */
.glass-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), var(--shadow-glass);
}

/* Light section cards */
.light-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.light-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-fast);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(232, 123, 44, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 123, 44, 0.5);
}

.btn-primary:focus-visible {
  outline: 2px solid #E87B2C;
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-ghost:focus-visible {
  outline: 2px solid #E87B2C;
  outline-offset: 3px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Pulse animation for primary CTA */
.btn-pulse {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  background: transparent;
  border-bottom: 1px solid transparent;
}

#main-nav.scrolled {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(10, 22, 40, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid #E87B2C;
  outline-offset: 2px;
}

/* Features dropdown trigger */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 680px;
  background: rgba(10, 22, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.mega-menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mega-menu-icon {
  width: 36px;
  height: 36px;
  background: rgba(232, 123, 44, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.mega-menu-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.mega-menu-content p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Nav CTA */
.nav-cta {
  margin-left: 16px;
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 40px;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
  text-decoration: none;
}

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

.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
#main-footer {
  background: var(--color-primary);
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
}

#main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

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

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

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(232, 123, 44, 0.08);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-muted);
  transition: background var(--transition-fast);
}

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

.footer-link:hover::before {
  background: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--color-accent);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(232, 123, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: blink 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 40px;
  background: var(--gradient-hero);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero-h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  background: linear-gradient(135deg, #FFFFFF 30%, #E87B2C 70%, #F5C842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-text-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Trust bar / stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Hero visual mockup */
.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
}

/* Dashboard mockup */
.dashboard-mockup {
  background: rgba(13, 37, 80, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red   { background: #FF5F57; }
.mockup-dot.amber { background: #FFBD2E; }
.mockup-dot.green { background: #28C941; }

.mockup-title-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-left: 8px;
}

.mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-status.active {
  background: #28C941;
  box-shadow: 0 0 8px rgba(40, 201, 65, 0.6);
  animation: blink 2s ease-in-out infinite;
}

.mockup-status.transit {
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(232, 123, 44, 0.6);
}

.mockup-status.pending {
  background: #F5C842;
  box-shadow: 0 0 6px rgba(245, 200, 66, 0.5);
}

.mockup-text {
  flex: 1;
}

.mockup-text-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 4px;
}

.mockup-text-line.short { width: 60%; }
.mockup-text-line.medium { width: 80%; }

.mockup-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.badge-green  { background: rgba(40, 201, 65, 0.15); color: #4ade80; }
.badge-amber  { background: rgba(232, 123, 44, 0.15); color: var(--color-accent); }
.badge-yellow { background: rgba(245, 200, 66, 0.15); color: #F5C842; }

.mockup-chart {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--gradient-accent);
  opacity: 0.7;
  animation: chartPulse 3s ease-in-out infinite;
}

.chart-bar:nth-child(2) { animation-delay: 0.3s; }
.chart-bar:nth-child(3) { animation-delay: 0.6s; }
.chart-bar:nth-child(4) { animation-delay: 0.9s; }
.chart-bar:nth-child(5) { animation-delay: 1.2s; }
.chart-bar:nth-child(6) { animation-delay: 1.5s; }

/* Route line */
.mockup-route {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.route-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: rgba(232, 123, 44, 0.2);
}

.route-dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(232, 123, 44, 0.7);
}

.route-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-text-muted);
  text-align: center;
}

.route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) var(--progress, 100%), rgba(255,255,255,0.1) var(--progress, 100%));
  border-radius: 2px;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════════════════ */
.feature-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(232, 123, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.feature-card-icon.dark-bg {
  background: rgba(232, 123, 44, 0.15);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.light-card .feature-card p {
  color: #4A5568;
}

.feature-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--transition-fast);
  text-decoration: none;
}

.feature-card-link:hover {
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   FLOW DIAGRAM
   ═══════════════════════════════════════════════════════ */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 32px 0;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.flow-pill {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.flow-pill svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.flow-connector {
  width: 32px;
  height: 2px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.flow-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  animation: flowLine 2s linear infinite;
}

/* ═══════════════════════════════════════════════════════
   PAIN POINT CARDS
   ═══════════════════════════════════════════════════════ */
.pain-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-left: 4px solid #EF4444;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(239, 68, 68, 0.1);
}

.pain-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pain-card-icon svg {
  width: 22px;
  height: 22px;
  color: #EF4444;
}

.pain-card h3 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 0.92rem;
  color: #4A5568;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232, 123, 44, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   BENEFITS GRID
   ═══════════════════════════════════════════════════════ */
.benefit-block {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.07);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  border-radius: 0 0 0 0;
}

.benefit-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.benefit-block:hover::before {
  transform: scaleX(1);
}

.benefit-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.benefit-block h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.benefit-block p {
  font-size: 0.92rem;
  color: #4A5568;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(232, 123, 44, 0.3);
  background: rgba(232, 123, 44, 0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question:focus-visible {
  outline: 2px solid #E87B2C;
  outline-offset: -2px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-text-light);
}

.faq-item.open .faq-icon svg {
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.97rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid #E2E8F0;
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 123, 44, 0.12);
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #E87B2C;
  outline-offset: 2px;
}

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

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

@media (max-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* Thank you state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232, 123, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE — VERTICAL
   ═══════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -38px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid rgba(232, 123, 44, 0.3);
  box-shadow: 0 0 16px rgba(232, 123, 44, 0.4);
}

.timeline-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   TABS
   ═══════════════════════════════════════════════════════ */
.tab-nav {
  display: inline-flex;
  gap: 4px;
  background: rgba(10, 22, 40, 0.06);
  border-radius: var(--radius-md);
  padding: 4px;
  margin: 0 auto 48px;
  border: 1px solid #E2E8F0;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: #4A5568;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.tab-btn:hover {
  color: var(--color-primary);
  background: rgba(10, 22, 40, 0.04);
}

.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.15);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ═══════════════════════════════════════════════════════
   PIPELINE — STEP TRACKER
   ═══════════════════════════════════════════════════════ */
.pipeline {
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 24px 0;
  gap: 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 90px;
}

.pipeline-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

.pipeline-step.done .pipeline-node {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 16px rgba(232, 123, 44, 0.35);
}

.pipeline-step.active .pipeline-node {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(232, 123, 44, 0.15);
}

.pipeline-node svg {
  width: 16px;
  height: 16px;
  color: #CBD5E8;
}

.pipeline-step.done .pipeline-node svg {
  color: var(--color-white);
}

.pipeline-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4A5568;
  text-align: center;
  max-width: 80px;
}

.pipeline-step.done .pipeline-label {
  color: var(--color-primary);
}

.pipeline-connector {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
  min-width: 24px;
  max-width: 48px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.pipeline-connector.done {
  background: var(--gradient-accent);
}

/* ═══════════════════════════════════════════════════════
   FEATURES PAGE — OVERVIEW CARDS
   ═══════════════════════════════════════════════════════ */
.feature-card {
  padding: 40px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   FEATURE DETAIL PAGES
   ═══════════════════════════════════════════════════════ */
.feature-hero {
  background: var(--gradient-hero);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.feature-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.capability-card {
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.capability-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.role-card {
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.role-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 123, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════
   WORLD MAP / SVG ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.world-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.7;
}

.trade-route {
  stroke: var(--color-accent);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawRoute 3s ease-in-out forwards;
}

.trade-route:nth-child(2) { animation-delay: 0.5s; }
.trade-route:nth-child(3) { animation-delay: 1s; }
.trade-route:nth-child(4) { animation-delay: 1.5s; }
.trade-route:nth-child(5) { animation-delay: 2s; }

.hub-dot {
  fill: var(--color-accent);
  animation: blink 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   DIFFERENTIATOR BOXES
   ═══════════════════════════════════════════════════════ */
.differentiator {
  border: 1px solid rgba(232, 123, 44, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: rgba(232, 123, 44, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
}

.differentiator-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(232, 123, 44, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.differentiator p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   ROTATING BENEFIT CARD
   ═══════════════════════════════════════════════════════ */
.rotating-card {
  padding: 40px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rotating-quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotating-author {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-top: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   PRIVACY & TERMS PAGES
   ═══════════════════════════════════════════════════════ */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--color-primary);
  padding-bottom: 12px;
  border-bottom: 1px solid #E2E8F0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: var(--color-primary);
}

.legal-content p {
  color: #4A5568;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: #4A5568;
  font-size: 0.97rem;
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════
   MISCELLANEOUS UTILITIES
   ═══════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-auto     { margin-top: auto; }
.mb-0        { margin-bottom: 0; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  background: rgba(232, 123, 44, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(232, 123, 44, 0.2);
  letter-spacing: 0.05em;
}

.section-light .tag {
  background: rgba(232, 123, 44, 0.08);
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px 0;
}

.section-light .divider {
  border-top-color: #E2E8F0;
}

/* Trust items (About CTA) */
.trust-items {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

/* Avatar ring */
.avatar-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(232, 123, 44, 0.15), rgba(245, 200, 66, 0.1));
  box-shadow: 0 0 0 6px rgba(232, 123, 44, 0.08);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════ */
@media print {
  #main-nav, #scroll-progress, .mobile-menu { display: none; }
  .hero-section { min-height: auto; }
}
