@charset "UTF-8";
/* ============================================================
   KSC - Kivu Society Corporation | Main Stylesheet
   Brand refresh: Montserrat (Medium/Bold only) + 3-color palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

/* -- BRAND COLORS --
   Dark Blue #00338D / Bright Green #00B050 / White #FFFFFF.
   --navy and --orange keep their original variable NAMES (used
   in hundreds of rules and inline styles across every page) but
   now resolve to the new dark-blue / bright-green brand values -
   so the whole site recolors from these few lines. The *-dark/
   *-light variants are computed tints/shades of those same two
   hues for hover states, not new colors. --black (footer bg) is
   repointed to the brand navy so no non-brand dark tone remains. -- */

:root {
    --navy: #00338D;
    /* brand dark blue - hero bg, headings, nav */
    --navy-dark: #002569;
    /* darker shade for depth / hover */
    --navy-light: #1a52b3;
    /* lighter tint for hover */
    --orange: #00B050;
    /* brand bright green - CTA button, accent */
    --orange-dark: #008a3e;
    /* darker shade for hover */
    --orange-light: #33c172;
    /* lighter tint */
    --cream: #ffffff;
    /* section backgrounds */
    --cream-dark: #f5f8fc;
    /* whisper-of-blue off-white, for section alternation */
    --white: #ffffff;
    --black: #00338D;
    /* footer - brand dark blue, not a separate near-black */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-400: #9ba4b5;
    --gray-600: #5a6478;
    --gray-800: #2d3748;
    --text-dark: #00338D;
    --text-mid: #3d5a80;
    --text-light: #6b7f9e;
    --success: #00B050;
    --error: #c53030;
    --font-display: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
    --font-mono: 'Montserrat', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 51, 141, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 51, 141, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 51, 141, 0.18);
    --shadow-xl: 0 40px 80px rgba(0, 51, 141, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


/* -- RESET -- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

input,
textarea,
select {
    border: none;
}


/* -- SCROLLBAR -- */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 4px;
}


/* -- SELECTION -- */

::selection {
    background: var(--navy);
    color: var(--white);
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    font-weight: 500;
}

.text-orange {
    color: var(--orange);
}

.text-navy {
    color: var(--navy);
}

.text-white {
    color: var(--white) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,51,141,0.35);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.btn svg {
    flex-shrink: 0;
}


/* ============================================================
   LAYOUT HELPERS
   ============================================================ */

.container {
    width: 80%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.container-sm {
    width: 80%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 64px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* -- BACKGROUNDS -- */

.bg-navy {
    background: var(--navy);
}

.bg-cream {
    background: var(--white);
}

.bg-black {
    background: var(--black);
}

.bg-white {
    background: var(--white);
}

.bg-gray {
    background: var(--gray-100);
}


/* -- SECTION HEADER -- */

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}


/* ============================================================
   CARD
   ============================================================ */

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================================
   NAVIGATION
   Moved to assets/css/header.css (loaded alongside this file).
   ============================================================ */


/* ============================================================
   PAGE HERO (shared for inner pages)
   ============================================================ */

.page-hero {
    background: var(--navy);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient( -45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.015) 50px, rgba(255, 255, 255, 0.015) 51px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   ABOUT HERO - full-bleed photo + quote slideshow
   (about.html only; the other inner pages still use .page-hero)
   ============================================================ */

.about-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,51,141,0.92) 0%, rgba(0,51,141,0.78) 45%, rgba(0,51,141,0.35) 75%, rgba(0,51,141,0.12) 100%),
        linear-gradient(180deg, rgba(0,51,141,0.15) 0%, rgba(0,51,141,0.55) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 64px;
}

.about-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.about-hero-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 44px;
}

.about-hero-quotes {
    position: relative;
    max-width: 520px;
    min-height: 118px;
    border-left: 3px solid var(--orange);
    padding-left: 24px;
}

.about-hero-quote {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    animation: aboutHeroQuoteCycle 15s ease-in-out infinite;
}

.about-hero-quote:nth-child(2) { animation-delay: -5s; }
.about-hero-quote:nth-child(3) { animation-delay: -10s; }

@keyframes aboutHeroQuoteCycle {
    0%, 28%  { opacity: 1; visibility: visible; }
    33%, 95% { opacity: 0; visibility: hidden; }
    100%     { opacity: 1; visibility: visible; }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-quote {
        animation: none;
    }
    .about-hero-quote:not(.is-active) {
        display: none;
    }
}

