﻿/* ==========================================================================
   BASIOX CONTROLS â€” Design System & Global Styles
   ========================================================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors â€” Siemens Teal Edition */
  --forest:      #00112B;   /* Primary dark navy */
  --forest-mid:  #002B5C;   /* Mid navy */
  --forest-light:#004B8C;   /* Light navy */
  --sky:         #00BEDC;   /* Brand accent electric teal */
  --sky-light:   #66D9EE;   /* Light teal */
  --sky-pale:    #E0F7FC;   /* Pale teal background */
  --teal:        #009999;   /* Deep teal */
  --white:       #FFFFFF;
  --off-white:   #F4F8FB;
  --light-grey:  #EDF2F6;
  --mid-grey:    #8D99AE;
  --dark-grey:   #1B2A3B;
  --text-primary:#0A1628;   /* Very dark navy-black */
  --text-secondary: #1F3766;
  --text-muted:  #5A7A99;

  /* Semantic */
  --bg-page:     #F4F8FB;
  --bg-dark:     #000B1A;   /* Hero / dark sections */
  --bg-card:     #FFFFFF;
  --border:      rgba(0, 17, 43, 0.10);

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #000B1A 0%, #00112B 55%, #007993 100%);
  --grad-accent: linear-gradient(135deg, #00BEDC, #009999);
  --grad-green:  linear-gradient(135deg, #00112B, #004B8C);
  --grad-card:   linear-gradient(145deg, #FFFFFF 0%, #EDF5FB 100%);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,17,43,0.08), 0 1px 2px rgba(0,17,43,0.06);
  --shadow-md:   0 4px 16px rgba(0,17,43,0.10), 0 2px 6px rgba(0,17,43,0.06);
  --shadow-lg:   0 10px 40px rgba(0,17,43,0.14), 0 4px 14px rgba(0,17,43,0.08);
  --shadow-xl:   0 20px 60px rgba(0,17,43,0.18);
  --shadow-glow: 0 0 30px rgba(0,190,220,0.28);

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py:  100px;
  --container:   1280px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    180ms;
  --dur-med:     320ms;
  --dur-slow:    500ms;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: padding 0.3s ease;
  transition: background var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              padding var(--dur-med) var(--ease);
  padding: 8px 0;
}

#navbar.scrolled {
  background: rgba(6, 26, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(72,202,228,0.1), 0 4px 24px rgba(0,0,0,0.3);
  padding: 4px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 140px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

#navbar.scrolled .nav-logo-img {
  height: 90px;
}

.footer-logo-img {
  height: 160px;
  width: auto;
  display: block;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-float svg {
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.btn-sky {
  background: var(--sky);
  color: var(--forest);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(72,202,228,0.3);
}
.btn-sky:hover {
  background: #5ED6ED;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(72,202,228,0.4);
}

.btn-forest {
  background: var(--grad-green);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-forest:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,26,18,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--sky); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: hero-zoom 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,17,43,0.88) 0%,
    rgba(0,17,43,0.70) 50%,
    rgba(0,40,60,0.60) 100%);
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* Geometric grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(72,202,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72,202,228,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 30%, transparent 80%);
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--sky);
  top: -200px; right: 0;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--forest-light);
  bottom: -100px; left: 10%;
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: var(--teal);
  top: 30%; left: 40%;
  animation-delay: 1.5s;
  opacity: 0.15;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 160px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(72,202,228,0.12);
  border: 1px solid rgba(72,202,228,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--sky);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 520px;
}

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

.hero-trust {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 40px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.hero-trust-number span {
  color: var(--sky);
}

.hero-trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.hero-cards-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 500px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(12px);
  transition: all var(--dur-med) var(--ease);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-card:nth-child(2) { animation-delay: 1s; }
.hero-card:nth-child(3) { animation-delay: 2s; }
.hero-card:nth-child(4) { animation-delay: 3s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(72,202,228,0.3);
}

.hero-card-icon {
  width: 40px; height: 40px;
  background: var(--grad-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hero-card-icon svg { color: var(--white); }

.hero-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(72,202,228,0.6), transparent);
}

/* ==========================================================================
   LOGOS / SOCIAL PROOF BAR
   ========================================================================== */
/* --- Partners Showcase --- */
.partners-showcase {
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}

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

.partners-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}

