/* Base styles – idioma principal: español. Paleta marina/profesional */
:root {
  --brand: #0f4c8a;
  --brand-hover: #1565b8;
  --brand-light: rgba(21, 101, 184, 0.25);
  --white: #ffffff;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-2: rgba(255, 255, 255, 0.2);
  --white-3: rgba(255, 255, 255, 0.3);
  --white-5: rgba(255, 255, 255, 0.5);
  --white-8: rgba(255, 255, 255, 0.8);
  --black-4: rgba(0, 0, 0, 0.4);
  --black-6: rgba(0, 0, 0, 0.6);
  --black-7: rgba(0, 0, 0, 0.7);
  --black-85: rgba(0, 0, 0, 0.85);
  --navy: #0a2342;
  --navy-light: #132f52;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #000;
  color-scheme: dark;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: #000;
  background-image: url("assets/images/AdobeStock_430205235.jpeg");
  background-repeat: repeat;
  background-position: center top;
  background-size: 100% auto;
  color: #121418;
  line-height: 1.6;
  overflow-x: hidden;
  /* Extend black into safe areas (notch, home indicator) so no white shows */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Lock scroll when menu is open (mobile overlay) */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Touch-friendly: remove tap highlight, keep targets tappable */
a, button, [data-mobile-menu-trigger], [data-mobile-contact-trigger], [data-mobile-models-trigger], [data-mobile-lang-trigger] {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
}

.page-surface {
  flex: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}

main {
  margin: 0;
  padding: 0;
}

/* Mobile Navigation */
.navbar-mobile {
  display: none;
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
}

.navbar-mobile-container {
  width: 100%;
  padding: 0;
}

.navbar-mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 1rem;
}

.navbar-mobile-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-menu-mobile {
  justify-content: flex-start;
}

.navbar-mobile-logo {
  justify-content: center;
}

.navbar-mobile-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-mobile-logo .logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.btn-contact-mobile {
  justify-content: flex-end;
}

.menu-item-mobile {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 2px solid var(--white-2);
  background: var(--white-10);
  transition: all 0.2s ease;
}

.menu-item-mobile:hover {
  background: var(--white-2);
  border-color: var(--white-3);
}

.submenu-mobile {
  display: none;
  background: var(--black-85);
  backdrop-filter: blur(15px);
  padding: 1.5rem;
}

.submenu-mobile.is-open {
  display: block;
}

.submenu-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-mobile {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.item-mobile:hover {
  background: var(--white-10);
  border-left-color: var(--white-5);
  transform: translateX(4px);
}

.menu-mobile-item-with-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.submenu-trigger-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.submenu-caret-mobile {
  font-size: 1.35rem;
  opacity: 1;
  font-weight: 900;
  margin-left: 0.5rem;
  color: var(--white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.submenu-trigger-mobile[aria-expanded="true"] .submenu-caret-mobile {
  transform: rotate(180deg);
}

.submenu-mobile-nested {
  display: none;
  list-style: none;
  margin: 0.25rem 0 0 1rem;
  padding: 0;
  border-left: 2px solid var(--white-2);
  flex-direction: column;
  gap: 0.125rem;
}

.submenu-mobile-nested.is-open {
  display: flex;
}

.item-mobile-sub {
  padding: 0.5rem 0.75rem !important;
  font-size: 0.9rem !important;
}

.lang-mobile {
  margin-top: 1rem;
  padding-top: 1rem;
}

.language-selector-mobile {
  position: relative;
}

.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--white-2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-link.dropdown-toggle:hover {
  background: var(--white-15);
  border-color: var(--white-3);
}

.dropdown-menu-mobile {
  display: none;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--white-2);
}

.dropdown-menu-mobile.is-open {
  display: block;
}

.dropdown-item-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}

.dropdown-item-mobile:hover {
  background: var(--white-10);
  border-left-color: var(--white-5);
  transform: translateX(4px);
}

/* Header - overlays video/content, fixed at top */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  z-index: 200;
  opacity: 0;
  animation: headerFadeIn 1s ease 0.4s forwards;
  transition: opacity 0.3s ease;
}

@keyframes headerFadeIn {
  to {
    opacity: 1;
  }
}

/* Backdrop blur covers full header so page background shows through, not solid blue */
.header.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  animation: headerOverlayFadeIn 0.8s ease forwards;
  backdrop-filter: blur(var(--blur-amount, 10px));
  -webkit-backdrop-filter: blur(var(--blur-amount, 10px));
  background: rgba(0, 0, 0, 0.2);
  /* Strong at top, fades to transparent at bottom – no visible edge */
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  transition: backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, background 0.4s ease;
}

