/* ==========================================================================
   ORILL MARINE - HIGH-END EUROPEAN INDUSTRIAL STYLE SHEET
   ========================================================================== */

/* --- Design System / Tokens --- */
:root {
  /* Color Palette - Premium Navy & Cyan */
  --primary-dark: #081824;
  /* Deep Navy Blue */
  --primary-deep: #06151f;
  /* Darker Navy */
  --accent-blue: #002aca;
  /* Vibrant Cyan */
  --accent-muted: #64748b;
  /* Slate Gray */
  --bg-white: #ffffff;
  --bg-light: #f3f5f6;
  /* Soft Gray Background */
  --border-light: #e2e8f0;
  /* Ultra-thin elegant hairline border */

  /* Typography - Neue Montreal & Inter Pairing */
  --font-heading: 'Outfit', 'Neue Montreal', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', 'Inter', sans-serif;

  /* Layout Spacing */
  --transition-premium: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-pill: 9999px;
  --radius-sm: 2px;
  --radius-md: 4px;
}

/* --- Global Reset & Base Rules --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--primary-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typographic Grid Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  /* Neue Montreal elegant medium weight */
  line-height: 1.1;
  letter-spacing: -0.03em;
  /* Slightly tight tracking for huge headings */
}

p {
  font-family: var(--font-body);
  color: var(--accent-muted);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

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

/* Fine-detailed Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-muted);
}

/* --- Layout Grid Systems --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-padding {
  padding: 160px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

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

.dark-section p {
  color: #94a3b8;
}

/* --- Editorial Grid Headers --- */
.section-header {
  margin-bottom: 90px;
  max-width: 800px;
}

.section-header.center-align {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent-blue);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
  position: relative;
  padding-left: 15px;
}

.section-tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background-color: var(--accent-blue);
}

.section-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--primary-dark);
}

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

.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--accent-muted);
  margin-top: 24px;
  max-width: 600px;
}

/* --- Clean Modern Button Triggers --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-premium);
  position: relative;
  border: 1px solid transparent;
}

.btn-lg {
  padding: 18px 44px;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(7, 24, 33, 0.15);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: var(--accent-blue) !important;
  color: #ffffff !important;
  border-color: var(--accent-blue) !important;
  transform: translateY(-2px);
}

.btn-outline-white:active {
  background-color: var(--accent-blue) !important;
  color: #ffffff !important;
  border-color: var(--accent-blue) !important;
  transform: translateY(1px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-icon {
  margin-left: 10px;
  width: 12px;
  height: 12px;
  transition: var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- Minimal Sticky Navbar: Floating Glassmorphic Pill --- */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 42, 202, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrapper.scrolled,
.navbar-wrapper.nav-scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 42, 202, 0.08);
  box-shadow: 0 10px 30px rgba(0, 42, 202, 0.04);
}

/* Hide on scroll down, show on scroll up transition offsets */
.navbar-wrapper.nav-visible {
  transform: translate3d(-50%, 0, 0) !important;
}

.navbar-wrapper.nav-hidden {
  transform: translate3d(-50%, -100%, 0) !important;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* containment boundary removed for full-width dropdown */
}

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

.logo-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-blue);
  fill: currentColor;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
}

.logo-text .accent-text {
  color: var(--accent-blue);
  font-weight: 400;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 48px;
}