.about-hero-quote p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 10px;
}

.about-hero-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
    .about-hero {
        min-height: 86vh;
        align-items: center;
    }
    .about-hero-content {
        padding: 140px 0 48px;
    }
    .about-hero-quote p {
        font-size: 1.2rem;
    }
}


/* ============================================================
   SUB-HERO - full-bleed photo hero for the About family's inner
   pages (Our Story, Timeline, Our Team, Our Impact, Our Aim).
   Simpler than .about-hero: no quote slideshow, content-hugging
   height instead of a fixed viewport height.
   ============================================================ */

.subhero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--navy-dark);
}

.subhero-bg {
    position: absolute;
    inset: 0;
}

.subhero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.subhero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0,51,141,0.9) 0%, rgba(0,51,141,0.7) 50%, rgba(0,51,141,0.4) 100%);
}

.subhero-content {
    position: relative;
    z-index: 2;
}

.subhero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.subhero-content p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .subhero {
        padding: 130px 0 60px;
    }
}


/* -- TEAM GROUP PHOTO (our-team.html) -- */

.team-group-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-group-photo img {
    width: 100%;
    height: auto;
    display: block;
}


/* -- IMPACT PHOTOS (our-impact.html) -- */

.impact-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.impact-photo {
    position: relative;
    height: 340px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.impact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.impact-photo:hover img {
    transform: scale(1.05);
}

.impact-photo span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,51,141,0.88), transparent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .impact-photos {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   FOOTER
   Moved to assets/css/footer.css (loaded alongside this file).
   ============================================================ */


/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
    background: var(--orange-light);
    padding: 20px 0;
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    color: var(--white);
}

.stat-item+.stat-item {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 1px;
}

.stat-lbl {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.4;
}


/* ============================================================
   PRODUCT CARD (shared)
   ============================================================ */

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(0,51,141,0.25);
}

.product-card-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}

.product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
    background: rgba(0,51,141,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.product-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 0.88rem;
    margin-bottom: 16px;
    flex: 1;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.product-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    font-family: var(--font-body);
}


/* ============================================================
   FORM ELEMENTS
   ============================================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0,51,141,0.08);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ba4b5' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* ============================================================
   BADGE / TAG
   ============================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.badge-orange {
    background: rgba(0,51,141,0.08);
    color: var(--navy);
}

.badge-navy {
    background: rgba(0, 51, 141, 0.1);
    color: var(--navy);
}

.badge-green {
    background: rgba(0, 176, 80, 0.1);
    color: var(--success);
}


/* ============================================================
   ALERT / TOAST
   ============================================================ */

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(0, 176, 80, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 176, 80, 0.2);
}

.alert-error {
    background: rgba(197, 48, 48, 0.1);
    color: var(--error);
    border: 1px solid rgba(197, 48, 48, 0.2);
}


/* ============================================================
   DIVIDER
   ============================================================ */

.divider {
    width: 60px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    margin: 20px 0;
}

.divider.center {
    margin: 20px auto;
}


/* ============================================================
   BACK TO TOP
   Moved to assets/css/footer.css (loaded alongside this file).
   ============================================================ */


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1100px) {
    .container {
        width: 88%;
    }
    .container-sm {
        width: 88%;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .container {
        width: 92%;
    }
    .container-sm {
        width: 92%;
    }
    .section {
        padding: 72px 0;
    }
    .section-sm {
        padding: 48px 0;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats-bar-inner {
        gap: 0;
    }
    .stat-item {
        padding: 12px 16px;
    }
    .stat-item+.stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .stats-bar-inner {
        flex-direction: column;
    }
    .page-hero {
        padding: 130px 0 60px;
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .btn-lg {
        padding: 15px 28px;
        font-size: 0.9rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
}


/* -- HOME HERO -- */

.home-hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}


/* Video background */

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.10) 50%,
        rgba(0, 0, 0, 0.30) 100%
    );
}

.hero-pattern {
    display: none;
}

.hero-bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
    animation: bokehFloat 9s ease-in-out infinite;
}

.bokeh-1 {
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.06);
    top: -150px;
    right: 5%;
    animation-delay: 0s;
}

.bokeh-2 {
    display: none;
}

