@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@700;800&family=Manrope:wght@400;600;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Brand Colors */
    --brand-navy: #0C2744;
    --brand-cyan: #09ADCC;
    --deep-navy: #061B31;
    --aviation-blue: #086AA6;
    --pale-technical-blue: #EAF4F8;
    --cloud-background: #F5F8FA;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #102638;
    --text-secondary: #607482;
    --border: #D4E1E7;
    
    /* Metrics / Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Typography */
    --font-heading: 'Manrope', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* Base Reset & Accessibility */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@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;
    }
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--brand-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

p {
    max-width: 72ch;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    color: var(--aviation-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: var(--brand-cyan);
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--brand-cyan);
    outline-offset: 4px;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
}

.btn-primary {
    background-color: var(--brand-navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--deep-navy);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-navy);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--brand-navy);
}

.btn-header-cta {
    background-color: var(--brand-navy);
    color: var(--white);
}
.btn-header-cta:hover, .btn-header-cta:focus {
    background-color: var(--aviation-blue);
    color: var(--white);
}

.btn-whatsapp {
    background-color: transparent;
    color: var(--brand-navy);
    border: 1px solid var(--brand-navy);
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    background-color: var(--brand-navy);
    color: var(--white);
}

/* Temporary Wordmark */
.temp-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.5px;
    text-decoration: none !important;
}
.temp-logo span {
    color: var(--brand-cyan);
}

/* Header */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
  display: block;
  width: clamp(220px, 19vw, 320px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand-logo img:not(.header-logo) {
    height: 48px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
}

.main-nav a.btn {
    color: var(--white);
}

.main-nav a:hover:not(.btn) {
    color: var(--brand-cyan);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--brand-navy);
}

/* Footer */
.site-footer {
    background-color: var(--cloud-background);
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    font-size: 15px;
}

.footer-col strong {
    color: var(--brand-navy);
    display: block;
    margin-bottom: 12px;
}

.footer-brand-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 26px;
    margin-top: 28px;
    border-top: 1px solid rgba(6, 27, 49, 0.08); /* Adjusted for light background */
}

.footer-brand-signature img {
    width: clamp(52px, 5vw, 72px);
    height: auto;
    object-fit: contain;
}

.footer-brand-signature p {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.68;
    text-align: center;
    color: var(--brand-navy);
}

/* Counters Base */
.metric-group {
    display: flex;
    flex-direction: column;
}
.metric-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-cyan);
    margin-bottom: 8px;
    line-height: 1;
}
.metric-label {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ========================================= */
/* --- CONCEPT A: REDESIGN ---               */
/* ========================================= */

.home-page .site-header {
    background: var(--white);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.home-page .main-nav {
    margin-left: auto;
    margin-right: 32px;
}

/* Hero */
.home-page .hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.home-page .hero-bg-layer {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-refueling.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.home-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(6, 27, 49, 0.58);
    z-index: 2;
}
.home-page .hero-cloud-shadow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 3;
    background: radial-gradient(ellipse at center, rgba(3, 15, 30, 1) 0%, transparent 65%);
    animation: heroCloudShadow 11s ease-in-out infinite alternate;
    pointer-events: none;
    mix-blend-mode: multiply;
}
.home-page .hero-haze {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 4;
    background: radial-gradient(ellipse at top left, rgba(230, 245, 255, 1) 0%, transparent 50%),
                radial-gradient(ellipse at top right, rgba(134, 219, 238, 0.8) 0%, transparent 50%);
    animation: heroHazeDrift 14s ease-in-out infinite alternate;
    pointer-events: none;
    mix-blend-mode: screen;
}
.home-page .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    background: radial-gradient(ellipse at 50% 40%, rgba(6, 27, 49, 0.6) 0%, rgba(6, 27, 49, 0.2) 40%, transparent 70%);
    pointer-events: none;
}
@keyframes heroCloudShadow {
    0% { transform: translate(15%, -10%); opacity: 0.10; }
    100% { transform: translate(-15%, 15%); opacity: 0.28; }
}
@keyframes heroHazeDrift {
    0% { transform: translate(-5%, 5%); opacity: 0.08; }
    100% { transform: translate(5%, -5%); opacity: 0.18; }
}
@media (prefers-reduced-motion: reduce) {
    .home-page .hero-cloud-shadow,
    .home-page .hero-haze {
        animation: none;
        transform: translate(0, 0);
        opacity: 0.3;
    }
}
.home-page .hero .container {
    position: relative;
    z-index: 6;
    text-align: center;
}
.home-page .hero-title {
    max-width: 1150px;
    margin-inline: auto;
    font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(3.6rem, 5vw, 5.8rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    text-wrap: balance;
    color: #ffffff;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
    margin-bottom: 30px;
}
.home-page .hero-title span {
    display: block;
}
.home-page .hero p.lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--pale-technical-blue);
    max-width: 720px;
    margin: 0 auto 40px;
}
.home-page .hero-trust {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    backdrop-filter: blur(4px);
    z-index: 6;
}
.home-page .trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}
.home-page .trust-item {
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.hero-trust-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
}
.hero-trust-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.hero-trust-icon circle {
    fill: rgba(9, 173, 204, 0.16);
    stroke: #09ADCC;
    stroke-width: 1.8;
}
.hero-trust-icon path {
    fill: none;
    stroke: #09ADCC;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Metrics */
.home-page .metrics-section {
    padding: 100px 0;
    background: var(--white);
}
.home-page .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.home-page .metric-group {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--border);
    transition: border-color 0.4s ease;
}
.home-page .metric-group:hover {
    border-left-color: var(--brand-cyan);
}