.nav-item {
  position: relative;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 10px 6px 18px;
  /* Allocated left padding for the dot */
  opacity: 0.75;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.nav-item:hover,
.nav-item.active {
  opacity: 1;
  color: var(--accent-blue) !important;
  background-color: transparent !important;
}

/* Minimal Accent Dot */
.nav-item::before {
  content: '';
  position: absolute;
  left: 6px;
  /* Positioned inside the left padding */
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 5px;
  height: 5px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.nav-item:hover::before,
.nav-item.active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav-item-dropdown {
  display: flex;
  align-items: center;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.98);
  width: 900px;
  background: var(--primary-dark);
  /* Using dark background for the container to eliminate sub-pixel white border/gaps around the dark left corner! */
  border-radius: 16px;
  box-shadow: 0 50px 100px rgba(5, 31, 28, 0.12), 0 10px 30px rgba(5, 31, 28, 0.05);
  border: none;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  overflow: hidden;
  margin-top: 10px;
}

.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-menu-left {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d283c 100%);
  color: var(--bg-white);
  padding: 44px;
  width: 40%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mega-menu-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(20, 136, 168, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.mega-menu-tagline {
  color: var(--accent-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.mega-menu-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.mega-menu-link {
  color: var(--bg-white);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.mega-menu-link:hover {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
  gap: 12px;
}

.mega-menu-quick-links-section {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.mega-menu-quick-links-title {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.mega-menu-quick-links {
  display: flex;
  gap: 12px;
}

.pill-link {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.pill-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.mega-menu-right {
  display: flex;
  padding: 44px;
  width: 60%;
  gap: 48px;
  background: var(--bg-white);
}

.mega-menu-col {
  flex: 1;
}

.mega-menu-col-title {
  color: var(--accent-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-list a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: -16px;
  margin-right: -16px;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.mega-menu-list a:hover {
  background: var(--bg-light);
  transform: translateX(4px);
}

.mega-menu-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 42, 202, 0.08);
  /* Light accent-blue */
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mega-menu-list a:hover .mega-menu-item-icon {
  background: var(--accent-blue);
  color: var(--bg-white);
  transform: scale(1.05);
}

.mega-menu-item-icon i {
  width: 16px;
  height: 16px;
}

.mega-menu-item-content {
  flex: 1;
}

.mega-menu-item-title {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.mega-menu-list a:hover .mega-menu-item-title {
  color: var(--accent-blue);
}

.mega-menu-item-desc {
  color: var(--accent-muted);
  font-size: 12px;
  display: block;
  line-height: 1.4;
}

.mega-menu-item-arrow {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-list a:hover .mega-menu-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mega-menu-featured-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100px;
  display: block;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(8, 24, 36, 0.9), transparent);
}

.featured-card-title {
  color: var(--bg-white);
  font-size: 13px;
  font-weight: 600;
}

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

.nav-actions .nav-icon {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  opacity: 0.7;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-actions .nav-icon:hover {
  opacity: 1;
  color: var(--accent-blue);
}

.dropdown-icon {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

.btn-dark-pill {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 12px 30px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-radius: var(--radius-pill);
}

.btn-dark-pill:hover {
  background-color: var(--accent-blue);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--primary-dark);
  font-size: 24px;
  cursor: pointer;
}

/* --- Mobile Sliding Nav --- */
/* --- Mobile Sliding Nav --- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 150;
  padding: 40px;
  transition: var(--transition-premium);
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  /* Allow scrolling for tall menus */
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.mobile-nav-header .logo-text {
  color: var(--bg-white);
}

.menu-close {
  background: transparent;
  color: var(--bg-white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: opacity 0.2s ease;
}

.menu-close:hover {
  opacity: 0.8;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  color: var(--bg-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  outline: none;
}

.mobile-nav-item:hover {
  opacity: 1;
  color: var(--accent-blue);
  transform: translateX(4px);
}

/* Accordion Specific Styling */
.mobile-nav-accordion-item {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.mobile-nav-accordion-trigger {
  background: transparent;
  border: none;
  color: var(--bg-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 4px 0;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  text-align: left;
}

.mobile-nav-accordion-trigger:hover,
.mobile-nav-accordion-trigger.active {
  opacity: 1;
  color: var(--accent-blue);
}

.mobile-nav-accordion-trigger .chevron-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.mobile-nav-accordion-trigger.active .chevron-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-nav-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-accordion-content.open {
  max-height: 350px;
  /* high enough threshold to contain items */
}

.mobile-submenu {
  list-style: none;
  padding: 8px 0 12px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 4px;
  margin-top: 8px;
}

.mobile-submenu li {
  margin: 0;
}

.mobile-submenu a {
  color: var(--bg-white);
  font-size: 12.5px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.55;
  transition: all 0.25s ease;
  display: block;
}

.mobile-submenu a:hover {
  opacity: 1;
  color: var(--accent-blue);
  transform: translateX(4px);
}

/* --- Editorial Hero Layout (Full BG Layout) --- */
.hero-section.hero-full-bg {
  position: relative;
  min-height: calc(100vh - 86px);
  margin-top: 86px;
  display: flex;
  align-items: center;
  padding: 80px 0 100px 0;
  overflow: hidden;
  border-radius: 0;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 24, 36, 0.5);
  /* Dark overlay for text readability */
  z-index: 2;
}

.hero-layout-full {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: "Avenir Next", "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.hero-title.text-white {
  color: #ffffff;
}

.highlight-cyan {
  color: var(--accent-blue);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--accent-muted);
  margin-bottom: 48px;
  max-width: 540px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle.text-white-light {
  color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.btn-cyan {
  background-color: var(--accent-blue);
  color: #ffffff;
}

.btn-cyan:hover {
  background-color: #ffffff !important;
  color: var(--accent-blue) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-cyan:active {
  background-color: #ffffff !important;
  color: var(--accent-blue) !important;
  border-color: #ffffff !important;
  transform: translateY(1px);
}

/* --- High-Tech Offset Matrix Grid Section --- */
.trust-bar-section {
  position: relative;
  padding: 180px 0 200px 0;
  /* Extra vertical padding to allow cards to stagger cleanly */
  background-color: #ffffff;
  /* Premium white background */
  overflow: hidden;
  border-top: 1px solid rgba(0, 85, 255, 0.08);
  border-bottom: 1px solid rgba(0, 85, 255, 0.08);
}

/* Subtle luxury grain texture overlay */
.luxury-grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Ambient Blue Glowing Lighting Layers */
.ambient-glow-left-blue {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

.ambient-glow-right-blue {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

.offset-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
  height: auto;
}

.matrix-card {
  position: relative;
  padding: 40px 32px;
  background: #ffffff;
  /* Solid premium white card */
  border: 1px solid rgba(0, 85, 255, 0.12);
  /* Clean blue outline */
  box-shadow: 0 15px 35px rgba(0, 85, 255, 0.04);
  /* Soft premium shadow */
  border-radius: 6px;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger offsets */
.matrix-card.offset-up-high {
  transform: translateY(-40px);
}

.matrix-card.offset-down-high {
  transform: translateY(40px);
}

.matrix-card.offset-up-low {
  transform: translateY(-20px);
}

.matrix-card.offset-down-low {
  transform: translateY(20px);
}

/* Hover offsets (smooth transform overrides) */
.matrix-card.offset-up-high:hover {
  transform: translateY(-50px) scale(1.03);
}

.matrix-card.offset-down-high:hover {
  transform: translateY(30px) scale(1.03);
}

.matrix-card.offset-up-low:hover {
  transform: translateY(-30px) scale(1.03);
}

.matrix-card.offset-down-low:hover {
  transform: translateY(10px) scale(1.03);
}

.matrix-card:hover {
  border-color: rgba(0, 85, 255, 0.35);
  background: #ffffff;
  box-shadow: 0 25px 50px -15px rgba(0, 85, 255, 0.12);
}

/* Radar Graphic inside Card Background */
.matrix-radar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(0, 85, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.matrix-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

/* Icon box */
.matrix-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(0, 85, 255, 0.05);
  border: 1px solid rgba(0, 85, 255, 0.15);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.matrix-icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.5px;
}

.matrix-card:hover .matrix-icon-box {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 85, 255, 0.3);
  transform: rotate(5deg);
}

/* Metrics styles */
.matrix-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.matrix-number {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: baseline;
}

.highlight-blue-accent {
  color: var(--accent-blue);
  text-shadow: none;
  /* No shadow needed on light background */
  font-size: 34px;
  margin-left: 2px;
  font-weight: 500;
}

.matrix-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  /* Slate gray/muted */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin: 0;
}

.matrix-card:hover .matrix-label {
  color: #1e293b;
}

/* Tech corner ticks */
.matrix-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: rgba(0, 85, 255, 0.15);
  border-style: solid;
  pointer-events: none;
  transition: all 0.5s ease;
}

.corner-tl {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.corner-tr {
  top: 12px;
  right: 12px;
  border-width: 1px 1px 0 0;
}

.corner-bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 1px 1px;
}

.corner-br {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.matrix-card:hover .matrix-corner {
  border-color: rgba(0, 85, 255, 0.6);
}

/* Responsive Grid Adapters */
@media (max-width: 1024px) {
  .trust-bar-section {
    padding: 100px 0;
  }

  .offset-matrix-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  .matrix-card.offset-up-high,
  .matrix-card.offset-down-high,
  .matrix-card.offset-up-low,
  .matrix-card.offset-down-low {
    transform: none !important;
    /* Remove stagger on tablets and mobile */
    height: 220px !important;
  }
}

@media (max-width: 640px) {
  .offset-matrix-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .matrix-card.offset-up-high,
  .matrix-card.offset-down-high,
  .matrix-card.offset-up-low,
  .matrix-card.offset-down-low {
    height: 200px !important;
  }
}

/* --- Who We Are Section (Awwwards Asymmetric Editorial) --- */
.about-section {
  background-color: #f6f5f2;
  /* Luxury warm sand-chalk background for an elite corporate gallery look */
  position: relative;
  overflow: hidden;
}

.section-padding-lg {
  padding: 140px 0;
}

.editorial-header {
  max-width: 100%;
  margin-bottom: 90px;
}

.header-prefix {
  font-family: monospace;
  font-size: 10px;
  color: var(--accent-blue);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
}

.editorial-main-title {
  font-family: "Avenir Next", "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  max-width: 900px;
}

.header-divider-line {
  width: 100%;
  height: 1px;
  background-color: rgba(8, 24, 36, 0.08);
  margin-bottom: 40px;
}

.editorial-subheader-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: flex-end;
}

.editorial-lead-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--accent-muted);
  margin: 0;
}

.editorial-discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-dark);
  padding-bottom: 8px;
  width: fit-content;
  margin-left: auto;
  transition: all 0.3s ease;
}

.editorial-discover-btn:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  gap: 24px;
}

/* Asymmetric Polygon Grid */
.editorial-poly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.poly-card-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
}

/* Staggering of cards for asymetric composition */
.editorial-poly-grid .poly-card-wrapper:nth-child(1) {
  margin-top: 60px;
}

.editorial-poly-grid .poly-card-wrapper:nth-child(2) {
  margin-top: 140px;
}

.editorial-poly-grid .poly-card-wrapper:nth-child(3) {
  margin-top: 0px;
}

.poly-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  background-color: var(--primary-dark);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Geometric Polygon Shapes */
.shape-slanted {
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.shape-parallelogram {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.shape-hexagon {
  clip-path: polygon(50% 0%, 100% 16%, 100% 84%, 50% 100%, 0% 84%, 0% 16%);
}

.poly-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
}

.poly-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 24, 36, 0.1) 0%, rgba(8, 24, 36, 0.75) 100%);
  z-index: 1;
  transition: background 0.5s ease;
}

.poly-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 48px 40px;
  z-index: 2;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.shape-hexagon .poly-card-content {
  padding: 60px 48px;
  align-items: center;
  text-align: center;
}

.poly-card-tag {
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.25em;
  color: var(--accent-blue);
  margin-bottom: 12px;
  display: block;
}

.poly-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.poly-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bg-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  width: fit-content;
  opacity: 0.85;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.poly-card-btn i {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}

/* Subtle Geometric Shadow Behind Elements */
.poly-card-shadow {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 24, 36, 0.04);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Modern Hover States */
.poly-card-wrapper:hover .poly-card {
  transform: translateY(-8px) scale(0.99);
}

.poly-card-wrapper:hover .poly-card-shadow {
  transform: translate(-10px, -10px);
}

.poly-card-wrapper:hover .poly-card-img {
  transform: scale(1.1) rotate(1deg);
  filter: saturate(1) contrast(1.05) brightness(1.0);
}

.poly-card-wrapper:hover .poly-card-overlay {
  background: linear-gradient(180deg, rgba(8, 24, 36, 0.0) 0%, rgba(8, 24, 36, 0.85) 100%);
}

.poly-card-wrapper:hover .poly-card-btn {
  opacity: 1;
  transform: translateY(0);
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 42, 202, 0.3);
}

.poly-card-wrapper:hover .poly-card-btn i {
  transform: rotate(90deg);
}

/* --- Services Interactive Columns Accordion (Screenshot 3 & 4) --- */
.services-section {
  border-top: 1px solid var(--border-light);
}

.services-accordion {
  display: flex;
  width: 100%;
  height: 600px;
  gap: 12px;
  overflow: hidden;
  margin-top: 40px;
}

.accordion-col {
  position: relative;
  flex: 1;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: grayscale(40%) brightness(80%);
}

.accordion-col.active {
  flex: 3.5;
  filter: grayscale(0%) brightness(100%);
}

.accordion-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-col:hover .accordion-bg {
  transform: scale(1.05);
}

.accordion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 31, 28, 0.1) 0%, rgba(5, 31, 28, 0.9) 100%);
  z-index: 1;
}

.accordion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 40px 40px;
  z-index: 2;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  transition: var(--transition-premium);
}

.accordion-vertical-title {
  position: absolute;
  top: 20px;
  left: 24px;
  transform: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 1;
}

.accordion-col.active .accordion-vertical-title {
  opacity: 1;
  pointer-events: auto;
}

.accordion-header-block {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.2s;
}

.accordion-col.active .accordion-header-block {
  opacity: 1;
  transform: translateY(0);
}

.accordion-main-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  opacity: 0.8;
  transition: all 0.5s ease 0.3s;
}