.bokeh-3 {
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    top: 40%;
    right: 35%;
    animation-delay: -7s;
}

@keyframes bokehFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -30px) scale(1.06);
    }
}

.home-hero-inner {
    
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-left {
    margin: 0;
    
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: slideUp .8s ease forwards .4s;
}

.hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.75);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0;
    animation: slideUp .8s ease forwards .6s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp .8s ease forwards .8s;
}


/* product visual right */

.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    opacity: 0;
    animation: riseIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards .3s;
}

.product-showcase {
    width: 480px;
    height: 620px;
    border-radius: 200px 200px 0 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(0,51,141,0.9));
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.product-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.1), transparent 70%);
}

.product-showcase-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.product-showcase-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.product-showcase-emoji {
    width: 100%;
    max-width: 100%;
    font-size: 80px;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
    overflow: hidden;
}


/* floating badge */

.hero-badge {
    position: absolute;
    top: 20%;
    left: -50px;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    font-size: 28px;
}

.hero-badge-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.hero-badge-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* scroll indicator */

.scroll-ind {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    animation: fadeIn .8s ease forwards 1.4s;
}

.scroll-ind span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(10px)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}


/* -- OUR PRODUCTS SHOWCASE (home, below ticker) -- */

.ksc-showcase__top {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.ksc-showcase__top h2 {
    text-align: center;
}

.ksc-showcase__all {
    position: absolute;
    right: 0;
    bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    transition: gap 0.3s;
}

.ksc-showcase__all:hover {
    gap: 12px;
}

.ksc-showcase__viewport {
    position: relative;
    min-height: 480px;
}

.ksc-showcase__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.ksc-showcase__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.ksc-showcase__text h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.ksc-showcase__text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 380px;
    margin-bottom: 28px;
}

.ksc-showcase__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.ksc-showcase__btn:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ksc-showcase__media {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ksc-showcase__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ksc-showcase__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.ksc-showcase__dots {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.ksc-showcase__dot {
    flex: 1;
    max-width: 140px;
    height: 3px;
    background: var(--gray-200);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.ksc-showcase__dot.is-active {
    background: var(--navy);
}

.ksc-showcase__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.ksc-showcase__arrow:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}


/* -- PRODUCTS PREVIEW -- */

.products-preview {
    background: var(--navy);
}

.products-preview .section-header h2 {
    color: var(--white);
}

.products-preview .section-header p {
    color: rgba(255, 255, 255, 0.55);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
}

.preview-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
}

.preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.preview-card.featured {
    background: var(--white);
    border-color: var(--white);
}

.preview-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.preview-card:hover .preview-img img {
    transform: scale(1.05);
}

.preview-card.featured .preview-img {
    background: rgba(255, 255, 255, 0.15);
}

.preview-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.preview-body .product-tag {
    color: var(--navy);
    background: rgba(255,255,255,0.1);
}

.preview-card.featured .product-tag {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.2);
}

.preview-body h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.preview-body p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
    margin-bottom: 20px;
}

.preview-card.featured .preview-body p {
    color: rgba(255, 255, 255, 0.85);
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: gap 0.3s;
}

.preview-card.featured .preview-link {
    color: var(--white);
}

.preview-link:hover {
    gap: 14px;
}


/* -- VISION / MISSION -- */

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-6px);
}

.vm-card.vm-v {
    background: var(--navy);
}

.vm-card.vm-m {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 28px;
}

.vm-v .vm-icon {
    background: rgba(255,255,255,0.1);
}

.vm-m .vm-icon {
    background: var(--cream-dark);
}

.vm-v h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.vm-m h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.vm-v p {
    color: rgba(255, 255, 255, 0.6);
}

.vm-m p {
    color: var(--text-mid);
}

.vm-bg {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.05;
}

.vm-v .vm-bg {
    background: var(--white);
}

.vm-m .vm-bg {
    background: var(--navy);
}


/* -- REACH SECTION -- */

.reach-section {
    background: var(--white);
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reach-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    position: relative;
    cursor: default;
    transition: var(--transition);
}

.reach-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.reach-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.reach-bg.goma {
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
}

.reach-bg.masisi {
    background: linear-gradient(160deg, var(--orange-dark), var(--orange));
}

.reach-bg.kinshasa {
    background: linear-gradient(160deg, var(--navy-dark), var(--navy-light));
}

