/* ===== InvestValue Capital - Shared Styles ===== */

:root {
    --primary-blue: #C7A780;
    --dark-blue: #9A7C58;
    --accent-blue: #C7A780;
    --light-bg: #FFFDFA;
    --light-gray: #f5f5f7;
    --text-dark: #343C4B;
    --text-body: #343C4B;
    --text-muted: #343C4B;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    color: var(--text-body);
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ===== Lazy Load Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== Enhanced Animations ===== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(199, 167, 128, 0.1); }
    50% { box-shadow: 0 8px 30px rgba(199, 167, 128, 0.25); }
}
@keyframes drawLine {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}
@keyframes rotateSubtle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* Snapshot cards stagger animation */
.scheme-snapshot-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.scheme-product-row.visible .scheme-snapshot-item {
    opacity: 1;
    transform: translateY(0);
}
.scheme-product-row.visible .scheme-snapshot-item:nth-child(1) { transition-delay: 0.1s; }
.scheme-product-row.visible .scheme-snapshot-item:nth-child(2) { transition-delay: 0.2s; }
.scheme-product-row.visible .scheme-snapshot-item:nth-child(3) { transition-delay: 0.3s; }
.scheme-product-row.visible .scheme-snapshot-item:nth-child(4) { transition-delay: 0.4s; }
.scheme-product-row.visible .scheme-snapshot-item:nth-child(5) { transition-delay: 0.5s; }
.scheme-product-row.visible .scheme-snapshot-item:nth-child(6) { transition-delay: 0.6s; }