.accordion-col.active .accordion-main-title {
  opacity: 1;
  font-size: 42px;
}

.accordion-desc {
  font-size: 14px;
  color: #cbd5e1;
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.4s;
  display: none;
}

.accordion-col.active .accordion-desc {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.accordion-ctas {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.5s;
  display: none;
}

.accordion-col.active .accordion-ctas {
  opacity: 1;
  transform: translateY(0);
  display: flex;
}

.badge-info-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
}

/* --- Why Us Layout --- */
.why-us-section {
  border-top: 1px solid var(--border-light);
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.why-us-left {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.cta-mini-block {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-mini-block p {
  font-size: 14px;
  margin-bottom: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  transition: var(--transition-premium);
}

.feature-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.feature-box .icon-wrap {
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 13px;
  line-height: 1.6;
}

/* --- Fleet Slider --- */
.fleet-section {
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
}

.fleet-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.fleet-carousel {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 500%;
}

.fleet-card {
  width: 20%;
  padding: 0 20px;
  opacity: 0.4;
  transform: scale(0.95);
  transition: var(--transition-premium);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5, 31, 28, 0.02);
  border: 1px solid var(--border-light);
}

.fleet-card.active {
  opacity: 1;
  transform: scale(1);
}

.fleet-img-container {
  height: 500px;
  overflow: hidden;
}

.fleet-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-premium);
}

.fleet-details {
  padding: 60px 40px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.fleet-details h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.fleet-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet-specs li {
  font-size: 13px;
  color: var(--accent-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.fleet-specs li strong {
  color: var(--primary-dark);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 0 20px;
}

.carousel-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--accent-blue);
  transform: scale(1.2);
}

/* --- Testimonials Slider --- */
.testimonials-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.testimonial-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%;
}

.testimonial-slide {
  width: 33.333%;
  padding: 0 40px;
  text-align: center;
}

.quote-icon-box {
  color: var(--accent-blue);
  margin-bottom: 32px;
}

.testimonial-text {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.client-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.client-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--accent-blue);
}

.client-details {
  text-align: left;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
}

.client-title {
  font-size: 12px;
  color: var(--accent-muted);
}

.testimonial-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.testi-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-muted);
}

