/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate Color Palette */
    --primary-blue: #003366;
    --dark-black: #050A10;
    --mid-black: #2B2E33;
    --light-black: #6A7078;

    /* Light Mode Palette */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --border-gray: #dee2e6;

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-gray: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;

    /* Semantic Mappings */
    --bg-body: var(--white);
    --bg-section-alt: var(--off-white);
    --bg-card: var(--white);
    --border-color: var(--border-gray);

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 3vh 0;
    --header-height: 70px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-body);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--dark-black);
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-black);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-fast);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark-black);
    transition: var(--transition-fast);
}

/* ============================================================
   SLIDE 1: HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: url('backgrounds/histo-company-bg01-1600prc30.webp') repeat fixed center center / cover;
    color: var(--white);
    overflow: hidden;
}

/* Hero corner imagery */
.hero-montage {
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(90px, 25vw, 360px);
    z-index: 0;
    pointer-events: none;
}

.hero-montage img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-kbride {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(90px, 25vw, 360px);
    z-index: 0;
    pointer-events: none;
}

.hero-kbride img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Hero inner — title + subtitle full-width left, cards centered, CTA below */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: calc(var(--header-height) + 3vh) 35px 3vh;
    gap: min(20px, 2vh);
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: min(3.2rem, 5vh);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-black);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: min(1.05rem, 2.1vh);
    font-weight: 500;
    line-height: 1.5;
    color: var(--dark-black);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Three industry cards — same style as Markets, centered below text */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 672px;
    margin: 0 auto;
    width: 100%;
}

/* Hero market boxes — scaled to ~70% of Markets slide */
.hero-cards .industry-card {
    padding: 25px 20px;
}

.hero-cards .ind-card-logo {
    width: 120px;
    margin-bottom: 12px;
}

.hero-cards .ind-card-title {
    font-size: 1.05rem;
    margin-bottom: 7px;
}