/* Strategy float icons entrance */
.strategy-float-icon {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.strategy-visual-wrapper.anim-active .strategy-float-icon {
    opacity: 1;
    transform: scale(1);
}
.strategy-visual-wrapper.anim-active .strategy-float-icon:nth-child(3) { transition-delay: 0.2s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon:nth-child(4) { transition-delay: 0.35s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon:nth-child(5) { transition-delay: 0.5s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon:nth-child(6) { transition-delay: 0.65s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon:nth-child(7) { transition-delay: 0.8s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon:nth-child(8) { transition-delay: 0.95s; }

/* Strategy SVG line draw animation */
.strategy-lines-svg line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 1.2s ease-out;
}
.strategy-visual-wrapper.anim-active .strategy-lines-svg line {
    stroke-dashoffset: 0;
}
.strategy-visual-wrapper.anim-active .strategy-lines-svg line:nth-child(1) { transition-delay: 0.1s; }
.strategy-visual-wrapper.anim-active .strategy-lines-svg line:nth-child(2) { transition-delay: 0.25s; }
.strategy-visual-wrapper.anim-active .strategy-lines-svg line:nth-child(3) { transition-delay: 0.4s; }
.strategy-visual-wrapper.anim-active .strategy-lines-svg line:nth-child(4) { transition-delay: 0.55s; }
.strategy-visual-wrapper.anim-active .strategy-lines-svg line:nth-child(5) { transition-delay: 0.7s; }
.strategy-visual-wrapper.anim-active .strategy-lines-svg line:nth-child(6) { transition-delay: 0.85s; }

/* Strategy center image entrance */
.strategy-center-img {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.strategy-visual-wrapper.anim-active .strategy-center-img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* CTA circuit line pulse */
.cta-circuit-svg path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: none;
}
.cta-banner-section.visible .cta-circuit-svg path {
    animation: drawLine 2s ease-out forwards;
}
.cta-banner-section.visible .cta-circuit-svg path:nth-child(1) { animation-delay: 0.2s; }
.cta-banner-section.visible .cta-circuit-svg path:nth-child(2) { animation-delay: 0.5s; }
.cta-banner-section.visible .cta-circuit-svg path:nth-child(3) { animation-delay: 0.8s; }
.cta-banner-section.visible .cta-circuit-svg path:nth-child(4) { animation-delay: 1.1s; }
.cta-banner-section.visible .cta-circuit-svg path:nth-child(5) { animation-delay: 1.4s; }
.cta-banner-section.visible .cta-circuit-svg path:nth-child(6) { animation-delay: 1.7s; }

/* Snapshot icon hover pulse */
.scheme-snapshot-item:hover .scheme-snapshot-icon img,
.snapshot-item:hover .snapshot-icon img {
    animation: pulseGlow 1.5s ease-in-out infinite;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Section title underline animation */
.section-title {
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #C7A780;
    margin-top: 1.5rem;
    border-radius: 2px;
    transition: width 0.8s ease-out;
}
.fade-in-left.visible .section-title::after,
.fade-in.visible .section-title::after,
.text-center.fade-in.visible .section-title::after {
    width: 60px;
}
.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Navbar ===== */
.navbar {
    padding: .5rem 0;
    background: white;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Homepage navbar */
.navbar-transparent {
    background: transparent;
    box-shadow: none;
}
.navbar-transparent.scrolled {
    background: transparent;
    box-shadow: none;
}
.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
}
.navbar-brand img {
    height: 40px !important;
    max-height: none !important;
    width: auto !important;
    display: block;
}
.navbar-brand .logo-color {
    display: block !important;
}
.navbar-brand .logo-white {
    display: none !important;
}

/* Inner pages navbar - show white logo before scroll */
.navbar-transparent .navbar-brand .logo-white {
    display: block !important;
}
.navbar-transparent .navbar-brand .logo-color {
    display: none !important;
}
.navbar-transparent.scrolled .navbar-brand .logo-white {
    display: none !important;
}
.navbar-transparent.scrolled .navbar-brand .logo-color {
    display: block !important;
}

/* Home page navbar - show color logo */
.navbar-home .navbar-brand .logo-white {
    display: none !important;
}
.navbar-home .navbar-brand .logo-color {
    display: block !important;
}
.navbar.scrolled .navbar-brand {
    color: #343C4B;
}
.nav-link {
    color: #343C4B !important;
    font-weight: 500;
    margin: 0 0.3rem;
    transition: color 0.3s;
    font-size: 0.92rem;
}

/* Inner pages navbar - white links before scroll */
.navbar-transparent .nav-link {
    color: #fff !important;
}
.navbar-transparent.scrolled .nav-link {
    color: #343C4B !important;
}

/* Home page navbar - dark links before scroll */
.navbar-home .nav-link {
    color: #343C4B !important;
}
.navbar-home.scrolled .nav-link {
    color: #343C4B !important;
}
.nav-link:hover,
.nav-link.active {
    color: #C7A780 !important;
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #C7A780 !important;
}
.nav-login-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
.navbar.scrolled .nav-login-btn {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}
.nav-login-btn:hover {
    background: #C7A780;
    border-color: #C7A780;
    color: white;
}
.navbar.scrolled .nav-login-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
    background: url('./anim/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    background: url('./anim/lighthouse.png') no-repeat right bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    transform-origin: 85% 100%;
    animation: lighthouseFloat 6s ease-in-out infinite;
}
.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: inherit;
}
.hero-section .hero-badge,
.hero-section .hero-title,
.hero-section .hero-subtitle,
.hero-section .hero-description,
.hero-section .hero-note,
.hero-section .btn-primary-iv,
.hero-section .btn-outline-iv {
    opacity: 0;
    transform: translateY(18px);
    animation: heroContentIn 0.7s ease-out forwards;
}
.hero-section .hero-title { animation-delay: 0.15s; }
.hero-section .hero-subtitle { animation-delay: 0.28s; }
.hero-section .hero-description { animation-delay: 0.4s; }
.hero-section .btn-primary-iv,
.hero-section .btn-outline-iv { animation-delay: 0.55s; }
.hero-section .hero-note { animation-delay: 0.68s; }

@keyframes lighthouseFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section .hero-badge,
    .hero-section .hero-title,
    .hero-section .hero-subtitle,
    .hero-section .hero-description,
    .hero-section .hero-note,
    .hero-section .btn-primary-iv,
    .hero-section .btn-outline-iv {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    .phil-anim-line,
    .phil-anim-area,
    .phil-anim-dot,
    .phil-anim-bar,
    .phil-anim-arrow,
    .phil-anim-ring {
        animation: none !important;
        opacity: 1;
        stroke-dashoffset: 0;
        transform: none;
    }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #faf5ef;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    color: #5a5347;
    margin-top: 2.2rem;
  
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    border: none;
    box-shadow: 0 1px 4px rgba(199, 167, 128, 0.1);
}
.hero-badge i {
    color: #C7A780;
    font-size: 1rem;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #2f3750;
 
}
.hero-title-accent {
    color: #C7A780;
}
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: #495166;
    margin-bottom: 1rem;
}
.hero-description {
    font-size: 1.05rem;
    color: #4f5569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.hero-note {
    font-size: 0.85rem;
    color: #2f4a7a;
    font-style: italic;
}
.hero-sebi {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 1.25rem;
}

/* ===== Buttons ===== */
.btn-primary-iv {
    background: #C7A780;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-primary-iv:hover {
    background: #b89669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 167, 128, 0.4);
    color: white;
}
.btn-outline-iv {
    background: white;
    color: #343C4B;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #C7A780;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-outline-iv:hover {
    background: #C7A780;
    color: white;
}

/* ===== Section Styles ===== */
.section-padding {
    padding: 5rem 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C7A780;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #C7A780 0%, #C7A780 45%, #2f3750 55%, #2f3750 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
     
}
.section-bg-light {
    background: var(--light-bg);
}
.section-bg-dark {
    background: #212528;
    color: white;
}
.section-bg-gradient {
    background: #fdfbf8;
}

/* ===== Cards ===== */
.iv-card {
    background:#fef5e6;
    border-radius: 16px;
    padding: 2.5rem;
    
    transition: all 0.3s ease;
    height: 100%;
}
.iv-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.iv-card-icon {
    width: 60px;
    height: 60px;
    background: #fef5e6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.iv-card-icon i {
    font-size: 28px;
    color: #C7A780;
}
.iv-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #C7A780;
    margin-bottom: 1rem;
}
.iv-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Risk Feature Section (Zigzag Style) ===== */
.risk-feature-section {
    background: #FFFDFA;
}

/* Zigzag row */
.risk-zigzag-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}
.risk-zigzag-card {
    flex: 1;
    max-width: 260px;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}
.risk-zigzag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Zigzag offset */
.risk-zag-down {
    margin-top: 60px;
}
.risk-zag-up {
    margin-top: 0;
}

/* Icon */
.risk-zig-icon {
    width: 56px;
    height: 56px;
    background: rgba(199, 167, 128, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.risk-zig-icon i {
    font-size: 1.5rem;
    color: #C7A780;
}

/* Card text */
.risk-zigzag-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #343C4B;
    margin-bottom: 0.6rem;
}
.risk-zigzag-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .risk-zigzag-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .risk-zigzag-card {
        max-width: 45%;
    }
    .risk-zag-down,
    .risk-zag-up {
        margin-top: 0;
    }
}
@media (max-width: 576px) {
    .risk-zigzag-row {
        flex-direction: column;
        align-items: center;
    }
    .risk-zigzag-card {
        max-width: 100%;
        width: 100%;
    }
}

/* 5-card zigzag variant */
.risk-zigzag-row-5 {
    gap: 20px;
}
.risk-zigzag-row-5 .risk-zigzag-card {
    max-width: 200px;
}
@media (max-width: 991px) {
    .risk-zigzag-row-5 .risk-zigzag-card {
        max-width: 45%;
    }
}
@media (max-width: 576px) {
    .risk-zigzag-row-5 .risk-zigzag-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Philosophy card on dark bg */
.section-bg-dark .philosophy-card .risk-zig-icon {
    background: rgba(199, 167, 128, 0.15);
}
.section-bg-dark .philosophy-card h5 {
    color: #C7A780;
}
.section-bg-dark .philosophy-card p {
    color: #6b7082;
}

/* ===== Snapshot / Strategy Grid ===== */
.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}
.snapshot-item {
    background:#fef5e6;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.snapshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.snapshot-icon {
    margin-bottom: 1rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.snapshot-icon img {
    width: auto;
    height: 50px;
    max-width: 100%;
    object-fit: contain;
}
.snapshot-label {
    font-size: 1rem;
    font-weight: 600;
    color: #343C4B;
  
 
    margin-bottom: 0.5rem;
}
.snapshot-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #C7A780;
}

/* ===== Investment Process Funnel ===== */
.process-layout {
    max-width: 1300px;
    margin: 0 auto;
}

.process-top-row {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 2rem;
    align-items: center;
}

.process-card-left {
    align-self: center;
    text-align: right;
}

.process-card-right {
    align-self: start;
    padding-top: 0;
    text-align: left;
}

.process-funnel-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.funnel-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    cursor: pointer;
}

/* Funnel SVG hover effects */
.funnel-stage {
    transition: transform 0.3s ease, filter 0.3s ease;
    transform-origin: center center;
}

.funnel-stage:hover {
    filter: brightness(1.15) drop-shadow(0 4px 12px rgba(199, 167, 128, 0.5));
    transform: scale(1.03);
}

.funnel-image:hover .funnel-top {
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.funnel-image:hover .funnel-base {
    filter: brightness(1.05);
    transition: filter 0.3s ease;
}

.process-stage-detail {
    color: #343C4B;
    padding: 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-stage-detail:hover,
.process-stage-detail.stage-highlight {
    color: #9A7C58;
    background: #fef5e6;
    border-radius: 10px;
}

.process-stage-detail:hover h4,
.process-stage-detail.stage-highlight h4 {
    color: #9A7C58;
  
    transition: all 0.3s ease;
}

 

/* SVG stage highlight from card hover */
.funnel-stage.stage-hovered {
    filter: brightness(1.15) drop-shadow(0 4px 12px rgba(199, 167, 128, 0.5));
    transform: scale(1.03);
}

.process-stage-detail h4 {
    color: #C7A780;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.process-stage-detail p {
    margin: 0;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

.detail-section {
    margin-bottom: 0.75rem;
}

.detail-section:last-of-type {
    margin-bottom: 0.25rem;
}

.detail-section strong {
    color: #343C4B;
    font-size: 0.88rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.4rem;
}

.detail-section p {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.detail-section ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.84rem;
    color: #555;
    line-height: 1.7;
}

.detail-section ul li {
    margin-bottom: 0.2rem;
}

.detail-section ul li::marker {
    color: #C7A780;
}

.output-badge {
    background: #C7A780;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.process-bottom-row {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 0.5rem;
    text-align: center;
}

.process-stage3-card {
    padding: 16px;
}

.final-output {
    background: linear-gradient(135deg, #C7A780 0%, #b89669 100%);
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== VECTOR Framework ===== */
.vector-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    margin-bottom: 1rem;
}
.vector-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}
.vector-letter {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}
.vector-content h5 {
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}
.vector-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* VECTOR Interactive Tabs */
.vector-tabs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.vector-tab {
    flex: 1;
    min-width: 120px;
    max-width: 170px;
    text-align: center;
    padding: 1.5rem 0.75rem 1.25rem;
    background: white;
      border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.vector-tab:hover {
    border-color: #C7A780;
    box-shadow: 0 4px 16px rgba(199, 167, 128, 0.15);
}
.vector-tab.active {
    border-color: #C7A780;
    box-shadow: 0 4px 20px rgba(199, 167, 128, 0.20);
}
.vector-tab-letter {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f6e8d6;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.vector-tab.active .vector-tab-letter {
    color: #C7A780;
}
.vector-tab-label {
    font-size: .875rem;
    color: #8896a8;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s;
}
.vector-tab.active .vector-tab-label {
    color: #343C4B;
    font-weight: 600;
}

.vector-panel-wrapper {
    position: relative;
    margin-top: 1.5rem;
}
.vector-panel {
    display: none;
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2.5rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #C7A780, #9A7C58) 1;
    position: relative;
    overflow: hidden;
    animation: vectorFadeIn 0.35s ease;
}
.vector-panel.active {
    display: block;
}
@keyframes vectorFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.vector-panel-bg-letter {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    font-weight: 900;
    color: #f6e8d6;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.vector-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fef5e6, #f5e6d3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #C7A780;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.vector-panel-body {
    position: relative;
    z-index: 1;
}
.vector-panel-body h4 {
    font-weight: 700;
    color: #343C4B;
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}
.vector-panel-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.vector-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
}
.vector-checks span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-body);
    white-space: nowrap;
}
.vector-checks i {
    color: #C7A780;
    font-size: 0.85rem;
}
.vector-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}
.vector-nav-btn {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.2s;
}
.vector-nav-btn.disabled {
    color: #ccc;
    cursor: default;
    pointer-events: none;
}
.vector-nav-prev {
    color: #8896a8;
}
.vector-nav-prev:hover {
    color: #C7A780;
}
.vector-nav-next {
    color: white;
    background: #C7A780;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
}
.vector-nav-next:hover {
    background: #9A7C58;
}

@media (max-width: 768px) {
    /* CTA Banner responsive */
    .cta-banner-section { padding: 3rem 0; }
    .cta-banner-title { font-size: 1.75rem; }
    .cta-banner-text { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .scheme-details-card { margin-top: 2rem; padding: 1.5rem; }
    .scheme-card-grid { gap: 0.8rem 1.2rem; }
    .scheme-snapshot-grid { grid-template-columns: repeat(3, 1fr); }
    .scheme-product-row { flex-direction: column; border-radius: 14px; }
    .scheme-product-card { max-width: 100%; min-width: auto; border-right: none; border-bottom: 1px solid rgba(199, 167, 128, 0.2); }
    .scheme-product-row .scheme-snapshot-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-circuit-svg { width: 80%; opacity: 0.5; }

    .vector-tabs { gap: 0.4rem; }
    .vector-tab { min-width: 0; max-width: none; padding: 1rem 0.4rem 0.75rem; flex: 1; }
    .vector-tab-letter { font-size: 1.6rem; }
    .vector-tab-label { font-size: 0.65rem; }
    .vector-panel { padding: 1.5rem 1.25rem 1rem; }
    .vector-panel-bg-letter { font-size: 5rem; right: 0.5rem; }
    .vector-checks { flex-direction: column; gap: 0.5rem; }
    
    /* Funnel responsive */
    .process-top-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .process-card-left {
        order: 2;
        text-align: center;
    }
    .process-funnel-center {
        order: 1;
    }
    .process-card-right {
        order: 3;
        text-align: center;
    }
    .funnel-image {
        max-width: 280px;
    }
    .process-bottom-row {
        margin-top: 1rem;
        text-align: center;
    }
}

/* ===== Process Steps ===== */
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
}
.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.process-step h5 {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.process-step p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Team Cards ===== */
.team-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    height: 100%;
}
.team-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-avatar i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}
.team-card h4 {
    font-weight: 700;
    color: #343C4B;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}
.team-card .team-role {
    font-size: 0.9rem;
    color: #C7A780;
    font-weight: 600;
    margin-bottom: 0;
}

/* ===== Co-Founder Cards ===== */
.cofounder-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(199, 167, 128, 0.12);
    height: 100%;
    transition: all 0.3s ease;
}
.cofounder-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.cofounder-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(199, 167, 128, 0.2);
}
.cofounder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.cofounder-card:hover .cofounder-avatar img {
    filter: grayscale(0%);
}
.cofounder-avatar-placeholder {
    background: #f8f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cofounder-avatar-placeholder i {
    font-size: 2rem;
    color: #C7A780;
}
.cofounder-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #343C4B;
    margin-bottom: 0.5rem;
}
.cofounder-info h4 span {
    font-weight: 500;
    color: #C7A780;
}
.cofounder-info p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 576px) {
    .cofounder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== Philosophy Cards ===== */
.philosophy-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.8rem;
    border: 1px solid rgba(199, 167, 128, 0.18);
    box-shadow: 0 4px 20px rgba(19, 25, 39, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.philosophy-card:hover {
    box-shadow: 0 12px 32px rgba(19, 25, 39, 0.08);
    transform: translateY(-4px);
}

/* SVG illustration area */
.phil-illustration {
    background: #faf8f5;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin: 0 0 1.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    min-height: 220px;
    position: relative;
}
.phil-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Card title & text */
.philosophy-card h5 {
    font-weight: 600;
    color: #343C4B;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    line-height: 1.3;
    text-align: left;
}
.philosophy-card p {
    font-size: 1rem;
    color: #6b7082;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: left;
}

/* ---- SVG Animations (always visible with subtle motion) ---- */

/* Line: visible, no dash hiding */
.phil-anim-line {
    stroke-dasharray: none;
    opacity: 1;
}
/* Area fill: visible */
.phil-anim-area {
    opacity: 0.18;
}
/* Dots: visible with gentle pulse */
.phil-anim-dot {
    opacity: 1;
    transform-origin: center;
}
/* Bars: visible with gentle bounce */
.phil-anim-bar {
    transform-origin: bottom;
    transform: scaleY(1);
    animation: philBarBounce 2.5s ease-in-out infinite alternate;
}
.phil-anim-bar-1 { animation-delay: 0s; }
.phil-anim-bar-2 { animation-delay: 0.15s; }
.phil-anim-bar-3 { animation-delay: 0.3s; }
.phil-anim-bar-4 { animation-delay: 0.45s; }
.phil-anim-bar-5 { animation-delay: 0.6s; }

/* Arrow: visible */
.phil-anim-arrow {
    stroke-dasharray: none;
    opacity: 1;
}
.phil-anim-ring-1, .phil-anim-ring-2, .phil-anim-ring-3 {
    stroke-dasharray: none;
    opacity: 1;
}

/* Card 3: Flow paths visible */
.phil-anim-flow {
    stroke-dasharray: none;
    opacity: 1;
}

/* Subtle dot pulse */
.phil-anim-dot-1 { animation: philDotPulse 3s ease-in-out 0s infinite; }
.phil-anim-dot-2 { animation: philDotPulse 3s ease-in-out 0.3s infinite; }
.phil-anim-dot-3 { animation: philDotPulse 3s ease-in-out 0.6s infinite; }
.phil-anim-dot-4 { animation: philDotPulse 3s ease-in-out 0.9s infinite; }
.phil-anim-dot-5 { animation: philDotPulse 3s ease-in-out 1.2s infinite; }

/* Flow path shimmer */
.phil-anim-flow-1 { animation: philFlowShimmer 3s ease-in-out 0s infinite; }
.phil-anim-flow-2 { animation: philFlowShimmer 3s ease-in-out 0.4s infinite; }
.phil-anim-flow-3 { animation: philFlowShimmer 3s ease-in-out 0.8s infinite; }

/* Remove .phil-animate dependency — no longer needed */

@keyframes philBarBounce {
    0% { transform: scaleY(0.85); }
    100% { transform: scaleY(1); }
}
@keyframes philDotPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}
@keyframes philFlowShimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== Bullet Lists ===== */
.iv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.iv-list li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.iv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue);
}
.iv-list-light li {
    color: rgba(255,255,255,0.9);
}
.iv-list-light li::before {
    background: #C7A780;
}