.partners-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

.partners-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.partner-marquee-wrapper {
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partner-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: partner-scroll 40s linear infinite;
}

.partner-marquee-wrapper:hover .partner-marquee-track {
  animation-play-state: paused;
}

@keyframes partner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-showcase-card {
  flex: 0 0 300px;
  width: 300px;
}

.partner-showcase-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  cursor: default;
}
.partner-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}

.partner-showcase-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.partner-showcase-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.partner-showcase-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  line-height: 1;
}

.partner-showcase-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 3px;
}

.partner-showcase-country {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.partner-showcase-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.partner-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.partner-showcase-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--bg-page);
  color: var(--text-muted);
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}

.partner-logo-box {
  width: 120px !important;
  height: 52px !important;
  background: #ffffff !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  box-sizing: border-box;
}

.partner-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .partners-title { font-size: 28px; }
  .partner-showcase-card { flex: 0 0 260px; width: 260px; }
  .partner-marquee-track { animation-duration: 28s; }
}

/* ==========================================================================
   SECTION SHARED
   ========================================================================== */
.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-mid {
  background: var(--off-white);
}

.section-teal {
  background: linear-gradient(135deg, #061A12 0%, #0B3D2E 100%);
}

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

.section-header.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-light);
  border-radius: 2px;
}

.section-dark .eyebrow,
.section-teal .eyebrow {
  color: var(--sky);
}
.section-dark .eyebrow::before,
.section-teal .eyebrow::before {
  background: var(--sky);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-dark .section-title,
.section-teal .section-title {
  color: var(--white);
}

.section-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-dark .section-body,
.section-teal .section-body {
  color: rgba(255,255,255,0.65);
}

/* ==========================================================================
   ABOUT / INTRO SECTION
   ========================================================================== */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.about-photo-wrap:hover .about-photo {
  transform: scale(1.04);
}

/* Subtle dark gradient at bottom of about photo */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,17,43,0.65), transparent);
  pointer-events: none;
}

.about-photo-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,17,43,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,190,220,0.25);
  border-radius: 14px;
  padding: 16px 22px;
  z-index: 2;
}

.about-photo-stat-card--2 {
  left: auto;
  right: 24px;
  bottom: 24px;
}

.about-photo-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
}

.about-photo-stat-num sup {
  font-size: 16px;
}

.about-photo-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  font-weight: 500;
}

.about-mini-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.about-mini-num sup {
  font-size: 20px;
  font-weight: 700;
  color: var(--sky);
}

.about-mini-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
}

.about-badge-icon {
  width: 44px; height: 44px;
  background: var(--sky-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.about-badge-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--dur-fast) var(--ease);
}
.pillar-item:hover {
  border-color: rgba(11,61,46,0.2);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 40px; height: 40px;
  background: var(--sky-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.pillar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SOLUTIONS â€” unified grid + drawer
   ========================================================================== */
.sol-unified {
  background: var(--off-white);
}

/* 3-col card grid */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.sol-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.sol-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
  border-color: rgba(0,190,220,0.3);
}

.sol-card.active {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0,190,220,0.15);
}

.sol-card-head {
  padding: 28px 24px 20px;
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sol-card-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(255,255,255,0.08) 0%, transparent 55%);
}

.sol-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.sol-card-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  bottom: 8px; right: 16px;
}

.sol-card-body {
  padding: 20px 22px 22px;
}

/* Product-photo card head */
.sol-card-head--product {
  min-height: 220px;
  overflow: hidden;
  padding: 0;
  align-items: flex-start;
}

.sol-product-glow { display: none; }

.sol-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 1;
}

.sol-card-head--product .sol-card-num {
  position: absolute;
  bottom: 8px;
  right: 14px;
  z-index: 3;
  color: rgba(0,17,43,0.12);
}