@keyframes headerOverlayFadeIn {
  to {
    opacity: 1;
  }
}

/* Model pages: softer, more gradual header fade like index */
.page-surface:has(.model-page) .header.scrolled::before {
  background: rgba(0, 0, 0, var(--header-bg-opacity, 0.1));
  animation-duration: 1s;
  transition: backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease, background 0.5s ease;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 2px solid var(--white-2);
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.2s ease;
}

.logo:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--white-3);
}

.logo .logo-img {
  height: 106px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-actions {
  position: absolute;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10001;
}

/* Header dropdown menu */
.menu {
  position: relative;
  z-index: 10002;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 2px solid var(--white-2);
  background: var(--white-10);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10003;
}

.menu-trigger:hover {
  background: var(--white-2);
  border-color: var(--white-3);
}

.menu-trigger:focus-visible,
.menu-item:focus-visible,
.language-btn:focus-visible {
  outline: 3px solid rgba(15, 76, 138, 0.4);
  outline-offset: 2px;
}

.menu-trigger-icon {
  display: block;
  width: 1.25rem;
  height: 1rem;
  position: relative;
}

.menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center;
  transition: all 0.3s ease;
}

.menu-line:nth-child(1) {
  transform: translateY(calc(-50% - 0.25rem));
}

.menu-line:nth-child(2) {
  transform: translateY(-50%);
}

.menu-line:nth-child(3) {
  transform: translateY(calc(-50% + 0.25rem));
}

.menu-trigger[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.menu-trigger[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

.menu-trigger[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease 0.1s;
}

/* Mobile menu trigger: keep visible when open so icon can animate to X */
.menu-trigger-mobile[aria-expanded="true"] {
  opacity: 1;
  pointer-events: auto;
}

/* Menu Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-backdrop.is-visible {
  display: block;
  opacity: 1;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--black-6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.menu-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.menu-close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.5rem;
  border: 2px solid var(--white-2);
  background: var(--white-10);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-close:hover {
  background: var(--white-2);
  border-color: var(--white-3);
}

.menu-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.menu-close-icon {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
}

.menu-item {
  display: block;
  padding: 0.75rem 1rem;
  border-left: 3px solid transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.menu-item:hover {
  background: var(--white-10);
  border-left-color: var(--white-5);
  transform: translateX(4px);
}

.menu-item.active {
  background: var(--white-15);
  border-left-color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.menu-item-with-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
}

.menu-submenu-trigger:hover {
  background: var(--white-10);
  border-left-color: var(--white-5);
}

.menu-submenu-caret {
  font-size: 1.35rem;
  opacity: 1;
  font-weight: 900;
  margin-left: 0.5rem;
  color: var(--white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.menu-submenu-trigger[aria-expanded="true"] .menu-submenu-caret {
  transform: rotate(180deg);
}

.menu-submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid var(--white-2);
  flex-direction: column;
  gap: 0.125rem;
}

.menu-submenu.is-open {
  display: flex;
}

.menu-sub-item {
  padding: 0.5rem 0.75rem !important;
  font-size: 0.9rem !important;
}

.menu-sep {
  height: 1px;
  background: var(--white-2);
  margin: 0.5rem 0;
}

.menu-footer {
  margin-top: auto;
  padding: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.menu-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.language-selector {
  position: relative;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--white-15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.language-current:hover {
  background: var(--white-10);
  border-color: rgba(255, 255, 255, 0.25);
}

.language-current:focus {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
}

.language-caret {
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.language-current[aria-expanded="true"] .language-caret {
  transform: rotate(180deg);
}

.language-options {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--white-15);
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-options.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.language-btn:hover {
  background: var(--white-10);
}

.language-btn:focus {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
}

.language-btn.active {
  background: var(--white-15);
  font-weight: 500;
}

.language-flag {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.language-name {
  flex: 1;
}

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(10, 20, 40, 0.85) 100%
  );
  z-index: 2;
}

.hero-video-text {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 580px;
  padding: 2rem 2rem 3rem clamp(2rem, 8vw, 5rem);
  margin: 0;
}

.hero-video-brand {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-video-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  font-family: "Times New Roman", Georgia, serif;
}

.hero-video-tagline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 28em;
}

.hero-cta-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-cta-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ── Home: Mission section ── */
.home-mission {
  position: relative;
  width: 100%;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 25, 50, 0.97) 0%, rgba(8, 18, 35, 0.98) 100%);
}

.home-mission-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-mission-text {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.home-mission-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.home-mission-title {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.home-mission-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
  max-width: 38em;
}

.home-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.home-mission-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: border-color 0.3s ease;
}