.testi-btn:hover {
  color: var(--accent-blue);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.testi-dot.active {
  background: var(--accent-blue);
}

/* --- Partnerships Grid --- */
.partners-section {
  border-top: 1px solid var(--border-light);
  background: var(--bg-white);
}

.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.partner-logo-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.logo-circle {
  color: var(--accent-blue);
}

.cert-icon {
  width: 32px;
  height: 32px;
}

/* --- Clean Editorial CTA Banner --- */
.cta-banner-section {
  position: relative;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner-content h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-banner-content p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* --- Enterprise Corporate Footer (Wartsila/Kongsberg Style) --- */
.footer-kong {
  background-color: #04162A;
  color: #ffffff;
  padding: 80px 0 0 0;
  font-family: var(--font-body);
  overflow: hidden;
}

.footer-kong-inner {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
}

/* Left Side Navigation Grid */
.footer-kong-nav {
  display: flex;
  flex: 3;
}

.footer-nav-column-wrapper {
  display: flex;
  flex: 1;
}

.footer-nav-column {
  flex: 1;
  padding-right: 24px;
}

.mobile-title {
  display: none;
}

.mobile-chevron {
  display: none;
}

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

.kong-link {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  opacity: 0.9;
}

.kong-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #002aca; /* Cyan accent */
  transition: width 0.3s ease;
}

.kong-link:hover {
  transform: translateX(4px);
  opacity: 1;
  color: #002aca;
}

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

.footer-vertical-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 40px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-kong.active .footer-vertical-divider {
  transform: scaleY(1);
}

/* Right Side: Brand */
.footer-kong-brand {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kong-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
}

.kong-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.kong-socials {
  display: flex;
  gap: 16px;
}

.kong-social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.kong-social-btn:hover {
  border-color: #002aca;
  color: #002aca;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 42, 202, 0.3);
}

.kong-social-btn i {
  width: 18px;
  height: 18px;
}

/* Center Bottom: Related Expertise */
.footer-kong-expertise {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.expertise-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.expertise-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.expertise-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.expertise-links a:hover {
  color: #002aca;
}

.expertise-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* Bottom Bar */
.footer-kong-bottom {
  background-color: #020b15;
  padding: 24px 0;
  text-align: center;
}

.kong-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-kong-inner {
    flex-direction: column;
    gap: 60px;
  }
  .footer-kong-nav {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-nav-column-wrapper {
    flex: 1 1 40%;
  }
  .footer-vertical-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-kong-nav {
    flex-direction: column;
    gap: 0;
  }
  .footer-nav-column-wrapper {
    width: 100%;
    flex: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-nav-column {
    padding: 0;
  }
  .footer-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
  }
  .mobile-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
  }
  .mobile-chevron {
    display: block;
    transition: transform 0.3s ease;
  }
  .footer-nav-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-bottom: 0;
  }
  .accordion-open .footer-nav-links {
    max-height: 300px;
    padding-bottom: 20px;
  }
  .accordion-open .mobile-chevron {
    transform: rotate(180deg);
  }
  .footer-kong-expertise {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .expertise-links {
    flex-direction: column;
    gap: 12px;
  }
  .expertise-sep {
    display: none;
  }
}

/* --- Clean Modern Modals --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 31, 28, 0.6);
  backdrop-filter: blur(15px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-premium);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-white);
  width: 100%;
  max-width: 580px;
  padding: 48px;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: 0 40px 80px rgba(5, 31, 28, 0.15);
  border: 1px solid var(--border-light);
  transform: translateY(40px);
  transition: var(--transition-premium);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  color: var(--accent-muted);
  cursor: pointer;
  font-size: 20px;
  border: none;
}

.modal-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--accent-muted);
  margin-bottom: 32px;
}

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

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  background: var(--bg-white);
}

/* --- Toast Notifications --- */
.notification {
  position: fixed;
  bottom: 40px;
  right: -360px;
  background: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(5, 31, 28, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  z-index: 250;
  width: 320px;
  transition: var(--transition-premium);
}

.notification.active {
  right: 40px;
}

.noti-icon {
  color: var(--accent-blue);
  margin-top: 2px;
}

.noti-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 4px;
}

.noti-text p {
  font-size: 12px;
  color: #94a3b8;
}

.noti-close {
  background: transparent;
  color: #64748b;
  cursor: pointer;
  margin-left: auto;
  border: none;
}

.noti-close:hover {
  color: var(--bg-white);
}

/* --- Inner Hero Styles for Subpages --- */
.inner-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding-top: 80px;
}

.inner-hero-content {
  position: relative;
  z-index: 10;
}

.inner-hero-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.inner-hero-subtitle {
  font-size: 16px;
  color: var(--accent-muted);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 24px;
  color: var(--accent-muted);
}

.breadcrumb a {
  color: var(--accent-blue);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-layout,
  .about-layout,
  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-media-wrapper {
    height: 450px;
  }

  .hero-title {
    font-size: 56px;
  }
}

/* Extracted Inline Styles */
.menu-toggle {
  color: var(--primary-dark);
}

.mobile-logo-light {
  color: #ffffff;
}

.about-honeycomb-section {
  background: #ebe5da;
  padding: 120px 0;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* =========================
   Editorial Header
========================= */

.editorial-header {
  margin-bottom: 100px;
}

.header-prefix {
  font-size: 12px;
  letter-spacing: 4px;
  color: #777;
  display: block;
  margin-bottom: 30px;
  font-family: sans-serif;
}

.editorial-main-title {
  font-family: "Avenir Next", "Montserrat", sans-serif;
  font-size: 72px;
  line-height: 1.05;
  font-weight: 300;
  color: #1d1d1d;
  max-width: 1000px;
  margin-bottom: 40px;
  letter-spacing: -0.04em;
}

.header-divider-line {
  width: 100%;
  height: 1px;
  background: #cfc7bb;
  margin-bottom: 40px;
}

.editorial-subheader-row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

.editorial-lead-text {
  max-width: 750px;
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
}

.editorial-discover-btn {
  text-decoration: none;
  color: #111;
  border: 1px solid #111;
  padding: 18px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 100px;
  transition: 0.4s ease;
}

.editorial-discover-btn:hover,
.editorial-discover-btn:active {
  background: var(--accent-blue) !important;
  color: #fff !important;
  border-color: var(--accent-blue) !important;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
  background: #f5f1e7;
  overflow: hidden;
}

.about-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =========================
   LEFT CONTENT
========================= */

.editorial-content {
  flex: 0 0 45%;
  max-width: 520px;
}

.header-prefix {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 24px;
}

.editorial-main-title {
  font-family: "Avenir Next", "Montserrat", sans-serif;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 300;
  color: #111;
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}

.header-divider-line {
  width: 100%;
  height: 1px;
  background-color: rgba(8, 24, 36, 0.08);
  margin-bottom: 30px;
}

.editorial-lead-text {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 40px;
}

.editorial-discover-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  letter-spacing: 2px;
  font-size: 12px;
  border-radius: 100px;
  transition: 0.4s ease;
}

.editorial-discover-btn:hover,
.editorial-discover-btn:active {
  background: var(--accent-blue) !important;
  color: #fff !important;
  border-color: var(--accent-blue) !important;
}

/* =========================
   HONEYCOMB
========================= */

