/* ==========================================================================
   Nordic Offshore Systems AS - Design System & Styles v2.0
   ========================================================================== */

:root {
    /* Color Palette — Refined Navy + Signal Orange */
    --clr-background: #ffffff;
    --clr-surface: #f4f6f8;
    --clr-surface-warm: #faf8f6;
    --clr-primary: #002855;
    --clr-primary-light: #0051a8;
    --clr-primary-glow: rgba(0, 40, 85, 0.15);
    --clr-accent: #0078c8;
    --clr-steel: #5B7B94;
    --clr-signal: #E86C2A;
    --clr-signal-light: #F5924E;
    --clr-signal-glow: rgba(232, 108, 42, 0.15);
    --clr-text-main: #0f1a2a;
    --clr-text-muted: #4b5563;
    --clr-border: #dfe4ea;
    --clr-dark-bg: #001A3D;
    --clr-dark-surface: #002855;
    --clr-dark-card: #0a2540;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 7rem;
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Scroll progress */
    --scroll-progress: 0%;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
    color: var(--clr-text-main);
}

p {
    margin-bottom: 1.25rem;
    color: var(--clr-text-muted);
}

ul {
    list-style: none;
}

a {
    color: var(--clr-primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--clr-accent);
}

/* ==========================================================================
   Layout & Utility Classes
   ========================================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-tight {
    padding: 6rem 0;
}

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

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-sm,
.btn-large {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--clr-signal);
    color: white;
    box-shadow: 0 2px 12px var(--clr-signal-glow);
}

.btn-primary:hover {
    background-color: var(--clr-signal-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 108, 42, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--clr-border);
    color: var(--clr-text-main);
}

/* Hero secondary button — light styling on dark bg */
.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.hero .btn-secondary:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--clr-primary);
    background-color: rgba(0, 40, 85, 0.03);
    color: var(--clr-text-main);
}

.btn-primary-sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
    background-color: var(--clr-signal);
    color: white;
}

.btn-primary-sm:hover {
    background-color: var(--clr-signal-light);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Scroll progress indicator */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-signal), var(--clr-signal-light));
    width: var(--scroll-progress);
    transition: width 0.1s linear;
    opacity: 0;
    box-shadow: 0 0 8px var(--clr-signal-glow);
}

.navbar.scrolled::after {
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Navbar text: white on hero → dark on scroll */
.navbar .logo a {
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo a {
    color: var(--clr-text-main);
}

.navbar .logo {
    color: white;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo {
    color: var(--clr-text-main);
}

.navbar .hamburger span {
    background: white;
    transition: var(--transition-smooth);
}

.navbar.scrolled .hamburger span {
    background: var(--clr-text-main);
}

.navbar .nav-links a:not(.btn-primary-sm) {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-links a:not(.btn-primary-sm) {
    color: var(--clr-text-muted);
}

.navbar .nav-links a:not(.btn-primary-sm):hover {
    color: white;
}

.navbar.scrolled .nav-links a:not(.btn-primary-sm):hover {
    color: var(--clr-text-main);
}

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

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    color: var(--clr-text-main);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--clr-text-main);
    transition: var(--transition-fast);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn-primary-sm) {
    color: var(--clr-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary-sm):hover {
    color: var(--clr-text-main);
}

/* ==========================================================================
   Hero Section — Split Layout
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    padding-top: 80px;
}

/* Hero staggered entry animation */
.hero-text > * {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-reveal 0.7s ease-out forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.15s; }
.hero-text > *:nth-child(2) { animation-delay: 0.3s; }
.hero-text > *:nth-child(3) { animation-delay: 0.45s; }
.hero-text > *:nth-child(4) { animation-delay: 0.6s; }
.hero-text > *:nth-child(5) { animation-delay: 0.8s; }

@keyframes hero-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    color: var(--clr-signal-light);
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(232, 108, 42, 0.4);
    border-radius: 50px;
    background: rgba(232, 108, 42, 0.1);
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 800;
    line-height: 1.08;
}

.hero p {
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero trust bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
}

.trust-item strong {
    color: var(--clr-signal-light);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero visual — vessel photo panel */
.hero-visual {
    position: relative;
    padding-top: 80px;
    height: 100%;
    min-height: 500px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero-visual-overlay {
    position: absolute;
    inset: 80px 0 0 0;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(180deg, transparent 50%, rgba(0, 26, 61, 0.6) 100%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(0, 26, 61, 0.97) 0%, rgba(0, 40, 85, 0.92) 40%, rgba(0, 30, 65, 0.88) 100%);
}

/* Grid overlay */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 60%, transparent 100%);
}

/* Animated horizon glow */
.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(0deg, rgba(232, 108, 42, 0.08) 0%, transparent 100%);
    animation: horizon-pulse 8s ease-in-out infinite alternate;
}

@keyframes horizon-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: hero-reveal 0.8s ease-out 1.2s forwards;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 3px;
    height: 7px;
    background-color: var(--clr-signal-light);
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    background-color: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

/* About vessel photo — overlapping effect */
.about-vessel-photo {
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--clr-border);
    position: relative;
    z-index: 2;
    margin-bottom: -1rem;
}