.home-mission-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.home-mission-card h3 {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.6rem;
  letter-spacing: 0.02em;
}

.home-mission-card p {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* ── Home: Fleet showcase ── */
.home-fleet {
  width: 100%;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background: rgba(6, 14, 28, 0.96);
}

.home-fleet-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-fleet-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.home-fleet-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.home-fleet-title {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.home-fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.home-fleet-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.home-fleet-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.home-fleet-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.home-fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-fleet-card:hover .home-fleet-img-wrap img {
  transform: scale(1.03);
}

.home-fleet-card-body {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.home-fleet-card-body h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-fleet-card-body p {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.home-fleet-card-link {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Section headers (shipyard / corporate) */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
}

.interceptor-section-header,
.specs-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.interceptor-3d-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem 5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(6, 14, 28, 0.96);
}

.interceptor-3d-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.interceptor-3d-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.interceptor-3d-wrapper::before {
  content: '';
  position: absolute;
  inset: -30px;
  z-index: 0;
  background: rgba(90, 90, 95, 0.92);
  filter: blur(40px);
  -webkit-filter: blur(40px);
}

#interceptor-3d-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .interceptor-3d-section {
    padding: 2rem 1rem;
  }
}

/* ── Home: Specs section ── */
.home-specs {
  width: 100%;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(to bottom, rgba(6, 14, 28, 0.96) 0%, rgba(4, 10, 22, 0.98) 100%);
}

.home-specs-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-specs-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.home-specs-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.home-specs-title {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}

.home-specs-subtitle {
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.05em;
}

.home-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.home-specs-block h3 {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-specs-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-specs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-specs-label {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  color: rgba(255, 255, 255, 0.55);
}

.home-specs-value {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  color: var(--white);
  font-weight: 600;
  text-align: right;
}

/* ── Home: Contact CTA ── */
/* ── Home: Contact CTA ── */
.home-cta {
  position: relative;
  width: 100%;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(15, 76, 138, 0.25) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(4, 10, 22, 0.98) 0%, rgba(7, 27, 54, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.home-cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.home-cta-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.home-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.home-cta-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 2.25rem;
}

.home-cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
  color: var(--white);
  background: var(--brand);
  border: none;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.home-cta-button:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(15, 76, 138, 0.4);
}

/* Legacy specs-performance-section (model pages) */
.specs-performance-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem 6rem;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(6, 14, 28, 0.96) 0%, rgba(4, 10, 22, 0.98) 100%);
}

.specs-performance-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.spec-item {
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-left-color 0.2s ease;
}

.spec-item:hover {
  border-left-color: var(--brand);
}

.spec-item h3 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--white-10);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  flex: 1;
  margin-right: 1rem;
  color: var(--white-8);
  font-size: 0.95rem;
  font-weight: 500;
}

.spec-value {
  flex: 1;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 968px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .spec-item {
    padding: 2rem 1.5rem;
  }

  .spec-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .spec-value {
    text-align: left;
  }
}

/* Model pages: space below fixed header */
.model-page {
  padding-top: 132px;
}

/* ── Open 38 page ── */
.model-page-open38 {
  padding-top: 0;
}

/* Hero intro */
.open-38-intro {
  position: relative;
  width: 100%;
  padding: clamp(9.5rem, 12vw, 10.5rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 3vw, 3rem);
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 50, 0) 0%,
    rgba(10, 25, 50, 0.5) 15%,
    rgba(8, 18, 35, 1) 30%
  );
  overflow: hidden;
}

.open-38-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.open-38-intro-left {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.open-38-intro-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.open-38-intro-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.open-38-intro-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0.25rem 0 0;
}

.open-38-intro-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 1.75rem;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}

.open-38-intro-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.open-38-intro-right {
  position: relative;
  min-height: 400px;
}