.reach-bg.rutshuru {
    background: linear-gradient(160deg, var(--orange-dark), var(--orange-light));
}

.reach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
}

.reach-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
}

.reach-city {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.reach-num {
    font-family: var(--font-mono);
    font-size: 2.6rem;
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}

.reach-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}


/* -- TEAM PREVIEW -- */

.team-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.team-photo {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--white), transparent);
}

.team-info {
    padding: 20px;
}

.team-role {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy); opacity: 0.65;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.team-info h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.team-info p {
    font-size: 0.82rem;
    margin: 0;
}


/* -- CTA SECTION -- */

.cta-section {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-section .btn-outline-white {
    border-color: var(--white);
}


/* Responsive overrides for home */

@media (max-width: 900px) {
    .home-hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-right {
        display: none;
    }
    .ksc-showcase__top {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .ksc-showcase__all {
        position: static;
    }
    .ksc-showcase__viewport {
        min-height: 620px;
    }
    .ksc-showcase__slide {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ksc-showcase__media {
        height: 300px;
        order: -1;
    }
    .ksc-showcase__text p {
        max-width: none;
    }
    .preview-grid {
        grid-template-columns: 1fr;
    }
    .vm-grid {
        grid-template-columns: 1fr;
    }
    .reach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reach-card {
        height: 240px;
    }
    .team-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reach-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid-home {
        grid-template-columns: 1fr;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 500px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.story-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
}

.story-img::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,51,141,0.1) 0%, rgba(0,51,141,0.85) 100%);
}

.story-img span {
    font-size: 100px;
    line-height: 1;
}

.story-img p {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 0 32px 40px;
    line-height: 1.4;
}

.timeline {
    position: relative;
    padding-left: 28px;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px rgba(0,51,141,0.15);
}

.timeline-item .year {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.timeline-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 0.85rem;
    margin: 0;
}

.values-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(0,51,141,0.25);
}

.value-icon {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.87rem;
    margin: 0;
}

.team-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card-full {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card-full:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.team-photo-full {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}

.team-photo-full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.team-photo-full::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--white), transparent);
}

.team-info-full {
    padding: 24px;
}

.team-info-full .team-role {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy); opacity: 0.65;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.team-info-full h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.team-info-full p {
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    gap: 8px;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-mid);
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--navy);
    color: var(--white);
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.partner-logo {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 32px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-mid);
    border: 1px solid var(--gray-200);
}

@media (max-width:900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .values-full {
        grid-template-columns: 1fr 1fr;
    }
    .team-full {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .values-full {
        grid-template-columns: 1fr;
    }
    .team-full {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   CONTACT 
   ============================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info-section {
    margin: 0;
}

.contact-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 44px;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-card h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.contact-card>p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cd {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cd:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cd-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cd-content strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 700;
    margin-bottom: 4px;
}

.cd-content span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    display: block;
}

.cd-content a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.cd-content a:hover {
    color: var(--white);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.soc-link {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.soc-link:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
    transform: translateY(-3px);
}

.hours-card {
    background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.hours-card h4 {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.88rem;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row .day {
    color: var(--text-mid);
    font-weight: 500;
}

.hour-row .time {
    color: var(--navy);
    font-weight: 700;
}

.hour-row .closed {
    color: var(--gray-400);
}


/* Form card */

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.form-card>p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

#contactSuccess {
    text-align: center;
    padding: 60px 20px;
}

.success-emoji {
    font-size: 64px;
    margin-bottom: 20px;
}


/* Map placeholder */

.map-placeholder {
    background: var(--navy);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.map-placeholder span {
    font-size: 48px;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
    max-width: 200px;
}

.map-placeholder a {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 700;
}


/* Topic cards */

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.topic-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.topic-card:hover,
.topic-card.selected {
    border-color: var(--navy);
    background: rgba(0,51,141,0.04);
}

.topic-card .icon {
    font-size: 24px;
    margin-bottom: 6px;
    display: block;
}

.topic-card span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-mid);
}

.topic-card.selected span {
    color: var(--navy);
}

@media (max-width:900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .topic-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-card {
        padding: 28px 20px;
    }
    .contact-card {
        padding: 28px;
    }
}

.csr-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.pillar-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(0,51,141,0.25);
}

.pillar-header {
    padding: 36px 36px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.pillar-header-text h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.pillar-header-text .badge {
    margin-bottom: 0;
}

.pillar-body {
    padding: 0 36px 36px;
}

.pillar-body p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.pillar-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.ps {
    text-align: center;
}

.ps .num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--navy);
    display: block;
    line-height: 1;
}

.ps .lbl {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.impact-banner {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.impact-num {
    font-family: var(--font-mono);
    font-size: 3rem;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.impact-lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.5;
}

.story-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-text {
    background: var(--navy);
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.story-text p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.story-visual {
    background: var(--white); border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 52px 36px;
}

.story-visual .big-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy);
    text-align: center;
    line-height: 1.5;
}

.story-visual .big-quote::before {
    content: '"';
    display: block;
    font-size: 5rem;
    line-height: 0.7;
    margin-bottom: 16px;
    color: rgba(0,51,141,0.2);
}

.story-attr {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sdgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sdg-card {
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
}

.sdg-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.sdg-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.sdg-card h5 {
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.sdg-card p {
    font-size: 0.78rem;
    margin: 0;
}

@media (max-width:900px) {
    .csr-pillars {
        grid-template-columns: 1fr;
    }
    .impact-banner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .story-strip {
        grid-template-columns: 1fr;
    }
    .sdgs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .impact-banner {
        grid-template-columns: 1fr 1fr;
    }
    .sdgs {
        grid-template-columns: 1fr;
    }
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.order-form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}

.order-form-section h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.order-form-section>p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-section-title {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}


/* Order items */

.order-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
}

.order-item-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.order-item-row:has(.qty-input:focus) {
    border-color: var(--navy);
    background: var(--white);
}

.item-emoji {
    font-size: 32px;
    width: 48px;
    text-align: center;
}

.item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.item-info span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-mid);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--navy);
    color: var(--white);
}

