/**
 * KMVLN AND CO - Premium Page Styles
 * Services & About Page Components
 * All text uses explicit high-contrast colors
 */

/* ===== FOUNDATIONS ===== */
.section-padding {
    padding: 100px 0;
}

/* Gradient Text with solid fallback */
.gradient-text {
    color: #1a2b5f;
    /* Solid fallback */
    background: linear-gradient(135deg, #2e7d32 0%, #1a2b5f 50%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for browsers without support */
@supports not (-webkit-background-clip: text) {
    .gradient-text {
        color: #2e7d32;
        background: none;
    }
}

/* ===== PREMIUM PAGE HEADER ===== */
.page-header--premium {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.page-header--premium .page-title {
    color: #0f172a;
    font-weight: 800;
}

.page-header--premium .breadcrumb a {
    color: #475569;
}

.page-header--premium .breadcrumb span {
    color: #64748b;
}

.page-header__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-header__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.page-header__shape--1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.12) 0%, transparent 70%);
    animation: floatShape 15s ease-in-out infinite;
}

.page-header__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(26, 43, 95, 0.08) 0%, transparent 70%);
    animation: floatShape 20s ease-in-out infinite reverse;
}

.page-header__shape--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.06) 0%, transparent 70%);
    animation: floatShape 12s ease-in-out infinite 3s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-25px) scale(1.05);
    }
}

.page-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 43, 95, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.page-header__badge i {
    color: #2e7d32;
}

.page-header__desc {
    max-width: 600px;
    margin: 15px auto 25px;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== SERVICE TAB NAVIGATION ===== */
.stabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 45px;
}

.stabs-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #fff;
    border: 1px solid rgba(26, 43, 95, 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stabs-btn:hover {
    border-color: rgba(26, 43, 95, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    color: #1a2b5f;
}

.stabs-btn.active {
    background: #1a2b5f;
    border-color: #1a2b5f;
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 43, 95, 0.25);
}

.stabs-btn__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent-color, #2e7d32) 12%, transparent);
    transition: all 0.3s ease;
}

.stabs-btn.active .stabs-btn__icon {
    background: rgba(255, 255, 255, 0.2);
}