/* ===== Contact Form ===== */
.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.contact-form .form-control,
.contact-form .form-select {
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(8, 65, 134, 0.1);
}

/* ===== Disclosure / Download Items ===== */
.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.download-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
    color: #C7A780;
}
.download-icon {
    width: 48px;
    height: 48px;
    background: #fef5e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.download-icon i {
    font-size: 1.3rem;
    color: #C7A780;
}

/* ===== CTA Banner Section ===== */
.cta-banner-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #252934 40%, #2e2e35 70%, #1a1a2e 100%);
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.cta-circuit-svg {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
}
.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.cta-banner-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    
 
}
.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    border: 1.5px solid rgba(199, 167, 128, 0.6);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}
.cta-banner-btn:hover {
    background: rgba(199, 167, 128, 0.2);
    border-color: #C7A780;
    color: #ffffff;
    transform: translateY(-2px);
}
.scheme-details-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}
.scheme-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.scheme-product-row {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #fef5e6;
    border-radius: 16px;
    overflow: hidden;
}
.scheme-product-card {
    background: #fff6e8;
    padding: 2rem 1.8rem;
    min-width: 280px;
    max-width: 330px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(199, 167, 128, 0.2);
}
.scheme-product-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #9A7C58;
    margin-bottom: 0.75rem;
}
.scheme-product-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.scheme-product-row .scheme-snapshot-grid {
    flex: 1;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    background: rgba(199, 167, 128, 0.15);
}
.scheme-product-row .scheme-snapshot-item {
    border-radius: 0;
    background: #faf8f5;
}
.scheme-snapshot-item {
    background: #fef5e6;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}
.scheme-snapshot-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(199, 167, 128, 0.15);
}
.scheme-snapshot-icon {
    margin-bottom: 0.75rem;
}
.scheme-snapshot-icon img {
    width: 44px;
    height: 44px;
}
.scheme-snapshot-label {
    font-size: 1rem;
    color: #8a8a8a;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.scheme-snapshot-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #9A7C58;
}
.scheme-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.scheme-card-icon {
    width: 48px;
    height: 48px;
    background: #f0ece6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.scheme-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #343C4B;
    margin: 0;
}
.scheme-card-tag {
    font-size: 0.78rem;
    color: #9A7C58;
    font-weight: 600;
    background: rgba(199, 167, 128, 0.12);
    padding: 2px 10px;
    border-radius: 20px;
}
.scheme-card-divider {
    height: 1px;
    background: #e9e5df;
    margin: 1rem 0;
}
.scheme-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 2rem;
}
.scheme-card-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed #d9d3cb;
}
.scheme-card-item:nth-last-child(-n+2) {
    padding-bottom: 0;
    border-bottom: none;
}
.scheme-card-label {
    font-size: 0.75rem;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 4px;
}
.scheme-card-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #343C4B;
}
.scheme-card-footer {
    text-align: center;
}
.scheme-card-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.scheme-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem;
    background: rgba(199, 167, 128, 0.04);
    border-radius: 10px;
    border: 1px dashed #e4ddd4;
}
.scheme-list-icon {
    width: 36px;
    height: 36px;
    background: rgba(199, 167, 128, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #9A7C58;
    font-size: 1rem;
}
.scheme-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9A7C58;
    text-decoration: none;
    transition: all 0.3s;
}
.scheme-card-link:hover {
    color: #C7A780;
    text-decoration: underline;
}