.qty-input {
    width: 44px;
    height: 34px;
    border: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
}

.line-total {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    min-width: 60px;
    text-align: right;
}


/* Sidebar summary */

.order-summary {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.summary-line .label {
    color: rgba(255, 255, 255, 0.6);
}

.summary-line .val {
    font-weight: 700;
    color: var(--white);
}

.summary-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.summary-total .val {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--white);
}

.summary-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    line-height: 1.6;
}

.order-summary .btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}


/* Contact methods */

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    cursor: default;
}

.contact-method:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(0,51,141,0.25);
    color: var(--white);
}

.contact-method .icon {
    font-size: 18px;
    flex-shrink: 0;
}


/* Success state */

.hidden {
    display: none !important;
}

#orderSuccess {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

#orderSuccess h2 {
    color: var(--navy);
    margin-bottom: 12px;
}

#orderSuccess p {
    max-width: 400px;
    margin: 0 auto 28px;
}


/* Steps indicator */

.order-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step.active .step-num {
    background: var(--navy);
    color: var(--white);
}

.step:not(.active) .step-num {
    background: var(--gray-200);
    color: var(--gray-600);
}

.step-lbl {
    font-size: 0.78rem;
    font-weight: 700;
}

.step.active .step-lbl {
    color: var(--navy);
}

.step:not(.active) .step-lbl {
    color: var(--gray-400);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 8px;
}

.step-line.done {
    background: var(--navy);
}

@media (max-width:900px) {
    .order-layout {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
    }
    .contact-methods {
        grid-template-columns: 1fr;
    }
    .order-item-row {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }
    .line-total {
        display: none;
    }
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.products-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pcard:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(0,51,141,0.25);
}

.pcard-img {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    position: relative;
}

.pcard-badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

.pcard-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcard-body .product-tag {
    margin-bottom: 10px;
}

.pcard-body h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.pcard-body .desc {
    font-size: 0.88rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.pcard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.meta-tag {
    font-size: 0.75rem;
    color: var(--text-mid);
    background: var(--gray-100);
    padding: 5px 12px;
    border-radius: 20px;
}

.pcard-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.pcard-price small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 500;
}

.pcard-actions {
    display: flex;
    gap: 10px;
}

.pcard-actions .btn {
    flex: 1;
    justify-content: center;
}


/* Featured product banner */

.featured-banner {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
    overflow: hidden;
    position: relative;
}

.featured-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.featured-banner::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.fb-left {
    position: relative;
    z-index: 1;
}