.stabs-btn__icon i {
    font-size: 0.9rem;
    color: var(--accent-color, #2e7d32);
    transition: color 0.3s ease;
}

.stabs-btn.active .stabs-btn__icon i {
    color: #fff;
}

.stabs-btn__text {
    display: none;
}

@media (min-width: 768px) {
    .stabs-btn__text {
        display: inline;
    }
}

/* Tab Panels */
.stabs-panels {
    position: relative;
}

.stabs-panel {
    background: #fff;
    border: 1px solid rgba(26, 43, 95, 0.1);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stabs-panel-enter {
    transition: all 0.35s ease;
}

.stabs-panel-enter-start {
    opacity: 0;
    transform: translateY(12px);
}

.stabs-panel-enter-end {
    opacity: 1;
    transform: translateY(0);
}

.stabs-panel__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.stabs-panel__icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.stabs-panel__icon i {
    font-size: 1.8rem;
    color: #fff;
}

.stabs-panel__title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.stabs-panel__tagline {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.stabs-panel__desc {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 800px;
}

/* ===== BENTO GRID FEATURE CARDS ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.bento-card {
    padding: 24px;
    background: #f8fafc;
    border: 1px solid rgba(26, 43, 95, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--card-accent, #2e7d32);
    border-radius: 3px;
    transition: height 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: color-mix(in srgb, var(--card-accent, #2e7d32) 30%, transparent);
    background: #fff;
}

.bento-card:hover::before {
    height: 100%;
}

.bento-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--card-accent, #2e7d32) 12%, transparent);
    border-radius: 12px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-card__icon {
    background: var(--card-accent, #2e7d32);
}

.bento-card__icon i {
    font-size: 1.1rem;
    color: var(--card-accent, #2e7d32);
    transition: color 0.3s ease;
}

.bento-card:hover .bento-card__icon i {
    color: #fff;
}

.bento-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.bento-card__desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Panel Footer */
.stabs-panel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(26, 43, 95, 0.1);
    flex-wrap: wrap;
}

.stabs-panel__ind-label {
    font-weight: 700;
    font-size: 0.82rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.stabs-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pill-tag {
    padding: 5px 14px;
    background: #f1f5f9;
    border: 1px solid rgba(26, 43, 95, 0.1);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #334155;
}

/* ===== PREMIUM PROCESS TIMELINE ===== */
.process-section-premium {
    background: #f1f5f9;
}

.process-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-premium__step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.process-premium__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(26, 43, 95, 0.08);
    line-height: 1;
    margin-bottom: -15px;
    position: relative;
    z-index: 0;
}

.process-premium__circle {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: #fff;
    border: 2px solid #2e7d32;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}

.process-premium__circle i {
    font-size: 1.5rem;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.process-premium__step:hover .process-premium__circle {
    background: #2e7d32;
    border-color: #2e7d32;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.3);
    transform: scale(1.1);
}

.process-premium__step:hover .process-premium__circle i {
    color: #fff;
}

.process-premium__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.process-premium__desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.process-premium__connector {
    position: absolute;
    top: 62px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, #2e7d32, rgba(46, 125, 50, 0.2));
    z-index: 0;
}

/* ===== PREMIUM CTA ===== */
.cta-premium {
    padding: 100px 0;
}

.cta-premium__inner {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a2b5f 0%, #0f1f35 100%);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.cta-premium__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-premium__shape {
    position: absolute;
    border-radius: 50%;
}

.cta-premium__shape--1 {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.2) 0%, transparent 70%);
    animation: floatShape 18s ease-in-out infinite;
}

.cta-premium__shape--2 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: floatShape 14s ease-in-out infinite reverse;
}

.cta-premium__content {
    position: relative;
    z-index: 1;
}

.cta-premium__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-premium__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.cta-premium__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-light {
    background: #fff;
    color: #1a2b5f;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn-light:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

/* ===== COUNTER STRIP ===== */
.counter-strip {
    background: #1a2b5f;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.counter-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 125, 50, 0.15) 100%);
}

.counter-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-strip__item {
    text-align: center;
}

.counter-strip__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.counter-strip__icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.counter-strip__number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.counter-strip__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== STORY SPLIT ===== */
.story-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.story-split__image {
    position: relative;
}

.story-split__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.story-split__img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-split__img-wrap:hover img {
    transform: scale(1.03);
}

.story-split__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.story-split__est {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.story-split__accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: #2e7d32;
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

.story-split__title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-split__text p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.story-split__content .btn {
    margin-top: 15px;
}

/* ===== PAGE TITLE (About page header fix) ===== */
.page-title {
    color: #0f172a !important;
}

/* ===== BG-DARK OVERRIDES FOR PREMIUM COMPONENTS ===== */
/* Section headers on dark backgrounds */
.bg-dark .section-header .section-title {
    color: #ffffff !important;
}

.bg-dark .section-header .section-title span {
    color: #4caf50 !important;
}

.bg-dark .section-header .section-label {
    color: rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-dark .section-header .section-label i {
    color: #4caf50 !important;
}

.bg-dark .section-header .section-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* M/V cards on dark bg — white cards, dark text */
.bg-dark .mv-premium__card {
    background: #ffffff !important;
    border-color: rgba(200, 200, 200, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    color: #334155 !important;
}

.bg-dark .mv-premium__title {
    color: #0f172a !important;
}

.bg-dark .mv-premium__text {
    color: #334155 !important;
}

/* Founder card on dark bg — WHITE card with DARK text */
.bg-dark .founder-premium {
    background: #ffffff !important;
    border-color: rgba(200, 200, 200, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    color: #334155 !important;
}

.bg-dark .founder-premium__name {
    color: #0f172a !important;
}

.bg-dark .founder-premium__role {
    color: #2e7d32 !important;
}

.bg-dark .founder-premium__quals {
    color: #475569 !important;
}

.bg-dark .founder-premium__quals i {
    color: #1a2b5f !important;
}

.bg-dark .founder-premium__bio {
    color: #334155 !important;
}

.bg-dark .founder-premium__label {
    color: #2e7d32 !important;
    background: rgba(46, 125, 50, 0.1) !important;
}

.bg-dark .founder-premium__badge {
    color: #1a2b5f !important;
    background: rgba(26, 43, 95, 0.06) !important;
}

.bg-dark .founder-premium__badge i {
    color: #2e7d32 !important;
}

/* Catch-all: ANY text inside founder card must be dark */
.bg-dark .founder-premium__info h3,
.bg-dark .founder-premium__info p,
.bg-dark .founder-premium__info div,
.bg-dark .founder-premium__info span {
    color: #334155 !important;
}

.bg-dark .founder-premium__info h3 {
    color: #0f172a !important;
}

/* Team structure on dark bg */
.bg-dark .team-structure__item {
    background: #ffffff !important;
    border-color: rgba(200, 200, 200, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    color: #475569 !important;
}

.bg-dark .team-structure__number {
    color: #1a2b5f !important;
}

.bg-dark .team-structure__label {
    color: #475569 !important;
}

/* Values cards on dark bg */
.bg-dark .values-premium__card {
    background: #ffffff !important;
    border-color: rgba(200, 200, 200, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    color: #475569 !important;
}

.bg-dark .values-premium__title {
    color: #0f172a !important;
}

.bg-dark .values-premium__desc {
    color: #475569 !important;
}

/* Expertise on light bg — explicit dark text */
.expertise-premium__title {
    color: #0f172a !important;
}

.expertise-premium__desc {
    color: #475569 !important;
}

/* Credentials on dark bg */
.bg-dark .credentials-premium__card {
    background: #ffffff !important;
    border-color: rgba(200, 200, 200, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    color: #475569 !important;
}

.bg-dark .credentials-premium__abbr {
    color: #1a2b5f !important;
}

.bg-dark .credentials-premium__title {
    color: #334155 !important;
}

.bg-dark .credentials-premium__desc {
    color: #475569 !important;
}

/* ===== CATCH-ALL: White cards inside dark bg ===== */
/* Any white-background card inside .bg-dark must have dark text */
.bg-dark .mv-premium__card p,
.bg-dark .mv-premium__card h3,
.bg-dark .mv-premium__card h4,
.bg-dark .values-premium__card p,
.bg-dark .values-premium__card h3,
.bg-dark .values-premium__card h4,
.bg-dark .team-structure__item p,
.bg-dark .team-structure__item h3,
.bg-dark .team-structure__item h4,
.bg-dark .team-structure__item span,
.bg-dark .credentials-premium__card p,
.bg-dark .credentials-premium__card h3 {
    color: #334155 !important;
}

/* ===== FONT CONSISTENCY ===== */
.page-header--premium,
.section-padding,
.counter-strip,
.cta-premium,
.process-section-premium {
    font-family: var(--font-primary), 'Inter', 'Segoe UI', sans-serif;
}

.page-title,
.section-title,
.stabs-panel__title,
.mv-premium__title,
.values-premium__title,
.founder-premium__name,
.expertise-premium__title,
.credentials-premium__abbr,
.process-premium__title,
.story-split__title,
.cta-premium__title {
    font-family: var(--font-heading), 'DM Sans', 'Inter', sans-serif;
}

/* ===== MISSION & VISION ===== */
.mv-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-premium__card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26, 43, 95, 0.08);
    border: 1px solid rgba(26, 43, 95, 0.1);
    transition: all 0.4s ease;
}

.mv-premium__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.mv-premium__accent {
    width: 6px;
    min-height: 100%;
    flex-shrink: 0;
}

.mv-premium__body {
    padding: 40px 35px;
}

.mv-premium__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 22px;
}

.mv-premium__icon i {
    font-size: 1.4rem;
    color: #fff;
}

.mv-premium__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.mv-premium__text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* ===== VALUES ===== */
.values-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.values-premium__card {
    background: #fff;
    border: 1px solid rgba(26, 43, 95, 0.1);
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(26, 43, 95, 0.08);
    position: relative;
    overflow: hidden;
}

.values-premium__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #2e7d32;
}

.values-premium__num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(26, 43, 95, 0.04);
    line-height: 1;
}

.values-premium__icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.values-premium__card:hover .values-premium__icon {
    background: #2e7d32;
    border-color: #2e7d32;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.25);
}

.values-premium__icon i {
    font-size: 1.4rem;
    color: #2e7d32;
    transition: color 0.3s ease;
}

.values-premium__card:hover .values-premium__icon i {
    color: #fff;
}

.values-premium__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.values-premium__desc {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FOUNDER ===== */
.founder-premium {
    display: flex;
    background: #fff;
    border: 1px solid rgba(26, 43, 95, 0.1);
    border-radius: 24px;
    overflow: hidden;
    max-width: 880px;
    margin: 0 auto 55px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.founder-premium:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.founder-premium__image {
    width: 320px;
    min-width: 320px;
    overflow: hidden;
}

.founder-premium__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
    transition: transform 0.6s ease;
}

.founder-premium:hover .founder-premium__image img {
    transform: scale(1.03);
}

.founder-premium__info {
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-premium__label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    width: fit-content;
}

.founder-premium__name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.founder-premium__role {
    color: #2e7d32;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.founder-premium__quals {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.founder-premium__quals i {
    color: #1a2b5f;
    margin-right: 6px;
}

.founder-premium__bio {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-premium__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.founder-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(26, 43, 95, 0.06);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a2b5f;
}

.founder-premium__badge i {
    color: #2e7d32;
    font-size: 0.75rem;
}

/* ===== TEAM STRUCTURE ===== */
.team-structure {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-structure__item {
    background: #fff;
    border: 1px solid rgba(26, 43, 95, 0.1);
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 43, 95, 0.08);
}

.team-structure__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(26, 43, 95, 0.12);
    border-color: #2e7d32;
}

.team-structure__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-structure__item:hover .team-structure__icon {
    background: #2e7d32;
}

.team-structure__icon i {
    font-size: 1.2rem;
    color: #2e7d32;
    transition: color 0.3s ease;
}

.team-structure__item:hover .team-structure__icon i {
    color: #fff;
}

.team-structure__number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a2b5f;
    line-height: 1;
    margin-bottom: 6px;
}

.team-structure__label {
    font-size: 0.82rem;
    color: #475569;
    font-weight: 500;
}

/* ===== EXPERTISE ===== */
.expertise-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.expertise-premium__card {
    background: #fff;
    border: 1px solid rgba(26, 43, 95, 0.1);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(26, 43, 95, 0.08);
    position: relative;
    overflow: hidden;
}

.expertise-premium__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.expertise-premium__icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(26, 43, 95, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.expertise-premium__card:hover .expertise-premium__icon {
    background: #1a2b5f;
    box-shadow: 0 6px 20px rgba(26, 43, 95, 0.2);
}

.expertise-premium__icon i {
    font-size: 1.4rem;
    color: #1a2b5f;
    transition: all 0.3s ease;
}

.expertise-premium__card:hover .expertise-premium__icon i {
    color: #fff;
}

.expertise-premium__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.expertise-premium__desc {
    color: #475569;
    font-size: 0.88rem;
    margin: 0 0 18px;
}

.expertise-premium__bar {
    height: 3px;
    width: 40px;
    background: rgba(26, 43, 95, 0.1);
    border-radius: 3px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.expertise-premium__card:hover .expertise-premium__bar {
    width: 80%;
    background: linear-gradient(90deg, #2e7d32, #1a2b5f);
}

/* ===== CREDENTIALS ===== */
.credentials-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.credentials-premium__card {
    background: #fff;
    border: 1px solid rgba(26, 43, 95, 0.1);
    border-radius: 22px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(26, 43, 95, 0.08);
}

.credentials-premium__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #1a2b5f;
}

.credentials-premium__logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #1a2b5f, #0f1f35);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(26, 43, 95, 0.2);
}

.credentials-premium__logo i {
    font-size: 2rem;
    color: #fff;
}

.credentials-premium__abbr {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a2b5f;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.credentials-premium__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 14px;
}

.credentials-premium__desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.credentials-premium__verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2e7d32;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-split__img-wrap img {
        height: 400px;
    }

    .values-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-premium__connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .page-header--premium {
        padding: 130px 0 60px;
    }

    .stabs-panel {
        padding: 30px 25px;
    }

    .stabs-panel__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stabs-panel__title {
        font-size: 1.3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .stabs-panel__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .counter-strip__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mv-premium {
        grid-template-columns: 1fr;
    }

    .values-premium {
        grid-template-columns: 1fr 1fr;
    }

    .founder-premium {
        flex-direction: column;
    }

    .founder-premium__image {
        width: 100%;
        min-width: 100%;
    }

    .founder-premium__image img {
        height: 300px;
        min-height: auto;
    }

    .team-structure {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-premium {
        grid-template-columns: 1fr;
    }

    .credentials-premium {
        grid-template-columns: 1fr;
    }

    .cta-premium__inner {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 50px 0;
    }

    .page-header--premium {
        padding: 120px 0 50px;
    }

    .stabs-btn {
        padding: 10px 16px;
    }

    .stabs-panel {
        padding: 24px 18px;
    }

    .stabs-panel__icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .process-premium {
        grid-template-columns: 1fr;
    }

    .counter-strip__grid {
        grid-template-columns: 1fr 1fr;
    }

    .counter-strip__number {
        font-size: 2.2rem;
    }

    .values-premium {
        grid-template-columns: 1fr;
    }

    .founder-premium__info {
        padding: 28px 22px;
    }

    .team-structure {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .team-structure__item {
        padding: 20px 12px;
    }

    .credentials-premium__card {
        padding: 30px 22px;
    }

    .story-split__img-wrap img {
        height: 280px;
    }

    .cta-premium__inner {
        padding: 45px 22px;
    }

    .cta-premium__title {
        font-size: 1.6rem;
    }
}