.honeycomb-wrapper {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

/* rows */
.hex-row {
  display: flex;
  justify-content: center;
  margin-bottom: -55px;
  gap: 18px;
}

.row-center {
  margin-left: 120px;
}

/* hexagon */
.hexagon {
  position: relative;
  width: 220px;
  height: 250px;
  clip-path: polygon(25% 6.7%,
      75% 6.7%,
      100% 50%,
      75% 93.3%,
      25% 93.3%,
      0% 50%);
  overflow: hidden;
  transition: 0.4s ease;
  cursor: pointer;
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.hexagon:hover img {
  transform: scale(1.08);
}

.hexagon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  transition: 0.4s ease;
}

.hexagon:hover::after {
  background: rgba(0, 0, 0, 0.05);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

  .hexagon {
    width: 180px;
    height: 205px;
  }

  .row-center {
    margin-left: 100px;
  }

}

@media (max-width: 991px) {

  .about-layout {
    flex-direction: column;
    gap: 60px;
  }

  .editorial-content {
    max-width: 100%;
  }

  .honeycomb-wrapper {
    width: 100%;
  }

}

@media (max-width: 768px) {

  .editorial-main-title {
    font-size: 38px;
  }

  .hexagon {
    width: 140px;
    height: 160px;
  }

  .hex-row {
    gap: 10px;
    margin-bottom: -35px;
  }

  .row-center {
    margin-left: 70px;
  }

}

/* HEXAGON VIDEO */

.hexagon {
  position: relative;
  width: 220px;
  height: 250px;
  overflow: hidden;

  clip-path: polygon(25% 6.7%,
      75% 6.7%,
      100% 50%,
      75% 93.3%,
      25% 93.3%,
      0% 50%);
}

.hexagon video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ROW ALIGNMENT */

.hex-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: -55px;
}

.hexrow-center {
  margin-left: 120px;
}

/* --- Animations --- */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.active,
.reveal-fade-left.active,
.reveal-fade-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 42, 202, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 42, 202, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 42, 202, 0);
  }
}

.pulse-dot {
  animation: pulse 2s infinite;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem !important;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .about-layout,
  .services-accordion-layout,
  .why-us-layout,
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  .image-floating {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .nav-links,
  .nav-actions .btn {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 1.125rem !important;
  }

  .trust-bar-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .section-padding {
    padding: 60px 0 !important;
  }
}

/* =========================
   NEW STRENGTHS GRID MODEL (THE ABSOLUTE EDGE)
========================= */
.animated-strength-model {
  background-color: #f2f2f2;
}

.strength-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.strength-card {
  background: #ffffff;
  border: 1px solid rgba(0, 42, 202, 0.06);
  border-radius: 4px;
  /* Premium razor-sharp industrial corner */
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #002aca;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 42, 202, 0.15);
  box-shadow: 0 20px 45px rgba(0, 42, 202, 0.08);
}

.strength-card:hover::before {
  transform: scaleX(1);
}

.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  /* Matching sharp corner */
  background: rgba(0, 42, 202, 0.05);
  border: 1px solid rgba(0, 42, 202, 0.1);
  color: #002aca;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.sc-icon i {
  width: 24px;
  height: 24px;
}

.strength-card:hover .sc-icon {
  background: #002aca;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 42, 202, 0.3);
}

.sc-number {
  font-family: monospace;
  font-size: 48px;
  font-weight: 800;
  color: rgba(8, 24, 36, 0.04);
  /* Big background watermark */
  position: absolute;
  top: 20px;
  right: 25px;
  user-select: none;
  transition: all 0.4s ease;
}

.strength-card:hover .sc-number {
  color: rgba(0, 42, 202, 0.08);
  transform: scale(1.1);
}

.sc-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.sc-desc {
  font-size: 14.5px;
  color: var(--accent-muted);
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 768px) {
  .strength-grid-layout {
    grid-template-columns: 1fr;
  }

  .strength-card {
    min-height: auto;
  }
}

/* =========================
   ENGINEERING THE FUTURE
========================= */
.engineering-future-section {
  position: relative;
  overflow: hidden;
  background-color: #050b14;
  /* Deep luxury obsidian blue to match TrustBar */
  padding: 120px 0;
  border-top: 1px solid rgba(0, 85, 255, 0.1);
  border-bottom: 1px solid rgba(0, 85, 255, 0.1);
}

/* /* --- Cinematic Split Showcase Layout --- */
.cinematic-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 60px;
}

.video-viewport-box {
  position: relative;
  width: 100%;
  height: 480px;
  background: rgba(8, 20, 36, 0.35);
  /* Translucent glass */
  border: 1px solid rgba(0, 85, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 85, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.cinematic-video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  z-index: 1;
}

.cinematic-video-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.cinematic-video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) contrast(1.1) saturate(0.85);
}

.cinematic-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.2) 0%, rgba(0, 85, 255, 0.1) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Sleek Selector Cards Stack */
.sleek-selector-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sleek-selector-card {
  position: relative;
  background: rgba(8, 20, 36, 0.3);
  border: 1px solid rgba(0, 85, 255, 0.08);
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.sleek-selector-card:hover {
  background: rgba(8, 20, 36, 0.45);
  border-color: rgba(0, 85, 255, 0.2);
  transform: translateX(4px);
}

.sleek-selector-card.active {
  background: rgba(8, 20, 36, 0.6);
  border-color: rgba(0, 85, 255, 0.25);
  border-left-color: #0088ff;
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.08);
}

.sleek-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(0, 85, 255, 0.05);
  border: 1px solid rgba(0, 85, 255, 0.12);
  color: #0088ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sleek-selector-card.active .sleek-card-icon-wrap {
  background: #0088ff;
  border-color: #0088ff;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 136, 255, 0.4);
}

.sleek-card-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.sleek-card-content {
  flex: 1;
}

/* Active Progress Line at bottom of the active card */
.sleek-card-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 85, 255, 0.02);
}

.sleek-card-progress-fill {
  height: 100%;
  background-color: #0088ff;
  width: 0%;
}

.sleek-selector-card.active .sleek-card-progress-fill {
  animation: sleekProgressFill 7s linear forwards;
}

.sleek-selector-card.active.paused .sleek-card-progress-fill {
  animation-play-state: paused;
}