.fb-left h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.fb-left p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.fb-specs {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.fb-spec {
    text-align: center;
}

.fb-spec .val {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--white);
    display: block;
}

.fb-spec .key {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fb-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fb-product-visual {
    width: 220px;
    height: 320px;
    border-radius: 150px 150px 0 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.15), rgba(0,51,141,0.9));
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
}

.fb-product-visual .emoji {
    font-size: 64px;
    line-height: 1;
}

.fb-product-visual .name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    padding: 0 16px;
    line-height: 1.3;
}


/* Ingredients section */

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ingredient-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.ingredient-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.ingredient-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.ingredient-card h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.ingredient-card p {
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width:900px) {
    .products-full {
        grid-template-columns: 1fr 1fr;
    }
    .featured-banner {
        grid-template-columns: 1fr;
        padding: 36px 24px;
    }
    .fb-right {
        display: none;
    }
    .ingredients-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .products-full {
        grid-template-columns: 1fr;
    }
    .ingredients-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   COMMUNITY SECTION (home page)
   ============================================================ */

.ksc-community {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark); /* fallback when no image */
}

/* Background photo */
.ksc-community-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ksc-community-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Dark gradient overlay - heavier left for text legibility */
.ksc-community-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0,51,141,0.88) 0%,
            rgba(0,51,141,0.70) 40%,
            rgba(0,51,141,0.30) 70%,
            rgba(0,51,141,0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,51,141,0.25) 0%,
            rgba(0,51,141,0.55) 100%
        );
}

/* Inner layout */
.ksc-community-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 72px;
    gap: 40px;
}

.ksc-community-left {
    max-width: 620px;
    min-width: 0;
}

/* Giant editorial headline */
.ksc-community-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3.2rem, 7vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: -1.5px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 28px;
    overflow-wrap: break-word;
    /* Subtle text shadow for legibility */
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* Sub-copy */
.ksc-community-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    max-width: 420px;
    margin-bottom: 40px;
}

/* Action buttons */
.ksc-community-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Product badge - bottom right */
.ksc-community-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0,51,141,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 12px 20px 12px 14px;
    white-space: nowrap;
    align-self: flex-end;
    flex-shrink: 0;
}
.ksc-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.ksc-badge-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.ksc-badge-text span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
    .ksc-community { min-height: 80vh; }
    .ksc-community-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 48px;
        padding-top: 120px;
        gap: 32px;
    }
    .ksc-community-headline { font-size: clamp(3.2rem, 14vw, 5.5rem); letter-spacing: -1px; }
    .ksc-community-badge { align-self: flex-start; }
    .ksc-community-overlay {
        background:
            linear-gradient(180deg, rgba(0,51,141,0.35) 0%, rgba(0,51,141,0.85) 100%);
    }
}

@media (max-width: 480px) {
    .ksc-community-headline { font-size: clamp(2.8rem, 16vw, 4rem); letter-spacing: -0.5px; }
    .ksc-community-sub { font-size: 0.9rem; }
    .ksc-community-actions { flex-direction: column; align-items: flex-start; }
    .ksc-community-actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   KIVU KICK SHOWCASE (home)
   Ported from assets/css/kivukick.css, recolored to the site's
   navy / white / cream palette (was red / yellow / black) and
   set to the site's own display + body fonts.
   ============================================================ */

.ksc-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 0.98;
    color: var(--navy);
    letter-spacing: -1px;
}
.ksc-heading em { font-style: italic; color: var(--navy); opacity: 0.65; }
.ksc-heading--white { color: var(--white); }
.ksc-heading--white em { color: rgba(255,255,255,0.75); opacity: 1; }

.ksc-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    font-weight: 500;
    max-width: 520px;
}
.ksc-body--white { color: rgba(255,255,255,0.7); }

.ksc-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    border-radius: 2px;
    margin-bottom: 6px;
}


/* -- TICKER -- */

.ksc-ticker {
    background: var(--navy);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
    max-width: 100vw;
}
.ksc-ticker__track {
    display: inline-flex;
    align-items: center;
    animation: kkTicker 28s linear infinite;
}
.ksc-ticker__track span {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--white);
    padding: 0 24px;
}
.ksc-ticker__sep { color: rgba(255,255,255,0.45) !important; padding: 0 4px !important; }
@keyframes kkTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* -- PRODUCT REVEAL -- */