.about-vessel-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.section-text h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--clr-steel);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-highlight {
    border-color: var(--clr-signal);
    background: linear-gradient(135deg, white 85%, rgba(232, 108, 42, 0.06) 100%);
}

.stat-card-highlight::before {
    background: var(--clr-signal);
    opacity: 1;
}

.stat-card h3 {
    color: var(--clr-signal);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: -0.5px;
}

.stat-card p {
    color: var(--clr-text-muted);
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.why-us-section {
    background: var(--clr-surface-warm);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-us-content {
    max-width: 560px;
}

.why-us-tagline {
    color: var(--clr-signal);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-mono);
    font-weight: 700;
}

.why-us-title {
    font-size: 2.5rem;
    margin: 1rem 0;
    letter-spacing: -1px;
}

.why-us-text {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.vendor-callout {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-left: 4px solid var(--clr-signal);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vendor-callout p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--clr-text-main);
    font-weight: 500;
    font-style: italic;
}

/* Who We Serve — Segment Cards */
.who-we-serve h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.segment-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.segment-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.segment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--clr-primary);
    transition: var(--transition-smooth);
}

.segment-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.segment-card:hover::before {
    background: var(--clr-signal);
}

.segment-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-steel);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.segment-card h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
}

.segment-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.segment-examples {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--clr-steel);
    letter-spacing: 0.3px;
}

/* ==========================================================================
   Services Section — Bento Grid
   ========================================================================== */

.section-header {
    margin-bottom: 1rem;
}

.section-header h2 {
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.service-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Featured first card — full width bento style */
.service-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 2rem;
    background: var(--clr-dark-bg);
    border-color: var(--clr-dark-surface);
}

.service-card:first-child .service-icon {
    grid-row: 1 / 3;
    align-self: start;
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-signal-light);
}

.service-card:first-child h3 {
    align-self: end;
    margin-bottom: 0.5rem;
    color: white;
}

.service-card:first-child ul {
    grid-column: 2;
    columns: 2;
    column-gap: 2rem;
}

.service-card:first-child li {
    color: rgba(255, 255, 255, 0.7);
}

.service-card:first-child li::before {
    color: var(--clr-signal-light);
}

.service-card:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at bottom right, rgba(232, 108, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Second and third cards — colored left borders */
.service-card:nth-child(2) {
    border-left: 4px solid var(--clr-accent);
}

.service-card:nth-child(3) {
    border-left: 4px solid var(--clr-steel);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.service-card:first-child:hover {
    box-shadow: 0 16px 48px rgba(0, 26, 61, 0.4);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--clr-surface);
    color: var(--clr-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--clr-text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.service-card li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--clr-signal);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

/* ==========================================================================
   Track Record Section — Timeline Layout
   ========================================================================== */

.track-record-section {
    position: relative;
    overflow: hidden;
    background: var(--clr-dark-bg);
}

.track-record-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.04;
    background: url('img/PRESENTASJON_vfx-1-1024x683.jpg') center/cover no-repeat;
    filter: grayscale(1);
}

.track-record-section > .container {
    position: relative;
    z-index: 1;
}

.track-record-section .section-header h2 {
    color: white;
}

.track-record-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Timeline */
.track-record-timeline {
    margin-top: var(--spacing-lg);
    position: relative;
    padding-left: 2rem;
}

/* Timeline vertical line */
.track-record-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--clr-signal) 0%, var(--clr-steel) 50%, transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--clr-dark-bg);
    border: 3px solid var(--clr-signal);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    background: var(--clr-signal);
    box-shadow: 0 0 12px var(--clr-signal-glow);
}