@keyframes sleekProgressFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .cinematic-split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .video-viewport-box {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .video-viewport-box {
    height: 300px;
  }

  .sleek-selector-card {
    padding: 20px;
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .epv-secondary-image-wrapper {
    width: 60%;
    height: 250px;
    right: 20px;
  }

  .epv-glass-card {
    left: 10px;
  }

  .epv-floating-1 {
    top: 20px;
  }
}

/* =========================
   RIGHT SIDE (CURVED RECTANGLES)
========================= */
.rect-wrapper {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rect-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.rect-shape {
  width: 140px;
  height: 400px;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.rect-shape:nth-child(even) {
  margin-top: 40px;
}

.rect-shape video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .strength-strip {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .s-strip-left {
    flex-direction: column;
  }

  .s-strip-content {
    padding: 0;
  }

  .s-strip-right {
    display: none;
  }

  .eng-tech-showcase {
    grid-template-columns: 1fr;
  }

  .rect-row {
    flex-direction: column;
    align-items: center;
  }

  .rect-shape {
    width: 100%;
    height: 200px;
    border-radius: 20px;
  }

  .rect-shape:nth-child(even) {
    margin-top: 0;
  }
}

/* =========================
   WHY US SECTION
========================= */
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.cta-mini-block {
  margin-top: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #002aca;
}

.cta-mini-block p {
  font-weight: 600;
  margin-bottom: 20px;
  color: #081824;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 42, 202, 0.1);
  color: #002aca;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.feature-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #081824;
}

.feature-box p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* =========================
   CTA BANNER
========================= */
.cta-banner-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #081824;
  background-image: radial-gradient(circle at right bottom, rgba(0, 42, 202, 0.2), transparent 50%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  color: #fff;
}

.cta-banner-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-banner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.center-align {
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 1024px) {
  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-banner-content h2 {
    font-size: 32px;
  }

  .cta-banner-buttons {
    flex-direction: column;
  }
}

/* =========================
   FLEET SECTION
========================= */
.fleet-section {
  background-color: #f9f9f9;
}

.fleet-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.fleet-card {
  display: flex;
  flex-direction: row;
}

.fleet-img-container {
  flex: 1;
  min-height: 400px;
  overflow: hidden;
}

.fleet-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-details {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.fleet-type {
  display: inline-block;
  background: rgba(0, 42, 202, 0.1);
  color: #002aca;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.fleet-details h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: #081824;
  margin-bottom: 20px;
}

.fleet-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fleet-specs li {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 10px;
}

.carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-btn {
  background: none;
  border: none;
  color: #081824;
  cursor: pointer;
  transition: color 0.3s ease;
}

.carousel-btn:hover {
  color: #002aca;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #002aca;
}

@media (max-width: 768px) {
  .fleet-card {
    flex-direction: column;
  }

  .fleet-img-container {
    min-height: 250px;
  }

  .fleet-details {
    padding: 30px;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
  background-color: #f2f2f2;
}

.testimonial-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-slide {
  text-align: center;
}

.quote-icon-box {
  color: #002aca;
  margin-bottom: 30px;
}

.quote-icon-box svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.6;
  color: #081824;
  font-style: italic;
  margin-bottom: 40px;
}

.client-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #081824;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-details {
  text-align: left;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #081824;
  margin-bottom: 5px;
}

.client-title {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.testimonial-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testi-btn {
  background: none;
  border: none;
  color: #081824;
  cursor: pointer;
  transition: color 0.3s ease;
}

.testi-btn:hover {
  color: #002aca;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testi-dot.active {
  background: #002aca;
}

@media (max-width: 768px) {
  .testimonial-slider-wrapper {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 18px;
  }
}

/* =========================
   PARTNERS SECTION
========================= */
.partners-section {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 180px;
  text-align: center;
}

.logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 42, 202, 0.05);
  border: 1px solid rgba(0, 42, 202, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo-card:hover .logo-circle {
  background: #002aca;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 42, 202, 0.2);
}

.cert-icon {
  width: 32px;
  height: 32px;
  color: #002aca;
  transition: color 0.3s ease;
}

.partner-logo-card:hover .cert-icon {
  color: #fff;
}

.partner-logo-card span {
  font-weight: 600;
  color: #081824;
  font-size: 14px;
}

/* =========================
   HERO BADGES
========================= */
.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
}

/* =========================
   QUOTE BLOCK
========================= */
.editorial-quote-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  width: 60px;
  height: 60px;
  color: #002aca;
  opacity: 0.2;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.editorial-quote-block p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}


/* =========================
   SECTION PADDING
========================= */
.section-padding {
  padding: 120px 0;
}


/* =========================
   NEW ESSENCE UI
========================= */
.essence-text-gradient {
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 1 !important;
  color: #002aca;
}

.premium-accent-block {
  margin: 30px 0;
  padding: 20px 0 20px 30px;
  border-left: 3px solid #002aca;
  background: linear-gradient(90deg, rgba(0, 42, 202, 0.05) 0%, transparent 100%);
}

.premium-accent-block p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  font-style: italic;
  margin: 0;
}

/* ==========================================================================
   CINEMATIC SPOTLIGHT & INTERACTIVE MENU DECK MODEL (SERVICES)
   ========================================================================== */
.services-deck-section {
  padding: 120px 0;
  background-color: #f6f5f2;
  /* luxury sand-chalk background */
  position: relative;
  overflow: hidden;
}

.services-centered-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-centered-header .editorial-main-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.services-centered-header .header-divider-line {
  margin: 0 auto 30px auto;
  width: 100%;
  background-color: rgba(8, 24, 36, 0.08);
  height: 1px;
}

.services-centered-header .premium-accent-block {
  margin: 30px auto;
  max-width: 800px;
  border-left: 3px solid #002aca;
  border-top: none;
  padding: 20px 20px 20px 30px;
  background: linear-gradient(90deg, rgba(0, 42, 202, 0.05) 0%, transparent 100%);
  text-align: left;
}

.services-deck-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.services-menu-panel {
  display: flex;
  flex-direction: column;
}

.editorial-left-model {
  margin-bottom: 40px;
}

.services-menu-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-menu-item {
  position: relative;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 42, 202, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.services-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-menu-item.active {
  background: #ffffff;
  border-color: rgba(0, 42, 202, 0.15);
  box-shadow: 0 12px 30px rgba(0, 42, 202, 0.05);
  transform: translateX(12px);
  padding-left: 28px;
}

.services-menu-item.active::before {
  transform: scaleY(1);
}

.menu-item-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 42, 202, 0.03);
}

.menu-item-progress-fill {
  height: 100%;
  background: var(--accent-blue);
  width: 0%;
  transition: width 8.5s linear;
}

.services-menu-item.active .menu-item-progress-fill {
  width: 100%;
}

.menu-item-number {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.services-menu-item.active .menu-item-number {
  color: var(--accent-blue);
}

.menu-item-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  /* Outfit lightweight */
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1;
  transition: all 0.4s ease;
}

.services-menu-item.active .menu-item-title {
  font-weight: 500;
  color: var(--accent-blue);
}

.menu-item-arrow-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-menu-item.active .menu-item-arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Services Right Panel: Spotlight Window */
.services-spotlight-panel {
  position: relative;
  width: 100%;
}

.services-spotlight-frame {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 42, 202, 0.12), 0 10px 30px rgba(8, 24, 36, 0.05);
  background: #081824;
}

.spotlight-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.05);
}

.spotlight-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 5;
}

.spotlight-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 6s ease;
}

.spotlight-slide.active .spotlight-slide-bg {
  transform: scale(1.08);
}

.spotlight-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 24, 36, 0.4) 0%, rgba(8, 24, 36, 0.9) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.spotlight-slide.active:hover .spotlight-slide-overlay {
  background: linear-gradient(180deg, rgba(0, 42, 202, 0.25) 0%, rgba(8, 24, 36, 0.95) 100%);
}

.spotlight-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spotlight-badge {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 2px;
}

.spotlight-coords {
  font-family: monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

.spotlight-body {
  max-width: 440px;
}

.spotlight-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-slide.active:hover .spotlight-icon-circle {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(0, 42, 202, 0.5);
  transform: translateY(-4px) scale(1.05);
}

.spotlight-icon-circle i {
  width: 24px;
  height: 24px;
}

.spotlight-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  /* Outfit lightweight */
  letter-spacing: -0.03em;
  margin: 0 0 12px 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.spotlight-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.spotlight-cap-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-cap-btn:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.15);
}

.spotlight-pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulseBlue 1.8s infinite;
}

.spotlight-cap-btn:hover .spotlight-pulse-dot {
  background: var(--accent-blue);
}