.open-38-model-wrapper {
  position: relative;
  width: 100%;
  min-height: 400px;
  height: min(55vh, 520px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.open-38-model-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  z-index: 0;
  background: rgba(90, 90, 95, 0.15);
  filter: blur(30px);
}

.open-38-model-wrapper #interceptor-3d-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

/* Key stats bar */
.open-38-stats {
  width: 100%;
  background: rgba(15, 76, 138, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 4rem);
}

.open-38-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.open-38-stat {
  text-align: center;
  padding: 0.5rem 0.5rem;
  position: relative;
}

.open-38-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.open-38-stat-value {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.open-38-stat-label {
  display: block;
  font-size: clamp(0.6rem, 0.8vw, 0.72rem);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  white-space: nowrap;
}

/* Capabilities grid */
.open-38-capabilities {
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.open-38-capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.open-38-cap-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.open-38-cap-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.open-38-cap-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.open-38-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.open-38-cap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.open-38-cap-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.open-38-cap-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.open-38-cap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.open-38-cap-card:hover .open-38-cap-img-wrap img {
  transform: scale(1.03);
}

.open-38-cap-text {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem);
}

.open-38-cap-text h3 {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.open-38-cap-text p {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .open-38-intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .open-38-cap-img-wrap {
    aspect-ratio: 3 / 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .open-38-intro {
    padding-top: 5.5rem;
  }

  .open-38-intro-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .open-38-intro-right {
    order: -1;
    min-height: 320px;
  }

  .open-38-model-wrapper {
    min-height: 320px;
    max-height: 45vh;
  }

  .open-38-stats-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0;
  }

  .open-38-stat:nth-child(3)::after {
    display: none;
  }

  .open-38-stat:not(:last-child)::after {
    display: none;
  }

  .open-38-cap-grid {
    grid-template-columns: 1fr;
  }
}

/* Anchor targets: offset for fixed header */
.model-page-open38 #overview,
.model-page-open38 #features,
.model-page-open38 #specifications {
  scroll-margin-top: 132px;
}

/* ── Cabin 38 page ── */
.model-page-cabin38 {
  padding-top: 0;
}

/* Hero intro */
.cabin-38-intro {
  position: relative;
  width: 100%;
  padding: clamp(9.5rem, 12vw, 10.5rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 3vw, 3rem);
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 50, 0) 0%,
    rgba(10, 25, 50, 0.5) 15%,
    rgba(8, 18, 35, 1) 30%
  );
  overflow: hidden;
}

.cabin-38-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cabin-38-intro-left {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cabin-38-intro-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.cabin-38-intro-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.cabin-38-intro-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0.25rem 0 0;
}

.cabin-38-intro-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 1.75rem;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}

.cabin-38-intro-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.cabin-38-intro-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.cabin-38-intro-image {
  width: 100%;
  max-width: 100%;
  max-height: clamp(280px, 45vh, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.45));
}

/* Key stats bar */
.cabin-38-stats {
  width: 100%;
  background: rgba(15, 76, 138, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 4rem);
}

.cabin-38-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.cabin-38-stat {
  text-align: center;
  padding: 0.5rem 0.5rem;
  position: relative;
}