/* ===== Strategy Visual with Lines ===== */
.strategy-visual-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}
.strategy-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.strategy-center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    aspect-ratio: 1 / 1;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(199, 167, 128, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.strategy-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.strategy-float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(199, 167, 128, 0.25);
    z-index: 3;
    animation: floatBubble 3s ease-in-out infinite;
}
.strategy-float-icon:nth-child(odd) {
    animation-delay: 0.5s;
}
.strategy-float-icon:nth-child(even) {
    animation-delay: 1.2s;
}
.strategy-float-icon img {
    width: 26px;
    height: 26px;
}
@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.strategy-visual-wrapper.anim-active .strategy-float-icon.floating {
    animation: floatBubble 3s ease-in-out infinite;
}
.strategy-visual-wrapper.anim-active .strategy-float-icon.floating:nth-child(3) { animation-delay: 0s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon.floating:nth-child(4) { animation-delay: 0.5s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon.floating:nth-child(5) { animation-delay: 1s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon.floating:nth-child(6) { animation-delay: 1.5s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon.floating:nth-child(7) { animation-delay: 2s; }
.strategy-visual-wrapper.anim-active .strategy-float-icon.floating:nth-child(8) { animation-delay: 2.5s; }

/* ===== Footer ===== */
footer {
    background: #212429;
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
    overflow: hidden;
}
.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(199, 167, 128, 0.4);
    padding-bottom: 10px;
    color: #C7A780;
}
.footer-section {
    margin-bottom: 15px;
}
.footer-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
    font-size: 0.85rem;
}
.footer-text {
    line-height: 1.6;
    color: white;
    font-size: 0.92rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.footer-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.footer-link:hover {
    opacity: 0.8;
    color: white;
}
.footer-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s;
}
.footer-nav-links a:hover {
    color: #C7A780;
    padding-left: 4px;
}
.footer-bottom-bar {
    background: #1b1e23;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.85rem;
}

/* ===== Disclaimer Modal ===== */
body.modal-open-iv {
    overflow: hidden;
}
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.disclaimer-overlay.hidden {
    display: none !important;
}
.disclaimer-modal {
    background: white;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
}
.disclaimer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 1.25rem;
}
.disclaimer-content {
    color: #343C4B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.disclaimer-checkbox {
    margin-bottom: 1.25rem;
}
.disclaimer-checkbox input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}
.disclaimer-checkbox label {
    cursor: pointer;
    color: #343C4B;
    font-size: 0.9rem;
}
.disclaimer-button {
    width: 100%;
    padding: 12px;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.disclaimer-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.disclaimer-button:not(:disabled):hover {
    opacity: 0.9;
}

@media (max-width: 480px) {
    .disclaimer-overlay {
        padding: 10px;
        align-items: flex-start;
    }
    .disclaimer-modal {
        margin-top: 10px;
        max-height: calc(100vh - 20px);
        border-radius: 10px;
        padding: 1rem;
    }
    .disclaimer-title {
        font-size: 1.25rem;
        margin-bottom: 0.9rem;
    }
    .disclaimer-content {
        font-size: 0.86rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    .disclaimer-content ul {
        padding-left: 1.1rem;
        margin-bottom: 0.75rem;
    }
    .disclaimer-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 1rem;
    }
    .disclaimer-checkbox input {
        margin-right: 0;
        margin-top: 2px;
        flex-shrink: 0;
    }
    .disclaimer-checkbox label {
        font-size: 0.86rem;
        line-height: 1.35;
    }
    .disclaimer-button {
        font-size: 0.95rem;
        padding: 11px;
    }
}

@media (max-width: 360px) {
    .disclaimer-overlay {
        padding: 8px;
    }
    .disclaimer-modal {
        padding: 0.875rem;
        margin-top: 6px;
    }
    .disclaimer-title {
        font-size: 1.15rem;
    }
}

/* ===== Page Header (inner pages) ===== */
.page-header {
    background: linear-gradient(135deg, #C7A780 0%, #2f3750 100%);
    padding: 7rem 0 3rem;
    color: white;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #C7A780 0%, #C7A780 45%, #ffffff 55%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 650px;
}
.breadcrumb-iv {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}
.breadcrumb-iv a {
    color: white;
    text-decoration: none;
}
.breadcrumb-iv a:hover {
    text-decoration: underline;
}

/* ===== Login Modal ===== */
.login-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.login-header {
    background: linear-gradient(135deg, #343C4B 0%, #2a313d 100%);
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}
.login-avatar {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-avatar i {
    font-size: 2rem;
    color: #C7A780;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .navbar .container {
        position: relative;
    }
    .navbar-collapse {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        padding: 0.75rem 0.9rem 1rem;
    }
    .navbar-collapse .navbar-nav {
        align-items: flex-start !important;
    }
    .navbar-collapse .nav-item {
        width: 100%;
        margin: 0;
    }
    .navbar-collapse .nav-link {
        display: block;
        width: 100%;
        padding: 0.45rem 0 !important;
        font-size: 1rem;
        color: #343C4B !important;
    }
    .navbar-toggler {
        background: rgba(255, 255, 255, 0.92);
        border: 2px solid rgba(52, 60, 75, 0.35);
        border-radius: 10px;
        padding: 0.3rem 0.55rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .snapshot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 78vh;
        padding: 6rem 0 3rem;
        background-image: url('./anim/background.jpg');
        background-position: center;
        background-size: cover;
    }
    .hero-section::before {
        width: 62%;
        right: -8%;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .btn-primary-iv,
    .btn-outline-iv {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }
    footer {
        padding: 40px 0 20px;
    }
    .footer-title {
        text-align: center;
    }
    .footer-section {
        text-align: center;
    }
    .snapshot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .snapshot-item {
        padding: 1rem;
    }
    .snapshot-value {
        font-size: 0.95rem;
    }
    .philosophy-card {
        padding: 1.2rem;
    }
    .phil-illustration {
        min-height: 150px;
        padding: 1.2rem 0.8rem;
        margin: 0 0 1rem;
    }
    .phil-svg {
        width: 92%;
    }
    .philosophy-card h5 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    .philosophy-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        height: 34px !important;
    }
    .hero-section {
        min-height: 72vh;
        padding: 5.5rem 0 2.5rem;
        background-position: center;
    }
    .hero-section::before {
        width: 76%;
        right: -22%;
        opacity: 0.65;
    }
    .hero-badge {
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    .hero-title {
        font-size: 1.55rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }
    .hero-note {
        font-size: 0.8rem;
    }
    .section-padding {
        padding: 2.5rem 0;
    }
    .snapshot-grid {
        grid-template-columns: 1fr;
    }
    .accessibility-controls {
        gap: 0.35rem;
    }
    .accessibility-controls .text-size-btn {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    .accessibility-controls .contrast-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        min-height: 68vh;
        padding: 5.25rem 0 2.25rem;
    }
    .hero-section::before {
        width: 84%;
        right: -35%;
        opacity: 0.55;
    }
    .hero-title {
        font-size: 1.35rem;
    }
    .hero-description {
        font-size: 0.9rem;
    }
    .btn-primary-iv,
    .btn-outline-iv {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}

/* ===== Accessibility Controls ===== */
.accessibility-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.accessibility-controls .text-size-controls {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 2px;
}

.accessibility-controls .text-size-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-controls .text-size-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.accessibility-controls .text-size-btn.active {
    background: var(--primary-blue);
    color: #fff;
}

.accessibility-controls .contrast-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.accessibility-controls .contrast-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.accessibility-controls .contrast-btn.active {
    background: #fff;
    color: #000;
}

/* Inner pages navbar - white accessibility controls before scroll */
.navbar-transparent .accessibility-controls .text-size-controls {
    background: rgba(255, 255, 255, 0.15);
}

.navbar-transparent .accessibility-controls .text-size-btn {
    color: #fff;
}

.navbar-transparent .accessibility-controls .text-size-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar-transparent .accessibility-controls .contrast-btn {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.navbar-transparent .accessibility-controls .contrast-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Home page navbar - dark accessibility controls before scroll */
.navbar-home .accessibility-controls .text-size-controls {
    background: rgba(0, 0, 0, 0.06);
}

.navbar-home .accessibility-controls .text-size-btn {
    color: #343C4B;
}

.navbar-home .accessibility-controls .text-size-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.navbar-home .accessibility-controls .contrast-btn {
    border-color: rgba(0, 0, 0, 0.25);
    color: #343C4B;
}

.navbar-home .accessibility-controls .contrast-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* Scrolled navbar - dark buttons */
.navbar.scrolled .accessibility-controls .text-size-controls {
    background: rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .accessibility-controls .text-size-btn {
    color: var(--text-dark);
}

.navbar.scrolled .accessibility-controls .text-size-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .accessibility-controls .text-size-btn.active {
    background: var(--primary-blue);
    color: #fff;
}

.navbar.scrolled .accessibility-controls .contrast-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.navbar.scrolled .accessibility-controls .contrast-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .accessibility-controls .contrast-btn.active {
    background: var(--text-dark);
    color: #fff;
}

/* Non-transparent navbar pages */
.navbar:not(.navbar-transparent) .accessibility-controls .text-size-controls {
    background: rgba(0, 0, 0, 0.08);
}

.navbar:not(.navbar-transparent) .accessibility-controls .text-size-btn {
    color: var(--text-dark);
}

.navbar:not(.navbar-transparent) .accessibility-controls .text-size-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.navbar:not(.navbar-transparent) .accessibility-controls .contrast-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.navbar:not(.navbar-transparent) .accessibility-controls .contrast-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Text size scaling */
html.text-small {
    font-size: 14px;
}

html.text-normal {
    font-size: 16px;
}

html.text-large {
    font-size: 18px;
}

/* High contrast mode */
html.high-contrast {
    filter: contrast(1.25);
}

html.high-contrast body {
    background: #fff !important;
}

html.high-contrast .hero-section,
html.high-contrast .cta-section,
html.high-contrast .footer-section {
    filter: contrast(0.85);
}

/* Mobile accessibility controls */
@media (max-width: 991px) {
    .accessibility-controls {
        margin: 0.5rem 0;
        justify-content: center;
        order: 10;
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled .accessibility-controls,
    .navbar:not(.navbar-transparent) .accessibility-controls,
    .navbar-transparent .accessibility-controls {
        border-top-color: rgba(0, 0, 0, 0.1);
    }
}

/* ===== Strategy Page Enhancements ===== */

/* Elevated page header with subtle pattern */
.page-header {
    background: linear-gradient(135deg, #343C4B 0%, #1a1a2e 50%, #343C4B 100%);
    padding: 8rem 0 1rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(199,167,128,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(199,167,128,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C7A780, transparent);
}
.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
}
.page-header p {
    font-size: .875rem;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.7;
    position: relative;
}

/* Section number labels */
.strategy-section-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C7A780;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 40px;
}


/* Smooth section flow connectors */
.strategy-flow-section {
    position: relative;
}
 

/* Enhanced snapshot items for Strategy Overview */
.snapshot-item {
    background: #fef5e6;
    border-radius: 16px;
    padding: 2rem 1.25rem;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.snapshot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C7A780, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.snapshot-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(199, 167, 128, 0.15);
    border-color: rgba(199, 167, 128, 0.2);
}
.snapshot-item:hover::before {
    opacity: 1;
}

/* Enhanced zigzag cards */
.risk-zigzag-card {
    border: 1px solid rgba(199, 167, 128, 0.1);
    overflow: hidden;
}
.risk-zigzag-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C7A780, #9A7C58);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.risk-zigzag-card:hover::after {
    transform: scaleX(1);
}

/* Enhanced philosophy cards */
.philosophy-card {
    position: relative;
    overflow: hidden;
}
.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #C7A780, #9A7C58);
    border-radius: 0 0 4px 0;
    transition: height 0.5s ease;
}
.philosophy-card:hover::before {
    height: 100%;
}

/* Icon pulse on card hover */
.risk-zigzag-card:hover .risk-zig-icon,
.philosophy-card:hover .risk-zig-icon {
    background: rgba(199, 167, 128, 0.2);
    transform: scale(1.08);
    transition: all 0.3s ease;
}
.risk-zig-icon {
    transition: all 0.3s ease;
}

/* Philosophy dark cards hover */
.phil-dark-card:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(199,167,128,0.35) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Research cards enhanced border glow */
.research-internal-card {
    transition: all 0.4s ease;
}
.research-internal-card:hover {
    box-shadow: 0 8px 32px rgba(199, 167, 128, 0.12) !important;
    border-left-color: #C7A780 !important;
}
.research-external-card {
    transition: all 0.4s ease;
}
.research-external-card:hover {
    box-shadow: 0 8px 32px rgba(199, 167, 128, 0.2) !important;
}

/* Section subtitle enhanced */
.section-subtitle {
    position: relative;
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Stagger animation delays for strategy page */
.fade-in.stagger-6 { transition-delay: 0.5s; }

/* Section title counter animation */
@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Snapshot icon bounce */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.snapshot-item:hover .snapshot-icon img {
    animation: iconBounce 0.6s ease;
}

/* CTA section enhanced glow */
.section-bg-dark.text-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199,167,128,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== Strategy Pattern Backgrounds ===== */

/* Light pattern — diagonal crosshatch + dots for Core Positioning */
.strategy-pattern-light {
    position: relative;
    overflow: hidden;
    background-color: #FFFDFA;
}
.strategy-pattern-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(199,167,128,0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(199,167,128,0.07) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 10px 10px;
    pointer-events: none;
    z-index: 0;
}
.strategy-pattern-light::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199,167,128,0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.strategy-pattern-light > .container {
    position: relative;
    z-index: 1;
}

/* ===== Process Grid (2-Column with SVG Animations) ===== */
.process-grid {
    max-width: 1060px;
    margin: 0 auto;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid rgba(199,167,128,0.12);
    height: 100%;
    position: relative;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C7A780 0%, #9A7C58 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover {
    box-shadow: 0 16px 48px rgba(199,167,128,0.18);
    border-color: rgba(199,167,128,0.3);
    transform: translateY(-6px);
}

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

.process-card-final {
    background: linear-gradient(135deg, rgba(199,167,128,0.06) 0%, #fff 100%);
    border-color: rgba(199,167,128,0.2);
}

/* Header row: number + SVG side by side */
.process-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Step number */
.process-card-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C7A780 0%, #9A7C58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 52px;
    letter-spacing: -1px;
    opacity: 0.25;
    transition: opacity 0.4s ease;
}

.process-card:hover .process-card-num {
    opacity: 0.5;
}

/* SVG container */
.process-card-svg {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-left: auto;
}

.process-card-svg svg {
    width: 100%;
    height: 100%;
}

/* Step label */
.process-card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C7A780;
    margin-bottom: 0.5rem;
}

.process-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #343C4B;
    margin-bottom: 0.65rem;
}

.process-card p {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Connector arrow between cards */
.process-card-connector {
    position: absolute;
    bottom: 14px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(199,167,128,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7A780;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-card-connector {
    background: linear-gradient(135deg, #C7A780 0%, #9A7C58 100%);
    color: #fff;
    transform: scale(1.1);
}

/* ===== SVG ANIMATION KEYFRAMES ===== */

/* Draw stroke animation - visible by default, subtle dash movement */
.svg-draw {
    stroke-dasharray: none;
    opacity: 1;
}

/* Radiating rays - pulse opacity */
.svg-ray {
    animation: svgRay 2.5s ease-in-out infinite;
}

@keyframes svgRay {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}

/* Float animation */
.svg-float {
    animation: svgFloat 3s ease-in-out infinite;
}

@keyframes svgFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-5px); opacity: 1; }
}

/* Pulse animation */
.svg-pulse {
    animation: svgPulse 2.5s ease-in-out infinite;
}

@keyframes svgPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.25); }
}

/* Fade in - visible by default */
.svg-fade-in {
    opacity: 1;
}

/* Grow bars - animate height on hover */
.svg-grow {
    transform-origin: bottom center;
    animation: svgGrowBounce 2s ease-in-out infinite alternate;
}

@keyframes svgGrowBounce {
    0% { transform: scaleY(0.7); }
    100% { transform: scaleY(1); }
}

/* Orbit rotation */
.svg-orbit {
    animation: svgOrbit 6s linear infinite;
    transform-origin: 60px 58px;
}

@keyframes svgOrbit {
    to { transform: rotate(360deg); }
}

/* Ripple outward */
.svg-ripple {
    animation: svgRipple 2.5s ease-out infinite;
}

@keyframes svgRipple {
    0% { r: 6; opacity: 0.6; }
    100% { r: 18; opacity: 0; }
}

/* Pop in - visible, gentle scale pulse */
.svg-pop {
    animation: svgPop 2s ease-in-out infinite alternate;
}

@keyframes svgPop {
    0% { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; }
}

/* Stagger delays */
.svg-delay-1 { animation-delay: 0.3s; }
.svg-delay-2 { animation-delay: 0.6s; }
.svg-delay-3 { animation-delay: 0.9s; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .process-card-svg {
        width: 80px;
        height: 80px;
    }
    .process-card-num {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .process-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    .process-card-svg {
        width: 64px;
        height: 64px;
    }
    .process-card-num {
        font-size: 1.6rem;
        min-width: 36px;
    }
    .process-card-header {
        gap: 0.75rem;
    }
    .process-card h5 {
        font-size: 1.05rem;
    }
}

/* Dark pattern — geometric grid + accent glows for Investment Philosophy */
.strategy-pattern-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f9f6f1 0%, #FFFDFA 50%, #f5f0e8 100%) !important;
}
.strategy-pattern-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(199,167,128,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199,167,128,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.strategy-pattern-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(199,167,128,0.08) 0%, transparent 55%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.strategy-pattern-dark > .container {
    position: relative;
    z-index: 1;
}