/* Services */
.home-page .services-section {
    padding: 120px 0;
    background: var(--cloud-background);
}
.home-page .services-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.home-page .services-header h2 {
    font-size: 3rem;
}
.home-page .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.home-page .service-panel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    cursor: default;
}
.home-page .service-panel img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.home-page .service-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 27, 49, 0.9) 0%, rgba(6, 27, 49, 0.4) 100%);
    transition: background 0.4s ease;
}
.home-page .service-panel:hover img.bg,
.home-page .service-panel:focus-within img.bg {
    transform: scale(1.04);
}
.home-page .service-panel:hover::after,
.home-page .service-panel:focus-within::after {
    background: linear-gradient(to top, rgba(6, 27, 49, 0.95) 0%, rgba(6, 27, 49, 0.6) 100%);
}
.home-page .service-content {
    position: relative;
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}
.home-page .service-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}
.home-page .service-content p.intro {
    color: var(--pale-technical-blue);
    font-size: 1rem;
    margin-bottom: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.home-page .service-capabilities {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    border-top: 2px solid var(--brand-cyan);
    padding-top: 20px;
}
.home-page .service-panel:hover .service-capabilities,
.home-page .service-panel:focus-within .service-capabilities {
    max-height: 400px;
    opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
    .home-page .service-capabilities {
        max-height: 400px;
        opacity: 1;
    }
    .home-page .service-panel::after {
        background: linear-gradient(to top, rgba(6, 27, 49, 0.95) 0%, rgba(6, 27, 49, 0.6) 100%);
    }
    .home-page .service-content h3,
    .home-page .service-content p.intro {
        transform: translateY(-10px);
    }
}
.home-page .service-panel:hover h3,
.home-page .service-panel:focus-within h3,
.home-page .service-panel:hover p.intro,
.home-page .service-panel:focus-within p.intro {
    transform: translateY(-10px);
}
.home-page .service-capabilities li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.home-page .service-capabilities li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 16px;
    height: 2px;
    background: var(--brand-cyan);
    transform: translateY(-50%);
}

/* SAF */
.home-page .saf-section {
    background-color: var(--brand-navy);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.home-page .saf-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(9,173,204,0.08) 0%, rgba(6,27,49,0) 60%);
    pointer-events: none;
}
.home-page .saf-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.home-page .saf-grid h2 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}
.home-page .saf-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.home-page .saf-block {
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}
.home-page .saf-block:hover {
    background: rgba(255,255,255,0.06);
    border-left-color: var(--brand-cyan);
    transform: translateX(5px);
}
.home-page .saf-block h3 {
    color: var(--brand-cyan);
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.home-page .saf-block p {
    color: var(--pale-technical-blue);
    font-size: 0.95rem;
    margin: 0;
}

/* Team */
.home-page .team-section {
    padding: 120px 0;
    background: var(--white);
}
.home-page .team-intro {
    max-width: 700px;
    margin-bottom: 80px;
}
.home-page .team-intro h2 {
    font-size: 3rem;
}
.home-page .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.home-page .team-column {
    padding-top: 40px;
    border-top: 4px solid var(--deep-navy);
    position: relative;
    transition: transform 0.3s ease;
}
.home-page .team-column:hover {
    transform: translateY(-5px);
}
.home-page .team-name {
    font-size: 2.5rem;
    color: var(--brand-navy);
    margin-bottom: 10px;
    line-height: 1.1;
    font-family: var(--font-heading);
    font-weight: 800;
}
.home-page .team-role {
    color: var(--aviation-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: block;
}
.home-page .team-positioning {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.6;
}
.home-page .team-credentials {
    list-style: none;
    padding: 0;
}
.home-page .team-credentials li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.home-page .team-credentials li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 16px;
    height: 2px;
    background: var(--brand-cyan);
    transform: translateY(-50%);
}

/* Final CTA */
.home-page .final-cta {
    padding: 120px 0;
    background: var(--deep-navy);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-page .cta-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--brand-cyan);
    transition: width 0.8s ease;
}
.home-page .final-cta:hover .cta-line {
    width: 200px;
}
.home-page .final-cta h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    max-width: 800px;
    margin: 0 auto 20px;
}
.home-page .final-cta p {
    color: var(--pale-technical-blue);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}