.sol-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

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

.sol-card-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 16px;
}

.sol-card-tags span {
  font-size: 10px;
  font-weight: 700;
  background: var(--sky-pale);
  color: var(--teal);
  padding: 3px 9px;
  border-radius: 100px;
}

.sol-card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s;
}

.sol-card-toggle svg {
  transition: transform 0.3s;
}

.sol-card.active .sol-card-toggle svg {
  transform: rotate(180deg);
}

/* Row drawer â€” spans full grid width, sits after each row of cards */
.sol-row-drawer {
  display: none;
  grid-column: 1 / -1;
}
.sol-row-drawer.open { display: block; }
.sol-row-drawer .sol-drawer { display: none; }
.sol-row-drawer .sol-drawer.open { display: block; }

/* Detail drawer */
.sol-drawer {
  display: none;
  margin-top: 12px;
  background: var(--white);
  border: 1.5px solid var(--sky);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,190,220,0.10);
}

.sol-drawer.open { display: block; }

.sol-drawer-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 420px;
}

.sol-drawer-visual {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.sol-drawer-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}

.sol-visual-icon {
  width: 64px; height: 64px;
  background: rgba(72,202,228,0.15);
  border: 1px solid rgba(72,202,228,0.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.sol-visual-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  position: relative; z-index: 1;
}

.sol-visual-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  position: relative; z-index: 1;
  margin-top: -12px;
}

.sol-visual-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  position: relative; z-index: 1;
  margin-top: auto;
}

.sol-tag {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.80);
  font-size: 11px; font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

.sol-drawer-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sol-drawer-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 8px 0 14px;
}

.sol-drawer-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sol-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.sol-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.sol-feature-check {
  width: 20px; height: 20px;
  background: rgba(11,61,46,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 1px;
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
#industries {
  background: var(--bg-dark);
  overflow: hidden;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  border: none;
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,10,20,0.92) 0%, rgba(0,10,20,0.5) 55%, rgba(0,10,20,0.15) 100%);
  transition: background 0.4s ease;
  z-index: 0;
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(to top, rgba(0,17,43,0.96) 0%, rgba(0,17,43,0.65) 55%, rgba(0,17,43,0.25) 100%);
}

.industry-card > *:not(.industry-card-overlay) {
  position: relative;
  z-index: 1;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Teal top accent on hover */
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.industry-card:hover::before { transform: scaleX(1); }

/* Zoom photo on hover */
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: -1;
}
.industry-card:hover { background-size: 110%; }

.industry-icon {
  width: 48px; height: 48px;
  background: rgba(0,190,220,0.15);
  border: 1px solid rgba(0,190,220,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  margin-bottom: 16px;
}

.industry-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.industry-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.industry-solutions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.industry-sol-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(72,202,228,0.7);
  background: rgba(72,202,228,0.08);
  border-radius: 100px;
  padding: 3px 8px;
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
#partners {
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--dur-med) var(--ease);
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(11,61,46,0.15);
  transform: translateY(-4px);
}

.partner-card-logo {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.partner-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.partner-card-origin {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.partner-flag {
  font-size: 18px;
}

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

.partner-card-tag {
  display: inline-block;
  background: var(--sky-pale);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-top: 20px;
}

/* ==========================================================================
   TIMELINE SECTION â€” card grid redesign
   ========================================================================== */
.tl-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.tl-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(0,190,220,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(0,190,220,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.tl-section .eyebrow { color: var(--sky); }
.tl-section .section-title { color: var(--white); }
.tl-section .section-body  { color: rgba(255,255,255,0.65); }

.tl-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.tl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,190,220,0.12);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tl-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,190,220,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,190,220,0.3);
  border-color: rgba(0,190,220,0.35);
}

.tl-card:hover::after { opacity: 1; }

.tl-card--active {
  background: linear-gradient(135deg, rgba(0,190,220,0.14) 0%, rgba(0,17,43,0.6) 100%);
  border-color: rgba(0,190,220,0.45);
  box-shadow: 0 0 40px rgba(0,190,220,0.12);
}

.tl-card--active:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 60px rgba(0,190,220,0.2);
}