.cabin-38-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.cabin-38-stat-value {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.cabin-38-stat-label {
  display: block;
  font-size: clamp(0.6rem, 0.8vw, 0.72rem);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  white-space: nowrap;
}

/* Perspectives gallery */
.cabin-38-perspectives {
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.cabin-38-perspectives-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cabin-38-perspectives-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cabin-38-perspectives-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.cabin-38-perspectives-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.cabin-38-perspectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.cabin-38-perspective-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cabin-38-perspective-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.cabin-38-perspective-main {
  grid-column: 1 / -1;
}

.cabin-38-perspective-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.cabin-38-perspective-main img {
  max-height: clamp(300px, 40vh, 450px);
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(10, 20, 40, 0.3), rgba(10, 20, 40, 0.6));
}

.cabin-38-perspective-card:not(.cabin-38-perspective-main) img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cabin-38-perspective-card:hover img {
  transform: scale(1.02);
}

.cabin-38-perspective-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  font-size: clamp(0.6rem, 0.8vw, 0.72rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

/* Blueprint section */
.cabin-38-blueprint {
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cabin-38-blueprint-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cabin-38-blueprint-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.cabin-38-blueprint-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.cabin-38-blueprint-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.cabin-38-blueprint-img {
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(1rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cabin-38-blueprint-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Deck configurations */
.cabin-38-configs {
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: rgba(6, 14, 28, 0.96);
}

.cabin-38-configs-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cabin-38-configs-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cabin-38-configs-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.cabin-38-configs-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.cabin-38-configs-lead {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

.cabin-38-configs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cabin-38-config-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.cabin-38-config-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.cabin-38-config-img {
  width: 100%;
  background: rgba(240, 235, 225, 0.95);
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow: hidden;
}

.cabin-38-config-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.cabin-38-config-card:hover .cabin-38-config-img img {
  transform: scale(1.03);
}

.cabin-38-config-text {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.5rem);
}

.cabin-38-config-text h3 {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}

.cabin-38-config-text p {
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Capabilities grid */
.cabin-38-capabilities {
  width: 100%;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  background: rgba(6, 14, 28, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cabin-38-capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cabin-38-cap-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.cabin-38-cap-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.cabin-38-cap-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.cabin-38-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cabin-38-cap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.cabin-38-cap-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.cabin-38-cap-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cabin-38-cap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cabin-38-cap-card:hover .cabin-38-cap-img-wrap img {
  transform: scale(1.03);
}

.cabin-38-cap-text {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem);
}

.cabin-38-cap-text h3 {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.cabin-38-cap-text p {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .cabin-38-intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .cabin-38-cap-img-wrap {
    aspect-ratio: 3 / 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cabin-38-intro {
    padding-top: 5.5rem;
  }

  .cabin-38-intro-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cabin-38-intro-right {
    order: -1;
  }

  .cabin-38-intro-image {
    max-width: 85%;
    margin: 0 auto;
  }

  .cabin-38-stats-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0;
  }

  .cabin-38-stat:nth-child(3)::after {
    display: none;
  }

  .cabin-38-stat:not(:last-child)::after {
    display: none;
  }

  .cabin-38-cap-grid {
    grid-template-columns: 1fr;
  }

  .cabin-38-perspectives-grid {
    grid-template-columns: 1fr;
  }

  .cabin-38-perspective-main {
    grid-column: 1;
  }

  .cabin-38-configs-grid {
    grid-template-columns: 1fr;
  }
}

/* Model hero: compact intro block, balanced spacing so it doesn’t look like a thin strip */
.model-page section.hero {
  align-items: flex-start;
  justify-content: center;
  min-height: 140px;
  padding-top: 1.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Overview section – refined layout */
.model-overview .model-overview-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.model-overview-lead {
  margin-bottom: 1.5rem;
}

.model-overview-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 600px;
}

.model-overview-bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--white-8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.model-overview-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

/* Model pages: use full width of site, not narrow center column */
.model-page .section,
.model-page .model-section {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 3rem clamp(2rem, 5vw, 4rem);
  box-sizing: border-box;
}

/* Model features: no heavy black box, clean layout */
.model-features-section {
  background: transparent;
  border: none;
  backdrop-filter: none;
}

.model-features-section::before {
  display: none;
}

.model-page .section .section-eyebrow,
.model-page .section .section-title,
.model-page .section .section-lead {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

.model-page .model-section .section-lead {
  max-width: 800px;
}

.model-page .model-content-block {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  padding: 2.5rem clamp(2rem, 4vw, 3rem);
}

.model-page .model-cta-section {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.model-page .hero-text {
  max-width: 900px;
}

.model-page .specs-performance-section {
  width: 100%;
  padding-left: clamp(2rem, 5vw, 4rem);
  padding-right: clamp(2rem, 5vw, 4rem);
  box-sizing: border-box;
}

.model-page .specs-performance-container {
  max-width: none;
  width: 100%;
}

.model-page .specs-section-header {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.model-page .specs-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.model-specs-section .key-figures-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Inner pages hero – same tone as index content sections */
section.hero,
.contact-page-hero {
  position: relative;
  width: 100%;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  margin-bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 50, 0.97) 0%, rgba(8, 18, 35, 0.98) 100%);
}

/* Inner pages: main has same dark base as index content */
main:not(:has(.home-mission)) {
  background: linear-gradient(to bottom, rgba(8, 18, 35, 0.98) 0%, rgba(6, 14, 28, 0.97) 100%);
  min-height: 50vh;
}

.hero-text,
.contact-hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.hero-text h1,
.contact-hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========= CONTACT PAGE ========= */
.contact-page {
  background: linear-gradient(175deg, rgba(8, 18, 35, 0.98) 0%, rgba(5, 12, 24, 1) 100%);
  min-height: 100vh;
}

.ct-hero {
  position: relative;
  width: 100%;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vw, 4.5rem);
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(15, 76, 138, 0.08) 0%, transparent 70%);
}

.ct-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.ct-hero-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.ct-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
  line-height: 1.1;
}

.ct-hero-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

.ct-body {
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
}

.ct-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.ct-info {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ct-info-eyebrow {
  font-size: clamp(0.6rem, 0.85vw, 0.72rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.ct-info-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.ct-info-lead {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin: 0;
}

.ct-info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ct-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ct-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ct-detail-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

a.ct-detail-value:hover {
  color: var(--white);
}

.ct-detail-link {
  color: var(--brand);
}

a.ct-detail-link:hover {
  color: var(--brand-hover);
}

.ct-form-wrap {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(2rem, 3.5vw, 3rem);
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ct-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s, background 0.25s;
}

.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: rgba(15, 76, 138, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.ct-field textarea {
  resize: vertical;
  min-height: 130px;
}

.ct-submit {
  align-self: flex-start;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 0.5rem;
}

.ct-submit:hover:not(:disabled) {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(15, 76, 138, 0.35);
}

.ct-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ct-form-msg-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 900px) {
  .ct-body-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ct-info {
    position: static;
  }
  .ct-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ct-form-row {
    grid-template-columns: 1fr;
  }
  .ct-form-wrap {
    padding: 1.5rem 1.25rem;
  }
  .ct-submit {
    width: 100%;
    text-align: center;
  }
  .ct-field input,
  .ct-field textarea {
    font-size: 16px;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-8);
  margin: 0.75rem auto 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 520px;
  line-height: 1.5;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Model switcher: Cabin 38 | Open 38 | Other models */
.model-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--white-10);
}

.model-nav-link {
  color: var(--white-8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.model-nav-link:hover {
  color: var(--white);
  background: var(--white-10);
}

.model-nav-link.active {
  color: var(--white);
  font-weight: 600;
  pointer-events: none;
}

.model-nav-sep {
  color: var(--white-3);
  font-weight: 300;
  user-select: none;
}

/* Specifications section – Key figures style (Damen-like) */
.model-specs-section {
  width: 100%;
  padding: 4rem clamp(2rem, 5vw, 4rem) 5rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--white-10);
}

.model-specs-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.model-specs-title {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}

.model-specs-ref {
  font-size: 0.9rem;
  color: var(--white-5);
  margin: 0 0 2.5rem;
}

.key-figures {
  margin-top: 0;
}

.key-figures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  max-width: 1000px;
}

.key-figures-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.key-figures-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--white-10);
}

.key-figures-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.key-figures-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.key-figures-row:last-child {
  border-bottom: none;
}

.key-figures-label {
  font-size: 0.95rem;
  color: var(--white-8);
  font-weight: 500;
}

.key-figures-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

/* Model section lead paragraph */
.section-lead {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-8);
}

.model-section .section-title,
.model-section-heading {
  margin-bottom: 0.75rem;
  text-align: left;
}

.model-section .section-lead {
  margin-top: 0;
}

/* Model CTA block */
.model-cta-section {
  text-align: center;
  padding: 6rem 2rem;
  background: #0a2342;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.model-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(15, 76, 138, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.model-cta-title {
  position: relative;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  letter-spacing: 0.015em;
}

.model-cta-button {
  position: relative;
  display: inline-block;
  padding: 0.9rem 3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.model-cta-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* Model specs subsection (reuse specs grid) */
.model-specs .specs-section-header {
  margin-bottom: 2rem;
}

/* Inner sections - scrollable after hero */
.section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  position: relative;
  border: 1px solid var(--white-10);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  background: var(--black-6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  opacity: 0.3;
}

.section:last-of-type {
  border-bottom: none;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 4px solid var(--brand);
}

.section p,
.section li {
  color: var(--white-8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section ul {
  padding-left: 1.2rem;
}

.section ul li {
  margin-bottom: 0.75rem;
}

/* ========= ABOUT PAGE ========= */
.about-page {
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.98) 0%, rgba(5, 12, 24, 1) 100%);
  min-height: 100vh;
}

.ab-hero {
  position: relative;
  width: 100%;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(3.5rem, 6vw, 5rem);
  text-align: center;
  background: radial-gradient(ellipse 75% 50% at 50% 20%, rgba(15, 76, 138, 0.07) 0%, transparent 65%);
}

.ab-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ab-hero-eyebrow {
  font-size: clamp(0.6rem, 0.9vw, 0.72rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.ab-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.ab-hero-lead {
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}

.ab-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
}

.ab-section {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ab-section:last-of-type {
  border-bottom: none;
}

.ab-eyebrow {
  font-size: clamp(0.58rem, 0.8vw, 0.68rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.ab-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ab-lead {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.ab-body {
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 0;
}

/* Values grid */
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-top: 1.5rem;
}

.ab-value-card {
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, background 0.2s;
}

.ab-value-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
}

.ab-value-title {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ab-value-desc {
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

/* Capabilities list */
.ab-capabilities-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.ab-capabilities-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.5rem;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ab-capabilities-list li:last-child {
  border-bottom: none;
}

.ab-capabilities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
}

/* CTA block */
.ab-cta {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 0;
  text-align: center;
}

.ab-cta-title {
  margin-bottom: 1rem;
}

.ab-cta-lead {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 0 auto 1rem;
  max-width: 560px;
}

.ab-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.ab-link:hover {
  color: var(--brand-hover);
  border-bottom-color: var(--brand-hover);
}

.ab-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1.5rem;
}

.ab-cta-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.ab-cta-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(15, 76, 138, 0.35);
}

@media (max-width: 700px) {
  .ab-values-grid {
    grid-template-columns: 1fr;
  }
  .ab-section {
    padding: 2rem 0;
  }
}

.section h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section article {
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--white-10);
  background: var(--black-6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.model-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.model-content-block:last-child {
  border-bottom: none;
}

/* Override section article black background for model content blocks */
.model-section .model-content-block {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.model-section .model-content-block:last-child {
  border-bottom: none;
}

.model-content-block:nth-child(even) {
  direction: rtl;
}

.model-content-block:nth-child(even) > * {
  direction: ltr;
}

.model-content-block img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* Temporary white space where non-Open 38 images were removed */
.model-content-block .image-placeholder {
  width: 100%;
  min-height: 280px;
  max-height: 400px;
  background: rgba(255, 255, 255, 0.08);
  display: block;
}

.model-content-block .model-block-text h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.model-content-block .model-block-text p {
  color: var(--white-8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .model-content-block {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1rem;
  }
  .model-content-block:nth-child(even) {
    direction: ltr;
  }
}

.section strong {
  color: var(--white);
  font-weight: 600;
}

.history-milestone {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(15, 76, 138, 0.12);
  border-left: 4px solid var(--brand);
}

.history-milestone h3 {
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}


.contact-hero-content p {
  font-size: 1.2rem;
  color: var(--white-8);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.form-group label {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--white-2);
  background: var(--white-10);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-5);
}

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


.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.form-message-success {
  display: block;
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-message.form-message-error {
  display: block;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.form-message.form-message-info {
  display: block;
  background: rgba(59, 130, 246, 0.2);
  border: 2px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
}


.footer {
  padding: 2.5rem 2rem;
  background: #050e1e;
  color: rgba(223, 232, 255, 0.92);
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.footer-copyright {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(223, 232, 255, 0.5);
}

.footer-legal {
  margin: 0;
}

.footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal-list li {
  position: relative;
}

.footer-legal-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.65em;
  background: rgba(255, 255, 255, 0.15);
}

.footer-legal a {
  color: rgba(223, 232, 255, 0.55);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-legal a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Legal pages content */
.legal-content {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content a {
  color: #4a8cff;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #6ba3ff;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.legal-table th {
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

/* Cookie consent banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f2f63;
  color: #dfe8ff;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-consent-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-consent-text {
  flex: 1 1 20rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-consent-text a {
  color: #8ab4ff;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #b0ceff;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-consent-btn {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #dfe8ff;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-consent-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent-accept {
  background: #1a4a8a;
  border-color: #2a6ab8;
}

.cookie-consent-accept:hover {
  background: #245aa0;
}

.go-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white-2);
  background: var(--black-7);
  color: var(--white);
  cursor: pointer;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hide go-to-top when menu is open */
body.menu-open .go-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.go-to-top:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--white-3);
  transform: translateY(-4px);
}

.go-to-top:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.go-to-top-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .navbar-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }

  .header {
    display: none;
  }

  .header-actions {
    right: 1rem;
    gap: 0.5rem;
  }

  .hero-video-section {
    height: 70vh;
  }

  .hero-video-text {
    padding-left: 1.5rem;
    max-width: 90%;
  }

  .hero-video-brand {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }

  .hero-video-headline {
    font-size: 1.5rem;
  }

  .hero-video-tagline {
    font-size: 1.2rem;
  }

  .hero-cta-link {
    padding: 0.65rem 1.25rem;
    font-size: 0.7rem;
  }

  .interceptor-section-header,
  .specs-section-header {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .navbar-mobile-logo .logo-img {
    height: 30px;
  }

  .home-mission-grid {
    grid-template-columns: 1fr;
  }

  .home-fleet-grid {
    grid-template-columns: 1fr;
  }

  .home-specs-grid {
    grid-template-columns: 1fr;
  }

  .model-page {
    padding-top: 75px;
  }

  .model-page-open38 #overview,
  .model-page-open38 #features,
  .model-page-open38 #specifications {
    scroll-margin-top: 75px;
  }

  .model-page-open38 .model-hero-with-image {
    min-height: 45vh;
  }

  .model-hero-content {
    padding: 2rem 1.5rem 2.5rem;
  }

  .model-hero-content h1 {
    font-size: 2rem;
  }

  .model-hero-tagline {
    font-size: 1rem;
  }

  .model-hero-specs {
    font-size: 0.75rem;
    gap: 0.5rem 1rem;
  }

  .model-anchor-bar {
    padding: 0.75rem 1rem;
    gap: 0.5rem 1rem;
  }

  .model-anchor-link {
    font-size: 0.85rem;
  }

  .model-anchor-cta {
    margin-left: 0;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  section.hero,
  .contact-page-hero {
    min-height: 30vh;
    padding: 4rem 1.5rem 3rem;
  }

  .hero-text h1,
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .model-nav {
    padding: 0.75rem 1rem;
    gap: 0.35rem 0.5rem;
  }

  .model-nav-link {
    font-size: 0.85rem;
  }

  .model-cta-section {
    padding: 4rem 1.5rem;
  }

  .model-cta-title {
    font-size: 1.05rem;
  }

  .model-cta-button {
    padding: 0.8rem 2.25rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .model-page .section,
  .model-page .model-section {
    padding: 2.5rem 1.5rem;
  }

  .model-page .model-content-block {
    padding: 2rem 1.5rem;
  }

  .model-page .specs-performance-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .model-page .specs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .model-bar-inner {
    flex-wrap: wrap;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
    min-height: auto;
  }

  .model-bar-name {
    font-size: 1rem;
    width: 100%;
    order: 1;
  }

  .model-bar-tabs {
    order: 2;
    gap: 0.5rem 1rem;
  }

  .model-bar-tab {
    font-size: 0.9rem;
  }

  .model-bar-cta {
    order: 3;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .model-specs-section {
    padding: 2.5rem 1.5rem 3rem;
  }

  .model-specs-title {
    font-size: 1.5rem;
  }

  .model-specs-ref {
    margin-bottom: 1.5rem;
  }

  .key-figures-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 2rem 1.5rem;
    margin: 1.5rem auto;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section h3 {
    font-size: 1.1rem;
  }

  .go-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .go-to-top-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* iOS: prevent zoom on input focus */
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  /* Touch targets: ensure nav columns are easy to tap */
  .navbar-mobile-col {
    min-height: 44px;
  }

  .menu-item-mobile {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .hero-text h1,
  .contact-hero-content h1 {
    font-size: 1.65rem;
  }

  .section {
    padding: 1.5rem 1rem;
    margin: 1rem auto;
  }

  .section h2 {
    font-size: 1.35rem;
  }

  .navbar-mobile-row {
    padding: 0 0.5rem;
  }

  .hero-video-text {
    max-width: 92%;
    padding-left: 1rem;
  }

  .spec-item {
    padding: 1.5rem 1rem;
  }
}

/* ==============================
   OTHER MODELS PAGE
   ============================== */
.model-page-other { padding-top: 0; }

.other-intro {
  width: 100%;
  padding: clamp(9.5rem, 12vw, 10.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vw, 5rem);
  background: linear-gradient(170deg, rgba(6, 14, 28, 0.92) 0%, rgba(10, 22, 42, 0.85) 100%),
              radial-gradient(ellipse at 70% 30%, rgba(0, 163, 255, 0.06) 0%, transparent 60%);
}

.other-intro-inner {
  max-width: 800px;
}

.other-intro-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.other-intro-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.other-intro-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 620px;
}

.other-intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brand);
  padding: 0.65rem 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.other-intro-cta:hover {
  background: var(--brand);
  color: var(--bg);
}

.other-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.other-section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.other-section-eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.other-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.other-section-lead {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

.other-military {
  width: 100%;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  background: rgba(6, 14, 28, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.other-civil-compact {
  width: 100%;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.other-civil-compact .other-section-header {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.other-civil-compact .other-section-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.other-civil-compact .other-section-eyebrow {
  opacity: 0.7;
}

.other-civil-models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.other-civil-model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.other-civil-model-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.other-civil-model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.other-civil-model-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
}

.other-civil-model-info h3 {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}

.other-civil-model-info p {
  font-size: clamp(0.72rem, 0.85vw, 0.8rem);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  margin: 0;
}

.other-civil-gallery {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 3px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.other-civil-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.other-civil-thumb:hover {
  opacity: 1;
}

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

.other-civil-cta {
  text-align: left;
}

.other-civil-cta a {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.other-civil-cta a:hover {
  color: var(--brand);
}

.other-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

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

.other-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.other-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.other-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.other-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.other-card:hover .other-card-img img {
  transform: scale(1.03);
}

.other-card-text {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem);
}

.other-card-text h3 {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.other-card-text p {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

.other-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1vw, 0.75rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.other-gallery-item {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

.other-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.other-gallery-item:hover img {
  transform: scale(1.05);
}

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

  .other-civil-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .other-intro {
    padding-top: 5.5rem;
  }

  .other-grid-3,
  .other-grid-2 {
    grid-template-columns: 1fr;
  }

  .other-civil-models {
    grid-template-columns: 1fr;
  }

  .other-civil-model {
    grid-template-columns: 1fr 1fr;
  }

  .other-civil-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