.home-page .final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}


/* ========================================= */
/* --- CONCEPT B: INDUSTRIAL & OPERATIONAL --- */
/* ========================================= */
.concept-b .hero {
    background: var(--cloud-background);
    padding: 100px 0;
    border-bottom: 10px solid var(--brand-navy);
}
.concept-b .hero h1 {
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    max-width: 900px;
}
.concept-b .hero p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brand-navy);
}
.concept-b .capabilities {
    display: flex;
    flex-direction: column;
}
.concept-b .capability-panel {
    padding: 100px 5%;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}
.concept-b .capability-panel:hover {
    background: var(--pale-technical-blue);
}
.concept-b .capability-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}
.concept-b .metrics-section {
    background: var(--brand-navy);
    color: var(--white);
    padding: 80px 0;
}
.concept-b .metric-value {
    color: var(--white);
}
.concept-b .metric-label {
    color: var(--pale-technical-blue);
}
.concept-b .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* ========================================= */
/* --- CONCEPT C: PREMIUM INSTITUTIONAL --- */
/* ========================================= */
.concept-c .site-header {
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.concept-c .hero {
    padding: 140px 0 100px;
    background: var(--white);
}
.concept-c .hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}
.concept-c .hero h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.concept-c .metrics-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.concept-c .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.concept-c .capabilities {
    padding: 120px 0;
    background: var(--cloud-background);
}
.concept-c .capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.concept-c .capability-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(12, 39, 68, 0.05);
    border-top: 4px solid var(--brand-navy);
}
.concept-c .team-section {
    padding: 120px 0;
}
.concept-c .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}


/* Responsive Overrides */
@media (max-width: 1024px) {
    .concept-b .hero h1, .concept-c .hero h1 {
        font-size: 3rem;
    }
    .home-page .hero-title {
        font-size: clamp(4rem, 8vw, 5rem);
    }
    .home-page .metrics-grid, .concept-b .metrics-grid, .concept-c .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .home-page .saf-grid, .home-page .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .home-page .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .concept-b .capability-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .concept-c .capability-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .home-page .services-grid,
    .home-page .saf-blocks,
    .concept-c .team-grid, 
    .concept-c .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .home-page .trust-grid {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .metric-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .home-page .hero-title {
        font-size: clamp(2.7rem, 11vw, 3.8rem);
        line-height: 0.96;
        letter-spacing: 0;
        text-align: left;
        text-wrap: balance;
    }
    .home-page .hero p.lead {
        text-align: left;
    }
}

@media (max-width: 390px) {
    .concept-b .hero h1, .concept-c .hero h1 {
        font-size: 2.2rem;
    }
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ========================================= */
/* INTERNAL PAGES STYLES                     */
/* ========================================= */

.main-nav a.active {
    color: var(--brand-cyan);
    border-bottom: 2px solid var(--brand-cyan);
    padding-bottom: 4px;
}
.main-nav a.btn-header-cta.active {
    border-bottom: none;
}

/* Internal Hero */
.internal-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-color: var(--deep-navy);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 120px 0 60px;
}
.internal-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    mix-blend-mode: luminosity;
}
.internal-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.internal-hero-eyebrow {
    font-family: var(--font-heading);
    color: var(--brand-cyan);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.internal-hero h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    text-wrap: balance;
}
.internal-hero p.lead {
    font-size: 1.25rem;
    color: var(--pale-technical-blue);
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 30px;
}

/* Internal Section Blocks */
.internal-section {
    padding: 100px 0;
    background: var(--white);
}
.internal-section.bg-alt {
    background: var(--cloud-background);
}
.internal-section.bg-navy {
    background: var(--brand-navy);
    color: var(--white);
}
.internal-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--brand-navy);
}
.internal-section.bg-navy h2 {
    color: var(--white);
}
.internal-section-intro {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.6;
}
.internal-section.bg-navy .internal-section-intro {
    color: var(--pale-technical-blue);
}

/* Editorial Layouts */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.editorial-grid.reverse .editorial-content {
    order: 2;
}
.editorial-grid.reverse .editorial-image {
    order: 1;
}
.editorial-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(6, 27, 49, 0.1);
}
.editorial-content h3 {
    font-size: 1.8rem;
    color: var(--brand-navy);
    margin-bottom: 20px;
}
.editorial-list {
    list-style: none;
    padding: 0;
}
.editorial-list li {
    position: relative;
    padding-left: 26px;
    font-size: 1.05rem;
}
.editorial-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 16px;
    height: 2px;
    background: var(--brand-cyan);
    transform: translateY(-50%);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--brand-navy);
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--brand-cyan);
}
select.form-control {
    background-color: white;
}

@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .editorial-grid.reverse .editorial-content,
    .editorial-grid.reverse .editorial-image {
        order: unset;
    }
}