.tl-card-now {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--sky);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.tl-card-year {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,190,220,0.10);
  letter-spacing: -3px;
  margin-bottom: -12px;
  user-select: none;
}

.tl-card--active .tl-card-year { color: rgba(0,190,220,0.22); }

.tl-card-icon {
  width: 76px; height: 52px;
  border-radius: 14px;
  background: rgba(0,190,220,0.08);
  border: 1px solid rgba(0,190,220,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 8px 10px;
  transition: background 0.3s;
  position: relative;
  z-index: 2;
}

.tl-flag-icon {
  width: 56px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  display: block;
}
.tl-card:hover .tl-card-icon { background: rgba(0,190,220,0.22); }
.tl-card--active .tl-card-icon { background: rgba(0,190,220,0.2); border-color: rgba(0,190,220,0.4); }

.tl-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.tl-card-body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.tl-card-flag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sky);
  opacity: 0.85;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tl-flag-img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .tl-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tl-cards { grid-template-columns: 1fr; }
  .tl-card-year { font-size: 52px; }
}

/* ==========================================================================
   STATS â€” full-bleed photo, floating numbers, no boxes
   ========================================================================== */
.stats-hero-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.stats-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1920&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.stats-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,8,26,0.93) 0%,
    rgba(0,17,43,0.82) 45%,
    rgba(0,35,50,0.75) 100%
  );
}

.stats-hero-inner {
  position: relative;
  z-index: 2;
}

.stats-hero-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-hero-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.stat-hero-item + .stat-hero-item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,190,220,0.4), transparent);
}

.stat-hero-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 16px;
}

.stat-hero-number .count { color: var(--sky); }

.stat-hero-divider {
  width: 28px;
  height: 3px;
  background: var(--sky);
  border-radius: 2px;
  margin: 0 auto 14px;
  opacity: 0.75;
}

.stat-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 900px) {
  .stats-hero-grid { flex-wrap: wrap; gap: 40px 0; }
  .stat-hero-item { flex: 0 0 33.33%; }
  .stat-hero-item + .stat-hero-item::before { display: none; }
  .stat-hero-number { font-size: 52px; }
}
@media (max-width: 540px) {
  .stat-hero-item { flex: 0 0 50%; }
  .stat-hero-number { font-size: 44px; }
}

/* legacy selectors kept so old responsive rules don't break */
.stats-grid { display: none; }
.stat-item, .stat-number, .stat-label { display: none; }

/* ==========================================================================
   ROADMAP â€” Bento Mission Tiles
   ========================================================================== */
.rm-section {
  position: relative;
  background: #EDF8F8;
  padding: 90px 0 110px;
  overflow: hidden;
}

/* Dot grid background */
.rm-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,150,180,0.20) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.rm-inner { position: relative; z-index: 2; }