.track-record-card {
    background: var(--clr-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 2rem 2.5rem;
    transition: var(--transition-smooth);
}

.track-record-card:hover {
    border-color: rgba(232, 108, 42, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.track-record-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 108, 42, 0.1);
    color: var(--clr-signal-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.track-record-card h4 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.track-record-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.65;
}

/* ==========================================================================
   Equipment Section
   ========================================================================== */

#equipment {
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: var(--spacing-lg);
}

.equipment-item {
    text-align: center;
    padding: 2rem 1.25rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    background: white;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.equipment-item .equipment-logo {
    display: block;
    width: 100px;
    height: 50px;
    margin: 0 auto 1rem;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(1);
    transition: var(--transition-smooth);
}

.equipment-item:hover .equipment-logo {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

.equipment-item:hover {
    border-color: var(--clr-signal);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.equipment-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 0.25rem;
}

.equipment-item p {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.4;
}

.equipment-item a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.equipment-item a h4 {
    color: var(--clr-text-main);
}

.equipment-item a:hover h4 {
    color: var(--clr-signal);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    background: var(--clr-surface-warm);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: var(--clr-steel);
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.65;
}

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

/* ==========================================================================
   Contact & CTA Section
   ========================================================================== */

.cta-section {
    background: var(--clr-dark-bg);
    border: none;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle corner gradient */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse at top right, rgba(232, 108, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2,
.cta-section p,
.cta-section .contact-link,
.cta-section .org-nr,
.cta-section label {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
}

.cta-section .org-nr {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.15;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-details .contact-link {
    font-size: 1.15rem;
    font-family: var(--font-mono);
    color: white;
}

.contact-details .contact-link:hover {
    color: var(--clr-signal-light);
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    width: fit-content;
}

.response-badge svg {
    color: var(--clr-signal-light);
    flex-shrink: 0;
}

.org-nr {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--clr-signal);
    background: rgba(255, 255, 255, 0.12);
}

/* CTA submit button */
.cta-section .btn-primary {
    background-color: var(--clr-signal);
    color: white;
    border: none;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

.cta-section .btn-primary:hover {
    background-color: var(--clr-signal-light);
    color: white;
    box-shadow: 0 6px 20px rgba(232, 108, 42, 0.3);
}

.w-100 {
    width: 100%;
}

/* Form status message */
#form-status {
    margin-top: 1rem;
    text-align: center;
    display: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

/* ==========================================================================
   Founder Card
   ========================================================================== */

.about-founder {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
    margin-top: 0.5rem;
}

.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--clr-signal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    display: flex;
    flex-direction: column;
}

.founder-info strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--clr-text-main);
}

.founder-info span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.founder-prev {
    font-size: 0.78rem !important;
    color: var(--clr-steel) !important;
    font-style: italic;
}

/* ==========================================================================
   Section Divider
   ========================================================================== */

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--clr-signal), var(--clr-primary), transparent);
    border: none;
    margin: 0;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-section {
    padding-top: 120px;
}

.legal-container {
    max-width: 800px;
}

.legal-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.legal-list li {
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.legal-back {
    margin-top: 3rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background-color: #00112a;
    color: white;
}

.footer .logo {
    color: white;
}

.footer .logo a {
    color: white;
    text-decoration: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-location {
    font-family: var(--font-mono);
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    letter-spacing: 0.5px;
}

.footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.footer-contact p,
.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.contact-link {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--clr-primary-light);
    display: block;
    margin-bottom: 0.5rem;
}

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links-list a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-links-list a:hover {
    color: white;
}

/* LinkedIn Icon */
.linkedin-link {
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.linkedin-link:hover {
    opacity: 0.8;
}

.linkedin-icon {
    height: 36px;
    width: auto;
    display: block;
    filter: invert(1) brightness(2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.15);
    text-underline-offset: 2px;
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: white;
    text-decoration-color: white;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 992px) {

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        padding-top: 120px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust-bar {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-content {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .service-card:first-child {
        grid-column: auto;
        display: block;
    }

    .service-card:first-child ul {
        columns: 1;
        grid-column: auto;
    }

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

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

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

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        border-left: 1px solid var(--clr-border);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
    }

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

    /* Mobile nav always uses dark text */
    .nav-links a:not(.btn-primary-sm) {
        color: var(--clr-text-muted) !important;
    }

    .nav-links a:not(.btn-primary-sm):hover {
        color: var(--clr-text-main) !important;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-divider {
        display: none;
    }

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

    .track-record-timeline {
        padding-left: 1.5rem;
    }

    .track-record-card {
        padding: 1.5rem;
    }

    .segment-cards {
        gap: 1rem;
    }

    /* Equipment: horizontal scroll on mobile */
    .equipment-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .equipment-item {
        min-width: 155px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

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

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

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

    .contact-info h2 {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-text > * {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}