.ksc-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--cream-dark);
}
.ksc-product__left {
    position: relative;
    overflow: hidden;
}
.ksc-product__img-wrap {
    position: relative;
    height: 100%;
    min-height: 600px;
}
.ksc-product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--transition-slow);
}
.ksc-product__left:hover .ksc-product__img { transform: scale(1.04); }
.ksc-product__glow {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,51,141,0.15), transparent);
    pointer-events: none;
}
.ksc-product__right {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ksc-product__right .ksc-heading { font-size: clamp(2.4rem,5vw,4.5rem); }

.ksc-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 48px;
    border: 1px solid rgba(0,51,141,0.1);
}
.ksc-spec {
    padding: 24px 20px;
    border: 1px solid rgba(0,51,141,0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    transition: background 0.2s;
}
.ksc-spec:hover { background: var(--navy); }
.ksc-spec:hover .ksc-spec__val,
.ksc-spec:hover .ksc-spec__lbl { color: var(--white); }
.ksc-spec__val {
    font-family: var(--font-mono);
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--navy);
    transition: color 0.2s;
}
.ksc-spec__lbl {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.2s;
}


/* -- ENERGY / SCALE GRID -- */

.ksc-energy {
    background: var(--navy-dark);
    padding: 100px 60px;
}
.ksc-energy__header {
    max-width: 700px;
    margin-bottom: 64px;
}
.ksc-energy__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
}
.ksc-energy__cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.ksc-energy__cell--tall { grid-row: span 2; }
.ksc-energy__cell img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.9);
    transition: transform 0.7s var(--transition-slow), filter 0.4s;
}
.ksc-energy__cell:hover img {
    transform: scale(1.06);
    filter: brightness(0.85) saturate(1.1);
}
.ksc-energy__cell-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,51,141,0.9), transparent);
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s var(--transition-slow);
}
.ksc-energy__cell:hover .ksc-energy__cell-caption {
    opacity: 1;
    transform: translateY(0);
}
.ksc-energy__cell-caption p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
    margin-top: 4px;
}


/* -- STORY SPLIT -- */