.rm-header { text-align: center; margin-bottom: 56px; }
.rm-section .eyebrow { color: var(--sky); }
.rm-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: var(--bg-dark);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.rm-subtitle {
  font-size: 15px;
  color: rgba(0,17,43,0.55);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Bento grid ---- */
.rm-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Tile layout: 1+2 on left 2Ã—2, tile 3 spans right column both rows, 4+5 on bottom left */
.rm-tile--1 { grid-column: 1; grid-row: 1; }
.rm-tile--2 { grid-column: 2; grid-row: 1; }
.rm-tile--3 { grid-column: 3; grid-row: 1 / 3; }
.rm-tile--4 { grid-column: 1; grid-row: 2; }
.rm-tile--5 { grid-column: 2; grid-row: 2; }

/* Base tile */
.rm-tile {
  position: relative;
  background: #0d1626;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.rm-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.16);
}

/* Colored left accent bar */
.rm-tile-accent {
  position: absolute;
  left: 0; top: 20px; bottom: 20px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  transition: top 0.3s, bottom 0.3s;
}

.rm-tile:hover .rm-tile-accent { top: 10px; bottom: 10px; }

/* Individual accent colors */
.rm-tile--1 .rm-tile-accent { background: #3B82F6; }
.rm-tile--2 .rm-tile-accent { background: #06B6D4; }
.rm-tile--3 .rm-tile-accent { background: #00E5A0; }
.rm-tile--4 .rm-tile-accent { background: #F59E0B; }
.rm-tile--5 .rm-tile-accent { background: #E879F9; }

/* Hover glow matching accent */
.rm-tile--1:hover { box-shadow: 0 20px 60px rgba(59,130,246,0.15), 0 0 0 1px rgba(59,130,246,0.2); }
.rm-tile--2:hover { box-shadow: 0 20px 60px rgba(6,182,212,0.15), 0 0 0 1px rgba(6,182,212,0.2); }
.rm-tile--3:hover { box-shadow: 0 20px 60px rgba(0,229,160,0.18), 0 0 0 1px rgba(0,229,160,0.25); }
.rm-tile--4:hover { box-shadow: 0 20px 60px rgba(245,158,11,0.15), 0 0 0 1px rgba(245,158,11,0.2); }
.rm-tile--5:hover { box-shadow: 0 20px 60px rgba(232,121,249,0.15), 0 0 0 1px rgba(232,121,249,0.2); }

/* Large year watermark */
.rm-tile-yr {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s;
}

.rm-tile:hover .rm-tile-yr { color: rgba(255,255,255,0.10); }
.rm-tile--3 .rm-tile-yr { font-size: 90px; }

/* Top row: num + icon */
.rm-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.rm-tile-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.30);
  text-transform: uppercase;
}

/* Pictorial SVG illustration â€” no box, raw artwork */
.rm-tile-visual {
  margin-bottom: 18px;
}

.rm-tile-visual svg {
  width: 72px;
  height: 72px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.rm-tile--1:hover .rm-tile-visual svg { transform: translateY(-3px); filter: drop-shadow(0 4px 12px rgba(59,130,246,0.4)); }
.rm-tile--2:hover .rm-tile-visual svg { transform: translateY(-3px); filter: drop-shadow(0 4px 12px rgba(6,182,212,0.4)); }
.rm-tile--3:hover .rm-tile-visual svg { transform: translateY(-3px); filter: drop-shadow(0 4px 14px rgba(0,229,160,0.45)); }
.rm-tile--4:hover .rm-tile-visual svg { transform: translateY(-3px); filter: drop-shadow(0 4px 12px rgba(245,158,11,0.4)); }
.rm-tile--5:hover .rm-tile-visual svg { transform: translateY(-3px); filter: drop-shadow(0 4px 12px rgba(232,121,249,0.4)); }

/* Title */
.rm-tile-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.rm-tile--3 .rm-tile-title { font-size: 24px; }

/* Description */
.rm-tile-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin-bottom: 20px;
}

.rm-tile--3 .rm-tile-desc { font-size: 14px; color: rgba(255,255,255,0.55); }

/* Tags */
.rm-tile-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.rm-tile-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
}

.rm-tile--1 .rm-tile-tags span { color: #60A5FA; background: rgba(59,130,246,0.10); border: 1px solid rgba(59,130,246,0.2); }
.rm-tile--2 .rm-tile-tags span { color: #22D3EE; background: rgba(6,182,212,0.10); border: 1px solid rgba(6,182,212,0.2); }
.rm-tile--3 .rm-tile-tags span { color: #00E5A0; background: rgba(0,229,160,0.10); border: 1px solid rgba(0,229,160,0.25); }
.rm-tile--4 .rm-tile-tags span { color: #FBBF24; background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.2); }
.rm-tile--5 .rm-tile-tags span { color: #E879F9; background: rgba(232,121,249,0.10); border: 1px solid rgba(232,121,249,0.2); }

/* Featured tile (tile 3) extras */
.rm-tile--featured {
  background: linear-gradient(160deg, #0d1f1a 0%, #0d1626 60%);
  border-color: rgba(0,229,160,0.2);
}

.rm-tile-featured-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00E5A0;
  background: rgba(0,229,160,0.12);
  border: 1px solid rgba(0,229,160,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* Animated pulse ring on featured tile */
.rm-tile-pulse-ring {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,229,160,0.3);
  animation: rm-tile-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes rm-tile-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Responsive */
@media (max-width: 900px) {
  .rm-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .rm-tile--1 { grid-column: 1; grid-row: auto; }
  .rm-tile--2 { grid-column: 2; grid-row: auto; }
  .rm-tile--3 { grid-column: 1 / 3; grid-row: auto; }
  .rm-tile--4 { grid-column: 1; grid-row: auto; }
  .rm-tile--5 { grid-column: 2; grid-row: auto; }
  .rm-tile--3 .rm-tile-title { font-size: 20px; }
}

@media (max-width: 560px) {
  .rm-bento { grid-template-columns: 1fr; gap: 12px; }
  .rm-tile--1, .rm-tile--2, .rm-tile--3, .rm-tile--4, .rm-tile--5 {
    grid-column: 1; grid-row: auto;
  }
  .rm-tile-yr { font-size: 60px; }
  .rm-tile--3 .rm-tile-yr { font-size: 60px; }
}

/* ==========================================================================
   CTA / RFQ SECTION
   ========================================================================== */
#rfq {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

#rfq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(72,202,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72,202,228,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.rfq-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.rfq-text .section-title { font-size: 40px; margin-bottom: 16px; }
.rfq-text .section-body { margin-bottom: 36px; }

.rfq-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.rfq-contact-icon {
  width: 44px; height: 44px;
  background: rgba(72,202,228,0.1);
  border: 1px solid rgba(72,202,228,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}

.rfq-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.rfq-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* RFQ Form */
.rfq-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  backdrop-filter: blur(16px);
}

.rfq-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.rfq-form p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.form-control {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  width: 100%;
  transition: all var(--dur-fast);
  outline: none;
}

.form-control::placeholder { color: rgba(255,255,255,0.3); }

.form-control:focus {
  border-color: rgba(72,202,228,0.5);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(72,202,228,0.1);
}

select.form-control option { background: #0B3D2E; color: white; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--grad-accent);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(72,202,228,0.35);
}

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 16px;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

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

.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(72,202,228,0.15);
  border: 2px solid rgba(72,202,228,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--sky);
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #030E08;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.footer-logo-name span { color: var(--sky); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 28px;
}

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

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--dur-fast);
}

.footer-social a:hover {
  background: rgba(72,202,228,0.1);
  border-color: rgba(72,202,228,0.2);
  color: var(--sky);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-offices {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-office {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-office::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sky);
  border-radius: 50%;
  opacity: 0.5;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  :root { --section-py: 72px; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }

  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-drawer-inner { grid-template-columns: 1fr; }
  .sol-drawer-visual { min-height: 160px; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }

  .rfq-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .container { padding: 0 16px; }

  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 0 64px; }
  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-trust { gap: 16px; flex-wrap: wrap; }
  .hero-trust-item { font-size: 13px; }

  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-body { font-size: 15px; }
  .eyebrow { font-size: 11px; }

  .sol-grid { grid-template-columns: 1fr; }

  .industries-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: clamp(32px, 8vw, 48px); }

  .partners-grid { grid-template-columns: 1fr; }

  .timeline-track { flex-direction: column; }
  .timeline-track::before { display: none; }
  .timeline-item { padding-top: 0; padding-left: 40px; margin-bottom: 24px; }
  .timeline-dot { top: 0; left: 0; }

  .roadmap-track { grid-template-columns: 1fr; }
  .roadmap-track::before { display: none; }
  .roadmap-item { padding-top: 0; padding-left: 44px; text-align: left; margin-bottom: 20px; }
  .roadmap-dot { left: 0; transform: none; top: 4px; }

  .rfq-form { padding: 28px 16px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .about-pillars { grid-template-columns: 1fr; }

  .cert-grid { gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .hero-content { padding: 88px 0 56px; }
  .hero-headline { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .about-pillars { grid-template-columns: 1fr; }

  .sol-card { padding: 20px 16px; }

  .footer-bottom { font-size: 12px; }
}

/* ==========================================================================
   ECOSYSTEM DIAGRAM
   ========================================================================== */
.eco-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 56px 0 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.eco-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: 160px;
}

.eco-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  position: relative;
}
.eco-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  border: 1.5px solid rgba(0,190,220,0.2);
}

.eco-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.eco-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 140px;
}

.eco-brands {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sky);
  opacity: 0.8;
}

.eco-connector {
  flex: 1;
  min-width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.eco-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,190,220,0.3), rgba(0,153,153,0.6), rgba(0,190,220,0.3));
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.eco-pulse {
  position: absolute;
  top: -2px;
  left: -60px;
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  animation: eco-flow 1.8s linear infinite;
  border-radius: 3px;
}

@keyframes eco-flow {
  from { left: -60px; }
  to { left: 100%; }
}

.eco-proto {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0,190,220,0.5);
  white-space: nowrap;
}

.eco-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,190,220,0.1);
  border: 1px solid rgba(0,190,220,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 16px;
}

.eco-outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  background: rgba(0,11,26,0.6);
  gap: 8px;
}