.hero-cards .ind-card-tagline {
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.hero-cards .ind-btn {
    max-width: 140px;
    padding: 8px 14px;
    font-size: 0.8rem;
}

.hero-cta {
    position: absolute;
    bottom: max(5vh, 45px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #003366;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-learn-more:hover {
    background-color: #002244;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
}

.btn-primary:hover {
    background: #004488;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Action buttons — offsite links, card CTAs, form submit */
.btn-action {
    background: #0E7490;
    color: var(--text-white);
}

.btn-action:hover {
    background: #0C647E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-media {
    display: inline-block;
    padding: 8px 20px;
    background: #0E7490;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition-normal);
    align-self: flex-start;
}

.btn-media:hover {
    background: #0C647E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   SHARED SECTION HELPERS
   ============================================================ */
.section-header {
    margin-bottom: min(30px, 3vh);
    width: 100%;
    text-align: center;
}

.text-left,
.text-right,
.text-center {
    text-align: center;
}

.text-left .title-underline,
.text-right .title-underline,
.text-center .title-underline {
    margin: 0 auto min(16px, 1.8vh);
}

.text-left .section-subtitle,
.text-right .section-subtitle,
.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: min(2.4rem, 4.2vh);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: min(12px, 1.2vh);
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--light-black);
    margin: 0 auto min(16px, 1.8vh);
    border-radius: 2px;
}

/* Align left/right variants to center */
.title-underline-left,
.title-underline-right {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: min(1.1rem, 2vh);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Generic full-width section wrapper */
.section-inner {
    width: 100%;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
}

/* Centered CTA row used on every slide */
.section-cta {
    margin-top: min(14px, 1.4vh);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* ============================================================
   SLIDE 2: ABOUT
   ============================================================ */

.about-section {
    position: relative;
    padding: var(--section-padding);
    background: url('backgrounds/histo-company-bg02-1600.webp') repeat fixed center center / cover;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* overlay */
.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35); /* adjust here */
    pointer-events: none;
    z-index: 0;
}

/* keep content above overlay */
.about-section > * {
    position: relative;
    z-index: 1;
}



/* CTA pinned to bottom of about and kylon slides */
.about-section>.section-cta,
.kylon-section>.section-cta {
    position: absolute;
    bottom: max(5vh, 45px);
    left: 0;
    right: 0;
    z-index: 10;
}

.about-inner {
    display: flex;
    gap: 40px;
    padding: 0 35px 80px;
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    align-items: flex-start;
}

.about-left {
    flex: 0 0 38%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-img-placeholder {
    width: 100%;
    height: min(420px, 60vh);
    background: rgba(200, 210, 220, 0.4);
    border: 2px dashed rgba(0, 51, 102, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 51, 102, 0.4);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: min(18px, 2vh);
}

.about-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-card {
    background: rgba(255, 255, 255, 0.88);
    padding: 18px 22px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.about-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.about-card-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================================
   SLIDE 3: KYLON
   ============================================================ */
.kylon-section {
    position: relative;
    padding: var(--section-padding);
    background: url('backgrounds/histo-company-bg03-1600.webp') repeat fixed center center / cover;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}




/* Title sits above the row — image and first card share the same top edge */
.kylon-header {
    padding: 0 35px;
    margin-bottom: min(16px, 1.8vh);
    text-align: center;
}

.kylon-inner {
    display: flex;
    gap: 50px;
    padding: 0 35px 80px;
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    align-items: flex-start;
}

.kylon-left {
    flex: 0 0 58%;
}

.kylon-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.tech-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Three stacked horizontal cards */
.kylon-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kylon-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    padding: 16px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.kylon-card-label {
    flex: 0 0 68px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.kylon-card-text {
    flex: 1;
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.55;
}

/* ============================================================
   SLIDE 4: MARKETS  /  SLIDE 7: ORDER
   ============================================================ */
.industries-section {
    padding: var(--section-padding);
    background: url('backgrounds/histo-company-bg04-1600.webp') repeat fixed center center / cover;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#order {
    background: url('backgrounds/histo-company-bg07-1600.webp') repeat fixed center center / cover;
}

.markets-inner {
    width: 100%;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
    gap: min(20px, 2.2vh);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-blue);
}

.ind-card-logo {
    width: 180px;
    height: auto;
    margin-bottom: 18px;
}

.ind-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 10px;
}

.ind-card-tagline {
    font-size: 0.9rem;
    color: var(--light-black);
    font-style: italic;
    margin-bottom: 22px;
    line-height: 1.5;
}

.ind-btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* KB Portal / Order bottom CTA — visually separated */
.markets-portal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.portal-divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border-gray);
    margin: 0;
}

/* ============================================================
   SLIDE 5: RESOURCES
   ============================================================ */
.resources-section {
    padding: var(--section-padding);
    background: url('backgrounds/histo-company-bg05-1600.webp') repeat fixed center center / cover;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.resources-inner {
    width: 100%;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
    gap: min(16px, 1.8vh);
}

/* Force 3 columns × 2 rows */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.resource-card {
    background: var(--bg-card);
    padding: 22px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Size buttons inside resource and industry cards */
.resource-card .btn,
.industry-card .btn {
    font-size: 0.85rem;
    padding: 8px 20px;
    margin-top: auto;
}

.resource-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.resource-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.resource-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.resource-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.55;
}

.resource-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.resource-link:hover {
    color: var(--primary-blue);
}

/* ============================================================
   SLIDE 6: MEDIA
   ============================================================ */
.media-section {
    padding: var(--section-padding);
    background: url('backgrounds/histo-company-bg06-1600.webp') repeat fixed center center / cover;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* 2 × 2 grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Horizontal (landscape) card layout */
.media-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: row;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.media-image {
    width: 180px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg-section-alt);
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.media-card:hover .media-image img {
    transform: scale(1.05);
}

.media-content {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.media-category {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary-blue);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.media-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.media-excerpt {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.55;
    flex: 1;
}

/* ============================================================
   SLIDE 8: CONTACT / FOOTER
   ============================================================ */
.footer {
    background: url('backgrounds/histo-company-bg08-1600.webp') repeat fixed center center / cover;
    color: var(--text-gray);
    padding: var(--section-padding);
    border-top: 1px solid var(--border-color);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 35px;
    flex: 1;
    min-height: 0;
}

.contact-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 8px 12px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    align-self: flex-start;
    padding: 10px 28px;
    font-size: 0.95rem;
    border: none;
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: min(14px, 1.6vh);
}

/* Three stacked horizontal contact cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.contact-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-card-body {
    flex: 1;
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-body a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card-body a:hover {
    color: var(--primary-blue);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.contact-social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-blue);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: min(16px, 1.8vh);
    margin-top: min(14px, 1.5vh);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
}

.footer-nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-nav-links a:hover {
    color: var(--text-dark);
}

.footer-nav-links .separator {
    color: var(--border-color);
}

.trademarks {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.copyright {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .hero-right {
        flex-direction: column;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .kylon-inner {
        flex-direction: column;
    }

    .kylon-left,
    .kylon-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .about-inner {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .about-img-placeholder {
        height: 200px;
    }

    .contact-inner {
        flex-direction: column;
        width: 100%;
        align-self: auto;
    }

    .contact-left,
    .contact-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-right {
        flex-direction: column;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-card {
        flex-direction: column;
    }

    .media-image {
        width: 100%;
        height: 160px;
    }

    .contact-card {
        flex-direction: column;
        gap: 8px;
    }

    .contact-card-title {
        flex: 0 0 auto;
    }

    .hero-montage,
    .hero-kbride {
        width: clamp(72px, 20vw, 180px);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    /* Stack images vertically at bottom-center on small mobile */
    .hero-montage,
    .hero-kbride {
        position: absolute;
        width: 35vw;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .hero-kbride {
        bottom: 0;
    }

    /* Offset montage above kbride */
    .hero-montage {
        bottom: 32vw;
    }
}