.ksc-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: var(--cream-dark);
}
.ksc-story__img {
    position: relative;
    overflow: hidden;
}
.ksc-story__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.75) saturate(0.9);
    transition: transform 0.8s var(--transition-slow);
}
.ksc-story__img:hover img { transform: scale(1.03); }
.ksc-story__img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,51,141,0.3) 0%, transparent 60%);
}
.ksc-story__img-badge {
    position: absolute;
    bottom: 40px; right: -1px;
    background: var(--navy);
    padding: 20px 28px;
    text-align: center;
}
.ksc-badge-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1;
}
.ksc-badge-lbl {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.ksc-story__text {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ksc-story__text .ksc-heading { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.ksc-story__divider {
    width: 48px;
    height: 3px;
    background: var(--navy);
    margin: 28px 0;
}
.ksc-quote {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy);
    border-left: 3px solid var(--navy);
    padding: 12px 0 12px 20px;
    margin-top: 28px;
    line-height: 1.5;
}
.ksc-quote cite {
    display: block;
    font-size: 0.8rem;
    font-style: normal;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 8px;
    font-family: var(--font-body);
}


/* -- CTA - "GET YOUR KICK" -- */

.ksc-cta {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 120px 60px;
}
.ksc-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: rgba(255,255,255,0.18);
}
.ksc-cta__content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.ksc-cta__slides {
    display: grid;
}

.ksc-cta__slide {
    grid-row: 1;
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    animation: kscCtaCycle 11s ease-in-out infinite;
}

.ksc-cta__slide--b {
    animation-delay: -5.5s;
}

@keyframes kscCtaCycle {
    0%, 40%  { opacity: 1; visibility: visible; }
    50%, 90% { opacity: 0; visibility: hidden; }
    100%     { opacity: 1; visibility: visible; }
}

@media (prefers-reduced-motion: reduce) {
    .ksc-cta__slide {
        animation: none;
    }
    .ksc-cta__slide--b {
        display: none;
    }
}

.ksc-cta__big-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(4rem, 10vw, 8.5rem);
    line-height: 0.88;
    letter-spacing: -2px;
    color: var(--white);
    background: linear-gradient(175deg, var(--white) 55%, rgba(255,255,255,0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ksc-cta__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ksc-cta__product-img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}


/* -- RESPONSIVE -- */

@media (max-width: 1100px) {
    .ksc-energy { padding: 80px 32px; }
    .ksc-cta { padding: 80px 32px; }
}

@media (max-width: 900px) {
    .ksc-product { grid-template-columns: 1fr; }
    .ksc-product__img-wrap { min-height: 380px; }
    .ksc-product__right { padding: 60px 32px; }
    .ksc-product__right .ksc-heading { font-size: 2.6rem; }

    .ksc-energy__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .ksc-energy__cell--tall { grid-row: span 1; }
    .ksc-energy { padding: 60px 24px; }

    .ksc-story { grid-template-columns: 1fr; }
    .ksc-story__img { min-height: 400px; }
    .ksc-story__text { padding: 60px 32px; }
    .ksc-story__text .ksc-heading { font-size: 2.6rem; }

    .ksc-cta__slide { grid-template-columns: 1fr; gap: 40px; }
    .ksc-cta { padding: 80px 24px; }
}

@media (max-width: 600px) {
    .ksc-energy__grid { grid-template-columns: 1fr; }
    .ksc-specs { grid-template-columns: 1fr 1fr; }
    .ksc-cta__big-text { font-size: 4rem; }
}


/* ============================================================
   ICONS (Font Awesome - replaces all emoji site-wide)
   Default: brand green, for icons sitting on white/light
   backgrounds. Icons placed on solid navy/green circles or
   photo gradients are overridden to white further down so
   they stay legible against a same-hue background.
   ============================================================ */

.item-emoji i,
.value-icon i,
.ingredient-icon i,
.vm-m .vm-icon i,
.topic-card .icon i,
.cd-icon i,
.contact-method .icon i,
.success-icon i,
.success-emoji i,
.hours-card h4 i,
.lang-flag i,
.map-placeholder p ~ i,
.card > i.card-icon,
.fb-product-visual .emoji i {
    color: var(--orange);
}

.ksc-spec__val i { color: var(--orange); }
.ksc-spec:hover .ksc-spec__val i,
.ksc-spec:hover .ksc-spec__lbl i { color: var(--white); }

.ksc-ticker__sep i { font-size: 10px; color: var(--orange) !important; }

/* icons on solid-colour circles / gradients - white for contrast */
.pillar-icon i,
.vm-v .vm-icon i,
.team-photo i,
.team-photo-full i,
.pcard-img i,
.ksc-badge-icon i,
.map-placeholder span i {
    color: var(--white);
}

.reach-bg i {
    color: rgba(255, 255, 255, 0.4);
}

.badge-orange i { color: var(--orange); }


/* ============================================================
   BOOTSTRAP FORM VALIDATION - layered on top of our custom
   .form-control look. Bootstrap adds real-time valid/invalid
   feedback; our colours/spacing continue to take precedence
   since style.css loads after bootstrap.min.css.
   ============================================================ */

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--error);
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--success);
}

.invalid-feedback {
    display: none;
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--error);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}


/* ============================================================
   HORIZONTAL OVERFLOW FIX - targeted, safe
   ============================================================ */

/* Core: html + body only */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Media elements never wider than viewport */
img, video, iframe, embed, object, svg {
    max-width: 100%;
}

/* Structural containers */
section, header, footer, nav, main, article {
    max-width: 100%;
    overflow-x: clip;
}

/* Ticker animation stays inside */
.ksc-ticker, .ksc-ticker__track {
    max-width: 100vw;
}

/* Product showcase emoji - already fixed above, belt+braces */
.product-showcase-emoji {
    max-width: 100%;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 900px) {

    /* Video - simple cover, no translate tricks */
    .hero-video-bg video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
        min-width: unset !important;
        min-height: unset !important;
    }

    /* Home hero fills full screen height on mobile */
    .home-hero {
        min-height: 100dvh;
    }

    /* Community inner - keep padding inside viewport */
    .ksc-community-inner {
        padding-left: 6% !important;
        padding-right: 6% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Big display text - clamp so it never overflows */
    .ksc-cta__big-text {
        font-size: clamp(2.8rem, 11vw, 5rem) !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .ksc-community-headline {
        font-size: clamp(2.4rem, 11vw, 4rem) !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Hide hero right panel - was hidden anyway */
    .hero-right {
        display: none !important;
    }
}