@keyframes pulseBlue {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 42, 202, 0.7);
  }

  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(0, 42, 202, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 42, 202, 0);
  }
}

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

  .services-spotlight-frame {
    height: 420px;
  }

  .spotlight-slide {
    padding: 30px;
  }
}

/* =========================
   VALUE MATRIX (MARINE)
========================= */
.marine-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Staggered column shift mimicking Essence of Orill curved capsules */
.marine-matrix-grid>div:nth-child(even) {
  margin-top: 45px;
}

.marine-matrix-card {
  background: #ffffff;
  /* Clean premium white background */
  border: 1px solid rgba(0, 42, 202, 0.08);
  /* Thin accent border */
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 40px;
  /* Highly curved corners matching the curved shapes model */
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.marine-matrix-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #002aca;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.marine-matrix-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(0, 42, 202, 0.2);
  box-shadow: 0 20px 40px rgba(0, 42, 202, 0.08);
}

.marine-matrix-card:hover::before {
  transform: scaleX(1);
}

.mm-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.mm-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 42, 202, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #002aca;
  background: rgba(0, 42, 202, 0.05);
  transition: all 0.4s ease;
}

.marine-matrix-card:hover .mm-icon {
  background: #002aca;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 42, 202, 0.4);
}

.mm-id {
  font-family: monospace;
  color: rgba(8, 24, 36, 0.25);
  /* High-contrast soft dark ID */
  font-size: 14px;
  letter-spacing: 2px;
}

.mm-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-dark);
  /* Dark navy title */
  margin-bottom: 10px;
}

.mm-desc {
  font-size: 14px;
  color: var(--accent-muted);
  /* Slate gray description */
  line-height: 1.6;
  margin-bottom: 20px;
}

.mm-marine-detail {
  font-family: monospace;
  font-size: 11px;
  color: rgba(0, 42, 202, 0.5);
  letter-spacing: 1px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 992px) {
  .marine-matrix-grid {
    grid-template-columns: 1fr;
  }

  .marine-matrix-grid>div:nth-child(even) {
    margin-top: 0;
  }
}

/* --- Hero Content Modern Character Reveal Transition --- */
.hero-content-transition {
  will-change: opacity;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}

.hero-char-space {
  display: inline-block;
}

.hero-char {
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform, opacity, filter;
  /* Premium springy back-out curve for connection bounce */
  transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Inactive: fly away, disperse, blur and rotate */
.hero-char.slide-inactive {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(40px) scale(0.4) rotate(20deg) skewX(10deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s !important;
  /* Immediately fly away on slide transition */
}

/* Active: assemble, come to straight position and correct size */
.hero-char.slide-active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1) rotate(0deg) skewX(0deg);
}

/* --- Hero Subtitle & CTA Transitions --- */
.hero-content-transition .hero-subtitle,
.hero-content-transition .hero-ctas {
  will-change: transform, opacity;
}

/* Slide Active */
.hero-content-transition.slide-active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.8s;
  /* wait for letters to start connecting before showing subtitle */
}

.hero-content-transition.slide-active .hero-ctas {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 1.0s;
  /* buttons scale in as letters complete connection */
}

/* Slide Inactive */
.hero-content-transition.slide-inactive .hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s !important;
}

.hero-content-transition.slide-inactive .hero-ctas {
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s !important;
}

/* --- New Model: High-Tech Honeycomb Dashboard Mega Dropdown --- */
.mega-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 24, 36, 0.05);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 99;
  /* positioned exactly behind the floating navbar header */
  opacity: 0;
  animation: fadeInBackdrop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

@keyframes fadeInBackdrop {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ==========================================================================
   FULL-WIDTH DROPDOWN (BUH ENERGIE REDESIGN)
   ========================================================================== */

/* Animation for dropdown fade and slide up */
@keyframes verticalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.full-width-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0; /* strict sharp edges: normal not curved */
  border-bottom: 1px solid rgba(8, 24, 36, 0.08);
  box-shadow: 0 15px 35px rgba(8, 24, 36, 0.06);
  padding: 40px 0;
  z-index: 1000;
  box-sizing: border-box;
  animation: verticalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dropdown-container-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.horizontal-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.horizontal-dropdown-grid.network-grid {
  grid-template-columns: repeat(4, 1fr);
}

.horizontal-dropdown-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 0; /* strict sharp edges: normal not curved */
  text-decoration: none;
  transition: all 0.25s ease;
  height: 100%;
  box-sizing: border-box;
  background: transparent;
}

.horizontal-dropdown-link:hover {
  background-color: rgba(8, 24, 36, 0.02);
  transform: translateY(-4px);
}

/* Thumbnail */
.horizontal-link-thumb {
  width: 100%;
  height: 120px;
  border-radius: 0; /* strict sharp edges: normal not curved */
  overflow: hidden;
  border: 1px solid rgba(8, 24, 36, 0.06);
  margin-bottom: 4px;
}

.horizontal-link-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Icon (for Company / Network) */
.horizontal-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 0; /* strict sharp edges: normal not curved */
  background: rgba(0, 42, 202, 0.04);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  margin-bottom: 8px;
}

.horizontal-dropdown-link:hover .horizontal-link-icon {
  background: var(--accent-blue);
  color: #ffffff;
}

.horizontal-link-icon i,
.horizontal-link-icon svg {
  width: 20px;
  height: 20px;
}

/* Content block */
.horizontal-link-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.horizontal-link-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  transition: color 0.25s ease;
}

.horizontal-dropdown-link:hover .horizontal-link-title {
  color: var(--accent-blue);
}

.horizontal-link-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--accent-muted);
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* Chevron Rotation on Desktop */
.dropdown-trigger .chevron-icon {
  transition: transform 0.3s ease;
}

.dropdown-trigger .chevron-icon.rotated {
  transform: rotate(180deg);
}

/* --- Separate Network Region Maps --- */
.horizontal-link-map-thumb {
  width: 100%;
  height: 120px;
  border-radius: 0; /* strict sharp edges: normal not curved */
  overflow: hidden;
  border: 1px solid rgba(8, 24, 36, 0.06);
  margin-bottom: 4px;
  background: #fafbfc;
  position: relative;
  box-sizing: border-box;
}

.horizontal-link-map-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-dropdown-link:hover .horizontal-link-map-thumb iframe {
  transform: scale(1.05);
}

@keyframes mapPulse {
  0% {
    r: 4.5px;
    opacity: 0.8;
  }
  100% {
    r: 16px;
    opacity: 0;
  }
}

.map-ping-pulse {
  animation: mapPulse 2s infinite ease-out;
  transform-origin: center;
}

@media (max-width: 1024px) {
  .full-width-dropdown {
    display: none !important;
  }
}

/* =========================
   FEATURED PROJECTS SECTION

========================= */
.projects-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.project-card {
  position: relative;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(8, 24, 36, 0.05);
}

.project-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.project-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 24, 36, 0.1) 0%, rgba(8, 24, 36, 0.95) 100%);
  z-index: 1;
  transition: background 0.6s ease;
}