.eco-outcome-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
}

.eco-outcome-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .eco-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .eco-node { width: 100%; flex-direction: row; text-align: left; gap: 16px; padding: 16px 0; }
  .eco-icon { flex-shrink: 0; width: 56px; height: 56px; margin-bottom: 0; }
  .eco-connector { flex-direction: row; min-width: unset; padding: 0 16px; }
  .eco-line { height: 40px; width: 2px; }
  .eco-pulse { width: 6px; height: 60px; left: -2px; top: -60px; animation: eco-flow-v 1.8s linear infinite; }
  @keyframes eco-flow-v { from { top: -60px; } to { top: 100%; } }
  .eco-proto { writing-mode: vertical-rl; text-orientation: mixed; }
  .eco-outcomes { grid-template-columns: 1fr; }
  .eco-desc { max-width: none; }
}

/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */
.cert-section {
  background: linear-gradient(160deg, #EEF4F8 0%, #E4EFF5 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Very faint grid lines */
.cert-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,100,150,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,100,150,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Top accent gradient bar */
.cert-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #003087 0%, #00BEDC 35%, #00E5A0 65%, #003087 100%);
}

/* Section header */
.cert-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.cert-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #00112B;
  letter-spacing: -1px;
  margin: 12px 0 14px;
}

.cert-sub {
  font-size: 14px;
  color: rgba(0,17,43,0.50);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Badge grid */
.cert-badges {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Bold gradient credential cards */
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 22px 24px;
  min-width: 122px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Gloss highlight at top */
.cert-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
  display: block;
}

/* Individual bold gradients */
.cert-badge:nth-child(1)  { background: linear-gradient(145deg, #1e40af, #1e3a8a); }  /* CE â€” navy blue */
.cert-badge:nth-child(3)  { background: linear-gradient(145deg, #dc2626, #991b1b); }  /* RoHS â€” deep red */
.cert-badge:nth-child(5)  { background: linear-gradient(145deg, #059669, #065f46); }  /* ISO â€” forest green */
.cert-badge:nth-child(7)  { background: linear-gradient(145deg, #d97706, #92400e); }  /* MID â€” rich amber */
.cert-badge:nth-child(9)  { background: linear-gradient(145deg, #7c3aed, #4c1d95); }  /* BACnet â€” deep purple */
.cert-badge:nth-child(11) { background: linear-gradient(145deg, #0891b2, #164e63); }  /* Modbus â€” ocean teal */
.cert-badge:nth-child(13) { background: linear-gradient(145deg, #0284c7, #1e3a8a); }  /* LoRaWAN â€” skyâ†’navy */

.cert-badge:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0,0,0,0.28), 0 6px 16px rgba(0,0,0,0.16);
}

/* Badge mark â€” white on coloured bg */
.cert-badge-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.4) !important;
  color: #ffffff !important;
  background: rgba(255,255,255,0.18) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.5px;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.cert-badge:hover .cert-badge-mark {
  background: rgba(255,255,255,0.28) !important;
  transform: scale(1.06);
}

.cert-badge-mark svg { color: #ffffff !important; stroke: #ffffff !important; }

.cert-badge-name {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.cert-badge-desc {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.cert-divider { display: none; }

@media (max-width: 768px) {
  .cert-badge { min-width: 95px; padding: 24px 14px 18px; }
  .cert-title { font-size: 22px; }
}

/* ==========================================================================
   CLIENT SECTOR ACCORDION STRIPS
   ========================================================================== */
.client-wall-section {
  background: #F4F6F9;
  padding: 90px 0 80px;
}

.client-wall-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.client-wall-header .section-title { color: #00112B; }
.client-wall-header .section-body  { color: #4A5568; }
.client-wall-header .eyebrow       { color: var(--sky); }

/* Accordion strip container */
.sector-strips {
  display: flex;
  gap: 10px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Each strip */
.sector-strip {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-strip:hover { flex: 5; }

/* Photo background via CSS var */
.sector-strip-bg {
  position: absolute;
  inset: 0;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-strip:hover .sector-strip-bg { transform: scale(1.04); }

/* Dark overlay â€” heavier on sides to show text on collapsed strips */
.sector-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,8,24,0.96) 0%,
    rgba(0,8,24,0.60) 50%,
    rgba(0,8,24,0.35) 100%
  );
  transition: background 0.4s;
}

.sector-strip:hover::after {
  background: linear-gradient(
    to top,
    rgba(0,8,24,0.95) 0%,
    rgba(0,8,24,0.50) 55%,
    rgba(0,8,24,0.15) 100%
  );
}

/* Vertical number label â€” visible when collapsed */
.sector-strip-num {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--sky);
  letter-spacing: 1px;
  z-index: 2;
  transition: opacity 0.3s;
}

.sector-strip:hover .sector-strip-num { opacity: 0; }

/* Vertical text label â€” visible when collapsed */
.sector-strip-label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(50%) rotate(-90deg);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  transition: opacity 0.25s;
  pointer-events: none;
}

.sector-strip:hover .sector-strip-label { opacity: 0; }

/* Detail content â€” fades in when expanded */
.sector-strip-detail {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
}

.sector-strip:hover .sector-strip-detail {
  opacity: 1;
  transform: translateY(0);
}

.sector-strip-region {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}

.sector-strip-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sector-strip-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  max-width: 280px;
}

.sector-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sector-strip-tags span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  background: rgba(0,190,220,0.20);
  border: 1px solid rgba(0,190,220,0.40);
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.client-wall-note {
  text-align: center;
  font-size: 12px;
  color: #8A9BB5;
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .sector-strips {
    flex-direction: column;
    height: auto;
  }
  .sector-strip {
    flex: none;
    height: 90px;
    transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sector-strip:hover {
    flex: none;
    height: 360px;
  }
  .sector-strip-label {
    transform: translateX(-50%) translateY(50%);
    bottom: 50%;
  }
  .sector-strip-detail { padding: 24px 22px; }
}

@media (max-width: 520px) {
  .sector-strips { border-radius: 16px; }
  .sector-strip-title { font-size: 18px; }
  .sector-strip-body { font-size: 13px; }
}

/* ==========================================================================
   DOWNLOAD COMPANY PROFILE BUTTON
   ========================================================================== */
.btn-download-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.btn-download-profile:hover {
  background: rgba(0,190,220,0.1);
  border-color: var(--sky);
  transform: translateY(-2px);
}
.btn-download-profile svg {
  flex-shrink: 0;
  color: var(--sky);
}
.btn-download-profile-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  font-weight: 400;
}
.btn-download-profile > span:last-child { /* text group */
  display: flex;
  flex-direction: column;
}
.btn-download-profile > span:not(.btn-download-profile-sub) {
  font-size: 14px;
  font-weight: 700;
}