.project-card:hover .project-bg-img {
  transform: scale(1.06);
  filter: blur(2px);
}

.project-card:hover .project-gradient-overlay {
  background: linear-gradient(180deg, rgba(0, 42, 202, 0.35) 0%, rgba(8, 24, 36, 0.98) 100%);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 42, 202, 0.15);
  border-color: rgba(0, 42, 202, 0.2);
}

/* Floating Category Tag */
.project-category-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #002aca;
  font-family: monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Project Content */
.project-card-content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  color: #ffffff;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-watermark-id {
  font-family: monospace;
  font-size: 36px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -20px;
  right: 30px;
  user-select: none;
  transition: color 0.4s ease;
}

.project-card:hover .project-watermark-id {
  color: rgba(255, 255, 255, 0.08);
}

.project-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.project-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0px;
  transition: margin-bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-desc {
  margin-bottom: 20px;
}

/* Specs Sliding Drawer */
.project-spec-drawer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0px;
}

.project-card:hover .project-spec-drawer {
  max-height: 200px;
  opacity: 1;
  padding-top: 15px;
}

.spec-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.spec-drawer-header span {
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
}

.spec-drawer-chevron {
  width: 12px;
  height: 12px;
  color: #002aca;
  transform: rotate(-90deg);
}

.project-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-check-icon {
  width: 12px;
  height: 12px;
  color: #002aca;
  flex-shrink: 0;
}

.spec-list-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1100px) {
  .projects-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .projects-grid-layout {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 420px;
  }
}

/* =========================
   KNOWLEDGE HUB IMAGE CARD MODEL
========================= */
.knowledge-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.knowledge-img-card {
  background: #ffffff;
  border: 1px solid rgba(0, 42, 202, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  /* Taller height to accommodate image */
}

.knowledge-img-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 42, 202, 0.18);
  box-shadow: 0 20px 45px rgba(0, 42, 202, 0.08);
}

/* Image Header Frame */
.kh-card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.kh-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.kh-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 24, 36, 0.1) 0%, rgba(8, 24, 36, 0.4) 100%);
  z-index: 1;
}

.knowledge-img-card:hover .kh-card-bg-img {
  transform: scale(1.06);
}

/* Floating Category Tag on Image */
.kh-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 2px;
  color: #002aca;
  font-size: 10px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.kh-card-badge:hover, .knowledge-img-card:hover .kh-card-badge {
  background: #002aca;
  color: #ffffff;
}

/* Card Body Details */
.kh-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.kh-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.kh-card-id {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(8, 24, 36, 0.2);
  letter-spacing: 1px;
}

.kh-card-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 10.5px;
  font-family: monospace;
}

.kh-card-read-icon {
  width: 12px;
  height: 12px;
  color: #64748b;
}

.kh-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.kh-card-desc {
  font-size: 13.5px;
  color: var(--accent-muted);
  line-height: 1.6;
  margin: 0;
}

/* Card Footer Link */
.kh-card-footer {
  padding: 20px 30px 25px;
  border-top: 1px solid rgba(8, 24, 36, 0.05);
  background: #ffffff;
}

.kh-card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.kh-card-link-arrow {
  width: 14px;
  height: 14px;
  color: #64748b;
  transition: transform 0.3s ease, color 0.3s ease;
}

.knowledge-img-card:hover .kh-card-link-btn {
  color: #002aca;
}

.knowledge-img-card:hover .kh-card-link-arrow {
  transform: translate(3px, -3px);
  color: #002aca;
}

/* Responsive */
@media (max-width: 1100px) {
  .knowledge-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .knowledge-grid-layout {
    grid-template-columns: 1fr;
  }

  .knowledge-img-card {
    min-height: auto;
  }
}

/* =========================
   GLOBAL IMPACT SECTION
========================= */
.gi-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gi-stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 42, 202, 0.06);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.gi-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 42, 202, 0.15);
  box-shadow: 0 15px 35px rgba(0, 42, 202, 0.08);
}

.gi-stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #002aca;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.gi-stat-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: #081824;
  display: block;
  margin-bottom: 12px;
}

.gi-stat-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Regional Hubs Board */
.gi-hubs-board {
  background: #081824;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(8, 24, 36, 0.15);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gi-hubs-blueprint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

.gi-hubs-tag {
  font-family: monospace;
  font-size: 9.5px;
  font-weight: 700;
  color: #002aca;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.gi-hubs-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 35px 0;
  position: relative;
  z-index: 1;
}

/* Locations Stack */
.gi-locations-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.gi-location-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.4s ease;
}

.gi-location-tile:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 42, 202, 0.3);
}

.gi-tile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.gi-tile-pulse {
  width: 8px;
  height: 8px;
  background: #002aca;
  border-radius: 50%;
  position: relative;
}

.gi-tile-pulse::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: pulsePulse 1.8s infinite;
}

.gi-tile-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.gi-tile-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gi-tile-coord {
  font-family: monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.gi-tile-status {
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  color: #002aca;
  letter-spacing: 1px;
}

/* =========================
   READY TO START SECTION
========================= */
.ready-to-start-section {
  position: relative;
  overflow: hidden;
}

.rts-content-model {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rts-main-title {
  font-family: "Avenir Next", "Montserrat", sans-serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 300;
  color: #081824;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.rts-lead-text {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 680px;
}

.rts-actions-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

/* Telemetry Checklist grid */
.rts-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  border-top: 1px solid rgba(8, 24, 36, 0.06);
  padding-top: 40px;
}

.rts-metric-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rts-tile-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rts-tile-icon {
  width: 16px;
  height: 16px;
  color: #002aca;
}

.rts-tile-top strong {
  font-family: monospace;
  font-size: 11px;
  color: #081824;
  letter-spacing: 1.5px;
}

.rts-metric-tile span {
  font-size: 13.5px;
  color: #64748b;
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .gi-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gi-hubs-board {
    min-height: auto;
    padding: 30px;
  }

  .rts-main-title {
    font-size: 32px;
  }

  .rts-actions-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
  }

  .rts-metrics-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ==========================================================================
   ABOUT PAGE & HOME PAGE WHO WE ARE - CUSTOM STYLES
   ========================================================================== */
.about-banner-hero {
  position: relative;
  padding: 220px 0 160px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 85, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.75) 0%, rgba(5, 11, 20, 0.9) 100%);
  z-index: 1;
}

.about-wide-banner {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 85, 255, 0.15);
}

.about-wide-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-visual-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 85, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  background: rgba(8, 20, 36, 0.2);
  backdrop-filter: blur(8px);
}

.split-visual-frame img,
.split-visual-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) contrast(1.05);
}

.about-collage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  width: 100%;
}

.collage-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 85, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 340px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-card:hover {
  transform: scale(1.025);
}

.collage-card img,
.collage-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 11, 20, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .about-collage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-wide-banner {
    height: 260px;
    margin-bottom: 40px;
  }

  .split-visual-frame {
    height: 320px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about-wide-banner {
    height: 200px;
  }

  .split-visual-frame {
    height: 260px;
  }
}