/* ==========================================================
   DARPAN MISHRA
   Personal Website
   Version : 2.0
   Author  : Darpan Mishra
========================================================== */

/* ==========================================================
   01. RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg-color);
    color:var(--text-primary);
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font:inherit;
}

input,
textarea{
    font:inherit;
    outline:none;
}

/* ==========================================================
   02. DESIGN TOKENS
========================================================== */

:root{

    /* Brand */

    --primary:#0B1220;
    --secondary:#1E293B;
    --accent:#C8A14A;

    /* Background */

    --bg-color:#F8F8F6;
    --surface:#FFFFFF;

    /* Text */

    --text-primary:#111827;
    --text-secondary:#6B7280;

    /* Border */

    --border:#E5E7EB;

    /* Radius */

    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:20px;
    --radius-xl:28px;

    /* Shadow */

    --shadow-sm:
    0 5px 20px rgba(0,0,0,.05);

    --shadow-md:
    0 15px 45px rgba(0,0,0,.08);

    --shadow-lg:
    0 25px 60px rgba(0,0,0,.12);

    /* Transition */

    --transition:.35s ease;

    /* Container */

    --container:1200px;

    /* Spacing */

    --space-1:8px;
    --space-2:16px;
    --space-3:24px;
    --space-4:32px;
    --space-5:48px;
    --space-6:64px;
    --space-7:96px;
    --space-8:120px;

}

/* ==========================================================
   03. GLOBAL
========================================================== */

.container{

    width:min(100% - 40px,var(--container));

    margin:auto;

}

.section{

    padding:var(--space-8) 0;

}

.section-heading{

    margin-bottom:70px;

}

.section-heading.center{

    text-align:center;

}

.section-heading.section-between{

    display:flex;

    justify-content:space-between;

    align-items:end;

    gap:40px;

}

.section-heading span{

    display:inline-block;

    color:var(--accent);

    font-size:.82rem;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:16px;

}

.section-heading h2{

    font-family:'Manrope',sans-serif;

    font-size:3rem;

    line-height:1.15;

    font-weight:800;

    color:var(--primary);

    max-width:760px;

}

.section-heading p{

    margin-top:20px;

    max-width:700px;

    color:var(--text-secondary);

}

/* ==========================================================
   04. TYPOGRAPHY
========================================================== */

h1,
h2,
h3,
h4{

    font-family:'Manrope',sans-serif;

    color:var(--primary);

}

h1{

    font-size:4.5rem;

    line-height:1.05;

    font-weight:800;

}

h2{

    font-size:3rem;

}

h3{

    font-size:1.4rem;

}

p{

    color:var(--text-secondary);

    font-size:1.05rem;

}

/* ==========================================================
   05. BUTTONS
========================================================== */

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.primary-btn:hover{

    background:var(--accent);

    color:var(--primary);

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    border:1px solid var(--border);

    background:var(--surface);

    font-weight:600;

    transition:var(--transition);

}

.secondary-btn:hover{

    border-color:var(--accent);

    color:var(--accent);

}

/* ==========================================================
   06. UTILITIES
========================================================== */

.grid{

    display:grid;

}

.flex{

    display:flex;

}

.text-center{

    text-align:center;

}

.hidden{

    display:none;

}

.mt-2{

    margin-top:20px;

}

.mt-4{

    margin-top:40px;

}

.mt-6{

    margin-top:60px;

}

/* ==========================================================
   END OF FOUNDATION
========================================================== */
/* ==========================================================
   07. PRELOADER
========================================================== */

.preloader{
    position:fixed;
    inset:0;
    background:var(--bg-color);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    transition:.4s ease;
}

.loader{
    width:54px;
    height:54px;
    border:4px solid rgba(200,161,74,.20);
    border-top-color:var(--accent);
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================================
   08. HEADER
========================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:var(--transition);

}

.header.scrolled{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(0,0,0,.06);

    box-shadow:0 12px 40px rgba(0,0,0,.05);

}

/* ==========================================================
   09. NAVBAR
========================================================== */

.navbar{

    height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* ==========================================================
   LOGO
========================================================== */

.brand{

    display:flex;

    align-items:center;

}

.logo{

    height:56px;

    width:auto;

    transition:var(--transition);

}

.dark-logo{

    display:none;

}

/* ==========================================================
   MENU
========================================================== */

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    position:relative;

    font-size:.95rem;

    font-weight:600;

    color:var(--text-primary);

    transition:var(--transition);

}

/* underline */

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.35s ease;

}

.nav-menu a:hover{

    color:var(--accent);

}

.nav-menu a:hover::after{

    width:100%;

}

/* ==========================================================
   NAV ACTIONS
========================================================== */

.nav-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

/* ==========================================================
   THEME BUTTON
========================================================== */

.theme-btn{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid var(--border);

    background:var(--surface);

    transition:var(--transition);

}

.theme-btn svg{

    width:20px;

    height:20px;

}

.theme-btn:hover{

    transform:translateY(-3px);

    border-color:var(--accent);

    color:var(--accent);

    box-shadow:var(--shadow-sm);

}

/* ==========================================================
   MOBILE MENU BUTTON
========================================================== */

.menu-btn{

    display:none;

    width:48px;

    height:48px;

    border-radius:50%;

    align-items:center;

    justify-content:center;

    border:1px solid var(--border);

    background:var(--surface);

}

.menu-btn svg{

    width:22px;

    height:22px;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    padding-top:170px;

    padding-bottom:120px;

    overflow:hidden;

    background:var(--bg-color);

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.hero-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--accent);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:22px;

}

.hero-left h1{

    max-width:650px;

    margin-bottom:28px;

}

.hero-left p{

    max-width:560px;

    margin-bottom:42px;

}

.hero-actions{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.hero-highlights span{

    padding:12px 18px;

    border-radius:999px;

    background:var(--surface);

    border:1px solid var(--border);

    font-size:.90rem;

    font-weight:600;

    box-shadow:var(--shadow-sm);

}

/* ==========================================================
   HERO IMAGE
========================================================== */

.hero-right{

    display:flex;

    justify-content:flex-end;

}

.hero-image{

    position:relative;

    max-width:500px;

    width:100%;

}

.hero-image img{

    width:100%;

    border-radius:28px;

    box-shadow:var(--shadow-lg);

}

/* background glow */

.hero-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(200,161,74,.12);

    top:40px;

    left:40px;

    filter:blur(60px);

    z-index:-1;

}

/* ==========================================================
   EXPERIENCE CARD
========================================================== */

.experience-card{

    position:absolute;

    bottom:30px;

    left:-40px;

    background:var(--surface);

    padding:22px;

    width:170px;

    border-radius:20px;

    box-shadow:var(--shadow-md);

    border:1px solid var(--border);

}

.experience-card h2{

    font-size:2.5rem;

    color:var(--accent);

    margin-bottom:8px;

}

.experience-card span{

    display:block;

    color:var(--text-secondary);

    font-size:.9rem;

    line-height:1.5;

}

/* ==========================================================
   10. TRUST METRICS
========================================================== */

.metrics{

    margin-top:-30px;

    position:relative;

    z-index:20;

}

.metrics-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:24px;

}

.metric-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:22px;

    padding:32px 24px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.metric-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:var(--shadow-lg);

}

.metric-label{

    display:block;

    font-size:.78rem;

    text-transform:uppercase;

    letter-spacing:1.5px;

    color:var(--text-secondary);

    margin-bottom:12px;

}

.metric-card h3{

    font-size:2.2rem;

    color:var(--accent);

    margin-bottom:10px;

}

.metric-card p{

    font-size:.92rem;

    line-height:1.6;

}

/* ==========================================================
   11. ABOUT
========================================================== */

.about{

    position:relative;

}

.about-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:90px;

    align-items:center;

}

.about-left{

    position:relative;

}

.about-image{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    background:#f5f5f5;

    box-shadow:var(--shadow-lg);

}

.about-image img{

    width:100%;

    display:block;

}

.about-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(11,18,32,.15),
        transparent 45%
    );

}

/* Decorative Frame */

.about-left::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border:3px solid var(--accent);

    border-radius:24px;

    left:-18px;

    top:-18px;

    z-index:-1;

    opacity:.35;

}

/* ==========================================================
   ABOUT CONTENT
========================================================== */

.about-right h3{

    font-size:2.2rem;

    line-height:1.2;

    margin-bottom:24px;

}

.about-right p{

    margin-bottom:22px;

    max-width:720px;

}

/* ==========================================================
   ABOUT HIGHLIGHTS
========================================================== */

.about-points{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    margin-top:50px;

}

.point{

    padding:28px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:20px;

    transition:var(--transition);

}

.point:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:var(--shadow-md);

}

.point h4{

    font-size:1.15rem;

    margin-bottom:14px;

}

.point p{

    font-size:.95rem;

    margin:0;

}

/* ==========================================================
   SIGNATURE
========================================================== */

.signature{

    margin-top:45px;

}

.signature img{

    width:180px;

    opacity:.92;

}

/* ==========================================================
   SECTION DIVIDER
========================================================== */

.about::after{

    content:"";

    display:block;

    width:140px;

    height:2px;

    margin:90px auto 0;

    background:linear-gradient(
        to right,
        transparent,
        var(--accent),
        transparent
    );

}

/* ==========================================================
   12. EXPERTISE
========================================================== */

.expertise{
    position:relative;
    background:linear-gradient(
        to bottom,
        transparent,
        rgba(200,161,74,.04)
    );
}

.expertise-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.expertise-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:320px;

    padding:36px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.expertise-card:hover{

    transform:translateY(-10px);

    border-color:var(--accent);

    box-shadow:var(--shadow-lg);

}

.expertise-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:0;

    background:var(--accent);

    transition:.45s;

}

.expertise-card:hover::before{

    height:100%;

}

.expertise-number{

    font-size:3rem;

    font-weight:800;

    color:rgba(200,161,74,.18);

    font-family:'Manrope',sans-serif;

    margin-bottom:24px;

}

.expertise-content h3{

    margin-bottom:18px;

    font-size:1.45rem;

}

.expertise-content p{

    margin-bottom:28px;

}

.card-link{

    font-weight:700;

    color:var(--accent);

    transition:var(--transition);

}

.card-link:hover{

    letter-spacing:.6px;

}

.featured-card{

    background:linear-gradient(
        135deg,
        #111827,
        #1F2937
    );

    color:#fff;

}

.featured-card h3{

    color:#fff;

}

.featured-card p{

    color:#d1d5db;

}

/* ==========================================================
   13. JOURNEY
========================================================== */

.timeline{

    position:relative;

    max-width:920px;

    margin:0 auto;

    padding-left:60px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:18px;

    top:0;

    width:3px;

    height:100%;

    background:linear-gradient(

        to bottom,

        var(--accent),

        rgba(200,161,74,.15)

    );

}

.timeline-item{

    position:relative;

    margin-bottom:55px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-item::before{

    content:"";

    position:absolute;

    left:-52px;

    top:18px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--accent);

    border:5px solid var(--surface);

    box-shadow:0 0 0 3px rgba(200,161,74,.25);

}

.timeline-year{

    color:var(--accent);

    font-weight:700;

    margin-bottom:14px;

    letter-spacing:1px;

}

.timeline-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    padding:30px;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.timeline-card:hover{

    transform:translateX(8px);

    border-color:var(--accent);

    box-shadow:var(--shadow-lg);

}

.company{

    display:inline-block;

    font-size:.82rem;

    text-transform:uppercase;

    letter-spacing:1.5px;

    color:var(--accent);

    margin-bottom:12px;

}

.timeline-card h3{

    margin-bottom:14px;

}

/* ==========================================================
   14. INSIGHTS
========================================================== */

.insights-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.insight-card{

    overflow:hidden;

    border-radius:28px;

    background:var(--surface);

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.insight-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.insight-image{

    aspect-ratio:16/10;

    overflow:hidden;

    background:#eef2f7;

}

.insight-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.insight-card:hover img{

    transform:scale(1.08);

}

.insight-body{

    padding:28px;

}

.category{

    display:inline-block;

    margin-bottom:14px;

    font-size:.78rem;

    font-weight:700;

    text-transform:uppercase;

    color:var(--accent);

    letter-spacing:1.4px;

}

.insight-body h3{

    margin-bottom:18px;

    line-height:1.35;

}

.insight-body p{

    margin-bottom:24px;

}

.view-all{

    font-weight:700;

    color:var(--accent);

    transition:var(--transition);

}

.view-all:hover{

    letter-spacing:.5px;

}

/* ==========================================================
   MINI CTA
========================================================== */

.mini-cta{

    padding:80px 0;

}

.mini-cta-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    padding:50px 60px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        #111827,
        #1F2937
    );

    color:#fff;

}

.mini-cta-wrapper h2{

    color:#fff;

    margin-top:10px;

}

.mini-cta-wrapper span{

    color:var(--accent);

    letter-spacing:2px;

    font-size:.8rem;

    font-weight:700;

}

/* ==========================================================
   15. CONTACT CTA
========================================================== */

.contact-cta{

    padding:120px 0;

}

.contact-box{

    max-width:980px;

    margin:0 auto;

    padding:80px 70px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #111827,
        #1F2937
    );

    border-radius:36px;

    color:#fff;

    overflow:hidden;

    position:relative;

}

.contact-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(200,161,74,.08);

    top:-220px;

    right:-180px;

}

.contact-box .section-tag{

    display:inline-block;

    color:var(--accent);

    font-size:.82rem;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:18px;

}

.contact-box h2{

    color:#fff;

    font-size:3rem;

    margin-bottom:24px;

    line-height:1.15;

}

.contact-box p{

    color:#d1d5db;

    max-width:720px;

    margin:0 auto 40px;

}

.contact-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* ==========================================================
   16. FOOTER
========================================================== */

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-logo{

    height:70px;

    width:auto;

    margin-bottom:24px;

}

.footer-brand p{

    max-width:420px;

    color:#94a3b8;

}

.footer-links h4{

    color:#fff;

    margin-bottom:22px;

    font-size:1.15rem;

}

.footer-links ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#94a3b8;

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--accent);

    padding-left:6px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding-top:30px;

    color:#64748b;

    font-size:.92rem;

}

/* ==========================================================
   17. BACK TO TOP
========================================================== */

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.2rem;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:var(--transition);

    box-shadow:var(--shadow-lg);

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    background:var(--accent);

    color:var(--primary);

    transform:translateY(-6px);

}

/* ==========================================================
   18. COMMON HOVER EFFECTS
========================================================== */

.primary-btn,
.secondary-btn,
.card-link,
.view-all,
.footer-links a{

    transition:all .35s ease;

}

.primary-btn:hover{

    box-shadow:
    0 18px 40px rgba(0,0,0,.18);

}

.expertise-card,
.metric-card,
.point,
.timeline-card,
.insight-card{

    will-change:transform;

}

/* ==========================================================
   END PART 5
========================================================== */

/* ==========================================================
   19. SCROLL ANIMATIONS
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-60px);

    transition:.8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(60px);

    transition:.8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

.fade-scale{

    opacity:0;

    transform:scale(.92);

    transition:.8s ease;

}

.fade-scale.show{

    opacity:1;

    transform:scale(1);

}

/* ==========================================================
   20. SECTION SPACING
========================================================== */

section{

    position:relative;

    overflow:hidden;

}

.section{

    padding:120px 0;

}

.section + .section{

    margin-top:0;

}

/* ==========================================================
   21. IMAGE EFFECTS
========================================================== */

.hero-image img,

.about-image img,

.insight-image img{

    transition:.7s ease;

}

.hero-image:hover img,

.about-image:hover img{

    transform:scale(1.03);

}

.insight-card:hover img{

    transform:scale(1.08);

}

/* ==========================================================
   22. CARD EFFECTS
========================================================== */

.metric-card,

.point,

.timeline-card,

.expertise-card,

.insight-card{

    position:relative;

}

.metric-card::after,

.point::after,

.timeline-card::after,

.expertise-card::after,

.insight-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    border:1px solid transparent;

    transition:.35s ease;

    pointer-events:none;

}

.metric-card:hover::after,

.point:hover::after,

.timeline-card:hover::after,

.expertise-card:hover::after,

.insight-card:hover::after{

    border-color:rgba(200,161,74,.35);

}

/* ==========================================================
   23. SELECTION
========================================================== */

::selection{

    background:var(--accent);

    color:#fff;

}

/* ==========================================================
   24. SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:#c8a14a;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b38d3d;

}

/* ==========================================================
   25. UTILITIES
========================================================== */

.w-100{

    width:100%;

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-between{

    justify-content:space-between;

}

.text-white{

    color:#fff;

}

.text-gold{

    color:var(--accent);

}

.shadow{

    box-shadow:var(--shadow-lg);

}

.radius{

    border-radius:28px;

}

/* ==========================================================
   26. DIVIDERS
========================================================== */

.divider{

    width:120px;

    height:2px;

    background:var(--accent);

    margin:70px auto;

    opacity:.35;

}

/* ==========================================================
   27. GLASS CARD
========================================================== */

.glass{

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    background:rgba(255,255,255,.65);

    border:1px solid rgba(255,255,255,.4);

}

/* ==========================================================
   28. PERFORMANCE
========================================================== */

img{

    image-rendering:auto;

}

.hero-image,

.about-image,

.metric-card,

.expertise-card,

.timeline-card,

.insight-card{

    will-change:transform;

}

/* ==========================================================
   29. ACCESSIBILITY
========================================================== */

a:focus,

button:focus{

    outline:2px solid var(--accent);

    outline-offset:3px;

}

/* ==========================================================
   END OF PART 6
========================================================== */
/* ==========================================================
   30. PREMIUM TYPOGRAPHY
========================================================== */

.hero-left h1{
    font-size:clamp(3.5rem,7vw,5.6rem);
    line-height:.95;
    letter-spacing:-2px;
    max-width:700px;
}

.section-heading h2{
    font-size:clamp(2.3rem,5vw,3.6rem);
    letter-spacing:-1px;
}

.hero-left p,
.about-right p,
.timeline-card p,
.insight-body p{
    line-height:1.85;
}

/* ==========================================================
   31. HERO BACKGROUND
========================================================== */

.hero::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-180px;
    top:-120px;
    border-radius:50%;
    background:radial-gradient(
        rgba(200,161,74,.18),
        transparent 70%
    );
    filter:blur(20px);
    z-index:-1;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px,transparent 1px),
        linear-gradient(90deg,rgba(0,0,0,.03) 1px,transparent 1px);
    background-size:40px 40px;
    opacity:.18;
    pointer-events:none;
}

/* ==========================================================
   32. HERO IMAGE POLISH
========================================================== */

.hero-image{
    max-width:560px;
}

.hero-image img{
    border-radius:32px;
}

.experience-card{
    top:40px;
    right:-30px;
    left:auto;
    bottom:auto;
}

/* ==========================================================
   33. METRICS POLISH
========================================================== */

.metric-card{
    backdrop-filter:blur(10px);
}

.metric-card:hover h3{
    transform:scale(1.08);
    transition:.35s;
}

/* ==========================================================
   34. CARD CONSISTENCY
========================================================== */

.metric-card,
.point,
.timeline-card,
.insight-card,
.expertise-card{

    border-radius:24px;

}

.expertise-card,
.timeline-card,
.insight-card{

    overflow:hidden;

}

/* ==========================================================
   35. LINKS
========================================================== */

a{

    transition:.3s ease;

}

.card-link:hover,
.view-all:hover{

    color:var(--primary);

}

/* ==========================================================
   36. FOOTER POLISH
========================================================== */

.footer{

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

}

/* ==========================================================
   37. IMAGE PLACEHOLDER
========================================================== */

.insight-image{

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #eef2f7,
        #f8fafc
    );

}

.insight-image img{

    object-fit:cover;

}

/* ==========================================================
   38. SMOOTH SECTION TRANSITIONS
========================================================== */

.hero,
.about,
.expertise,
.journey,
.insights,
.contact-cta{

    position:relative;

}

.hero + .metrics{

    margin-top:-20px;

}

/* ==========================================================
   39. PRINT
========================================================== */

@media print{

    .header,
    .footer,
    .back-to-top{

        display:none !important;

    }

}

/* ==========================================================
   40. END OF STYLE.CSS
========================================================== */

/* ==========================================================
   MOBILE MENU
========================================================== */

.nav-menu.active{

    display:flex;

    flex-direction:column;

    position:absolute;

    top:88px;

    left:20px;

    right:20px;

    background:var(--surface);

    padding:24px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

    border:1px solid var(--border);

    gap:18px;

}

.nav-menu a.active{

    color:var(--accent);

}

.nav-menu a.active::after{

    width:100%;

}

/* ==========================================================
   HERO — FINAL VISUAL
========================================================== */

.hero{
    min-height:760px;
    display:flex;
    align-items:center;
    padding-top:150px;
    padding-bottom:100px;
    isolation:isolate;
}

.hero-background{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:-2;
    overflow:hidden;
}

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.hero-glow-one{
    width:520px;
    height:520px;
    right:2%;
    top:8%;
    background:rgba(200,161,74,.13);
}

.hero-glow-two{
    width:300px;
    height:300px;
    left:-100px;
    bottom:-100px;
    background:rgba(200,161,74,.07);
}

.hero-grid-pattern{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(
            rgba(15,23,42,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15,23,42,.035) 1px,
            transparent 1px
        );
    background-size:44px 44px;
    mask-image:linear-gradient(
        to right,
        black,
        transparent 80%
    );
    opacity:.35;
}

.hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(480px,.9fr);
    gap:60px;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.hero-label-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 6px rgba(200,161,74,.12);
}

.hero-left h1{
    max-width:720px;
    margin-bottom:30px;
}

.hero-left h1 span{
    display:block;
    color:var(--accent);
}

.hero-left p{
    max-width:590px;
}

.hero-actions{
    align-items:center;
}

.hero-actions a{
    gap:10px;
}

.hero-highlights span{
    transition:all .3s ease;
}

.hero-highlights span:hover{
    transform:translateY(-3px);
    border-color:var(--accent);
}

/* ==========================================
   PORTRAIT
========================================== */

.hero-right{
    position:relative;
    min-height:600px;
    align-items:center;
    justify-content:center;
}

.hero-image{
    position:relative;
    width:min(100%,560px);
    height:620px;
    max-width:none;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    isolation:isolate;
}

.hero-portrait-glow{
    position:absolute;
    width:470px;
    height:470px;
    right:10px;
    bottom:25px;
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(200,161,74,.20) 0%,
        rgba(200,161,74,.08) 42%,
        transparent 72%
    );
    filter:blur(8px);
    z-index:-2;
}

.hero-portrait{
    position:relative;
    width:100%;
    height:100%;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    overflow:visible;
}

.hero-portrait::before{
    content:"";
    position:absolute;
    width:430px;
    height:430px;
    right:20px;
    bottom:35px;
    border:1px solid rgba(200,161,74,.30);
    border-radius:50%;
}

.hero-portrait img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center bottom;
    border-radius:0;
    box-shadow:none;
    position:relative;
    z-index:2;
}

.hero-growth{
    position:absolute;
    right:20px;
    top:90px;
    width:115px;
    height:90px;
    z-index:3;
    transform:rotate(-8deg);
}

.growth-line{
    position:absolute;
    left:5px;
    bottom:8px;
    width:90px;
    height:50px;
    border-top:2px solid var(--accent);
    border-right:2px solid var(--accent);
    border-radius:0 70px 0 0;
    transform:skewY(-15deg);
}

.growth-arrow{
    position:absolute;
    right:0;
    top:0;
    font-size:2rem;
    font-weight:700;
    color:var(--accent);
}

.experience-card{
    left:auto;
    right:-5px;
    bottom:70px;
    top:auto;
    width:175px;
    padding:24px;
    z-index:5;
    border-radius:22px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(200,161,74,.25);
}

.experience-label{
    display:block;
    color:var(--accent);
    font-size:.68rem;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:5px;
}

.experience-card h2{
    font-size:3rem;
    line-height:1;
    margin-bottom:6px;
    color:var(--accent);
}

.experience-text{
    display:block;
    color:var(--text-secondary);
    font-size:.82rem;
    line-height:1.4;
}

/* ==========================================================
   HERO V2
   Premium Personal Brand Hero
========================================================== */

.hero-v2{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    padding:135px 0 70px;
    overflow:hidden;
    isolation:isolate;
}


/* ==========================================================
   BACKGROUND
========================================================== */

.hero-v2-bg{
    position:absolute;
    inset:0;
    z-index:-2;
    pointer-events:none;
    overflow:hidden;
}

.hero-v2-glow{
    position:absolute;
    width:620px;
    height:620px;
    right:8%;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.20) 0%,
            rgba(212,175,55,.10) 32%,
            rgba(212,175,55,.035) 52%,
            transparent 72%
        );

    filter:blur(18px);
}

.hero-v2-dots{
    position:absolute;
    width:190px;
    height:150px;
    right:8%;
    top:180px;

    background-image:
        radial-gradient(
            rgba(200,161,74,.55) 1.5px,
            transparent 1.5px
        );

    background-size:32px 32px;

    opacity:.65;

    mask-image:
        radial-gradient(
            ellipse,
            black 20%,
            transparent 75%
        );
}


/* ==========================================================
   GRID
========================================================== */

.hero-v2-grid{
    position:relative;

    display:grid;

    grid-template-columns:
        minmax(0,1.02fr)
        minmax(500px,.98fr);

    align-items:center;

    gap:30px;

    min-height:560px;
}


/* ==========================================================
   CONTENT
========================================================== */

.hero-v2-content{
    position:relative;
    z-index:5;
    padding-bottom:25px;
}

.hero-v2-label{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-bottom:22px;

    color:var(--accent);

    font-size:.78rem;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;
}

.hero-v2-label-dot{
    width:7px;
    height:7px;

    border-radius:50%;

    background:var(--accent);

    box-shadow:
        0 0 0 5px rgba(200,161,74,.12);
}


/* ==========================================================
   HEADING
========================================================== */

.hero-v2-title{
    max-width:700px;

    margin:0 0 24px;

    font-size:
        clamp(3.6rem,5.2vw,5.8rem);

    line-height:.98;

    letter-spacing:-.055em;

    font-weight:800;

    color:var(--text-primary);
}

.hero-v2-title span{
    display:inline;
    color:var(--text-primary);
}

.hero-v2-title span:first-of-type{
    color:var(--text-primary);
}

.hero-v2-period{
    color:var(--accent) !important;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.hero-v2-description{
    max-width:610px;

    margin:0 0 28px;

    font-size:1.12rem;

    line-height:1.75;

    color:var(--text-secondary);
}


/* ==========================================================
   ACTIONS
========================================================== */

.hero-v2-actions{
    display:flex;
    align-items:center;
    gap:16px;

    margin-bottom:25px;
}

.hero-v2-primary,
.hero-v2-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    min-height:52px;

    padding:7px 9px 7px 24px;

    border-radius:999px;

    text-decoration:none;

    font-size:.95rem;
    font-weight:700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background-color .3s ease,
        border-color .3s ease;
}

.hero-v2-primary{
    background:var(--accent);
    color:#111827;

    box-shadow:
        0 12px 30px rgba(200,161,74,.20);
}

.hero-v2-primary:hover{
    transform:translateY(-3px);

    box-shadow:
        0 18px 38px rgba(200,161,74,.28);
}

.hero-v2-secondary{
    background:var(--surface);

    color:var(--text-primary);

    border:1px solid var(--border);
}

.hero-v2-secondary:hover{
    transform:translateY(-3px);

    border-color:var(--accent);
}

.hero-v2-arrow{
    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:1.15rem;

    border:1px solid currentColor;
}


/* ==========================================================
   HIGHLIGHTS
========================================================== */

.hero-v2-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-v2-highlights span{
    display:inline-flex;
    align-items:center;
    gap:9px;

    padding:10px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.70);

    border:1px solid var(--border);

    color:var(--text-primary);

    font-size:.78rem;
    font-weight:600;

    backdrop-filter:blur(12px);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.hero-v2-highlights span:hover{
    transform:translateY(-2px);
    border-color:var(--accent);
}

.hero-v2-highlights i{
    width:6px;
    height:6px;

    flex:none;

    border-radius:50%;

    background:var(--accent);
}


/* ==========================================================
   VISUAL
========================================================== */

.hero-v2-visual{
    position:relative;

    min-height:590px;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    z-index:2;
}

.hero-v2-portrait-wrap{
    position:relative;

    width:100%;
    height:590px;

    display:flex;
    align-items:flex-end;
    justify-content:center;
}


/* ==========================================================
   PORTRAIT BACKGROUND RING
========================================================== */

.hero-v2-ring{
    position:absolute;

    width:470px;
    height:470px;

    right:30px;
    bottom:25px;

    border:1px solid rgba(200,161,74,.35);

    border-radius:50%;

    z-index:-1;
}

.hero-v2-glow-back{
    position:absolute;

    width:470px;
    height:470px;

    right:30px;
    bottom:25px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.25),
            rgba(212,175,55,.08) 45%,
            transparent 72%
        );

    filter:blur(8px);

    z-index:-2;
}


/* ==========================================================
   PORTRAIT
========================================================== */

.hero-v2-portrait{
    position:absolute;

    right:-5px;
    bottom:0;

    width:570px;
    height:620px;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    z-index:2;
}

.hero-v2-portrait img{
    width:100%;
    height:100%;

    object-fit:contain;
    object-position:center bottom;

    border-radius:0;

    box-shadow:none;

    display:block;
}


/* ==========================================================
   GROWTH ARROW
========================================================== */

.hero-v2-growth{
    position:absolute;

    right:5px;
    top:120px;

    width:125px;
    height:100px;

    z-index:4;

    transform:rotate(-8deg);
}

.hero-v2-growth-line{
    position:absolute;

    left:0;
    bottom:10px;

    width:105px;
    height:65px;

    border-top:2px solid var(--accent);
    border-right:2px solid var(--accent);

    border-radius:0 90px 0 0;

    transform:skewY(-14deg);

    opacity:.8;
}

.hero-v2-growth-arrow{
    position:absolute;

    top:-8px;
    right:0;

    color:var(--accent);

    font-size:2.5rem;
    font-weight:400;
}


/* ==========================================================
   EXPERIENCE CARD
========================================================== */

.hero-v2-experience{
    position:absolute;

    right:-8px;
    bottom:78px;

    width:148px;
    min-height:148px;

    padding:22px;

    display:flex;
    flex-direction:column;

    justify-content:center;

    border-radius:22px;

    background:rgba(255,255,255,.94);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:
        0 20px 45px rgba(15,23,42,.10);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    z-index:6;
}

.hero-v2-experience-label{
    margin-bottom:6px;

    color:var(--text-secondary);

    font-size:.62rem;
    font-weight:800;

    letter-spacing:1.5px;
}

.hero-v2-experience strong{
    display:block;

    margin-bottom:5px;

    color:var(--accent);

    font-size:3rem;

    line-height:1;
}

.hero-v2-experience-text{
    color:var(--text-primary);

    font-size:.78rem;
    line-height:1.45;
}

.hero-v2-experience-line{
    width:30px;
    height:2px;

    margin-top:12px;

    background:var(--accent);
}


/* ==========================================================
   HERO ANIMATION SUPPORT
========================================================== */

#heroTitle,
#heroText,
#heroButtons,
.hero-v2-highlights,
.hero-v2-portrait-wrap{
    will-change:transform,opacity;
}

/* ==========================================================
   HERO V2 — PORTRAIT FINAL SCALE
========================================================== */

.hero-v2-visual{
    min-height:650px;
}

.hero-v2-portrait-wrap{
    height:650px;
}

.hero-v2-portrait{
    width:650px;
    height:690px;
    right:-55px;
    bottom:-5px;
}

.hero-v2-ring,
.hero-v2-glow-back{
    width:510px;
    height:510px;
    right:35px;
    bottom:30px;
}

.hero-v2-experience{
    right:-20px;
    bottom:85px;
}


/* Desktop — keep portrait dominant */

@media (min-width:1201px){

    .hero-v2-grid{
        grid-template-columns:
            minmax(0,1fr)
            minmax(560px,.95fr);

        gap:0;
    }

    .hero-v2-portrait{
        width:690px;
        height:720px;
        right:-85px;
    }

    .hero-v2-visual{
        min-height:680px;
    }

    .hero-v2-portrait-wrap{
        height:680px;
    }

}


/* Tablet */

@media (max-width:1200px){

    .hero-v2-visual{
        min-height:590px;
    }

    .hero-v2-portrait-wrap{
        height:590px;
    }

    .hero-v2-portrait{
        width:570px;
        height:610px;
        right:-40px;
    }

}


/* Mobile */

@media (max-width:992px){

    .hero-v2-visual{
        min-height:560px;
    }

    .hero-v2-portrait-wrap{
        height:560px;
    }

    .hero-v2-portrait{
        width:570px;
        height:580px;
        right:50%;
        transform:translateX(50%);
    }

    .hero-v2-experience{
        right:5%;
        bottom:55px;
    }

}


@media (max-width:576px){

    .hero-v2-visual{
        min-height:450px;
    }

    .hero-v2-portrait-wrap{
        height:450px;
    }

    .hero-v2-portrait{
        width:450px;
        height:460px;
        right:50%;
    }

    .hero-v2-ring,
    .hero-v2-glow-back{
        width:330px;
        height:330px;
    }

}

/* ==========================================================
   ABOUT V2
   Strategy / Practical Thinking
========================================================== */

.about-v2{
    position:relative;
    padding:120px 0 135px;
    overflow:hidden;
    isolation:isolate;
}

.about-v2-background{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:-2;
}

.about-v2-glow{
    position:absolute;

    width:520px;
    height:520px;

    left:-220px;
    top:120px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(200,161,74,.10),
            transparent 70%
        );

    filter:blur(30px);
}


/* ==========================================================
   HEADING
========================================================== */

.about-v2-heading{
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        300px;

    gap:70px;

    align-items:end;

    margin-bottom:80px;

    padding-bottom:35px;

    border-bottom:1px solid var(--border);
}

.about-v2-heading-left{
    max-width:750px;
}

.about-v2-label,
.about-v2-content-label{
    display:block;

    margin-bottom:14px;

    color:var(--accent);

    font-size:.70rem;
    font-weight:800;

    letter-spacing:2.5px;

    text-transform:uppercase;
}

.about-v2-heading h2{
    max-width:700px;

    margin:0;

    font-size:
        clamp(3rem,4.5vw,5rem);

    line-height:.98;

    letter-spacing:-.055em;

    color:var(--text-primary);
}

.about-v2-heading h2 span{
    color:var(--accent);
}

.about-v2-heading-right{
    display:flex;
    gap:20px;

    align-items:flex-start;
}

.about-v2-number{
    color:var(--accent);

    font-size:.8rem;
    font-weight:800;

    letter-spacing:2px;
}

.about-v2-heading-right p{
    margin:0;

    color:var(--text-secondary);

    font-size:.88rem;
    line-height:1.7;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.about-v2-grid{
    display:grid;

    grid-template-columns:
        minmax(390px,.85fr)
        minmax(0,1.15fr);

    gap:90px;

    align-items:center;
}


/* ==========================================================
   VISUAL
========================================================== */

.about-v2-visual{
    position:relative;

    min-height:570px;

    display:flex;
    flex-direction:column;

    justify-content:center;
}

.about-v2-image-wrap{
    position:relative;

    width:100%;
    max-width:480px;

    height:520px;

    display:flex;
    align-items:flex-end;
    justify-content:center;
}

.about-v2-image-glow{
    position:absolute;

    width:390px;
    height:390px;

    left:50%;
    bottom:25px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(200,161,74,.18),
            rgba(200,161,74,.06) 48%,
            transparent 72%
        );

    filter:blur(8px);

    z-index:-2;
}

.about-v2-image-ring{
    position:absolute;

    width:410px;
    height:410px;

    left:50%;
    bottom:35px;

    transform:translateX(-50%);

    border:1px solid rgba(200,161,74,.28);

    border-radius:50%;

    z-index:-1;
}

.about-v2-image{
    position:relative;

    width:420px;
    height:510px;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    z-index:2;
}

.about-v2-image img{
    width:100%;
    height:100%;

    object-fit:contain;
    object-position:center bottom;

    border-radius:0;

    box-shadow:none;

    display:block;
}


/* ==========================================================
   EXPERIENCE MARKER
========================================================== */

.about-v2-marker{
    position:absolute;

    right:0;
    bottom:85px;

    width:135px;
    min-height:125px;

    padding:20px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    border-radius:20px;

    background:rgba(255,255,255,.92);

    border:1px solid var(--border);

    box-shadow:
        0 18px 45px rgba(15,23,42,.09);

    backdrop-filter:blur(15px);

    z-index:5;
}

.about-v2-marker span{
    display:block;

    color:var(--accent);

    font-size:2.5rem;
    font-weight:800;

    line-height:1;

    margin-bottom:7px;
}

.about-v2-marker small{
    color:var(--text-secondary);

    font-size:.72rem;

    line-height:1.4;
}


/* ==========================================================
   CAPTION
========================================================== */

.about-v2-caption{
    display:flex;
    align-items:center;

    gap:15px;

    margin-top:20px;

    padding-left:25px;
}

.about-v2-caption > span{
    width:42px;
    height:1px;

    background:var(--accent);
}

.about-v2-caption p{
    margin:0;

    color:var(--text-secondary);

    font-size:.68rem;
    line-height:1.5;

    text-transform:uppercase;

    letter-spacing:1px;
}


/* ==========================================================
   CONTENT
========================================================== */

.about-v2-content{
    max-width:680px;
}

.about-v2-content h3{
    max-width:650px;

    margin:0 0 25px;

    font-size:
        clamp(2rem,3vw,3.1rem);

    line-height:1.08;

    letter-spacing:-.035em;

    color:var(--text-primary);
}

.about-v2-content p{
    max-width:650px;

    margin:0 0 17px;

    color:var(--text-secondary);

    font-size:.94rem;

    line-height:1.8;
}

.about-v2-content .about-v2-lead{
    color:var(--text-primary);

    font-size:1.05rem;

    line-height:1.75;

    margin-bottom:20px;
}


/* ==========================================================
   STRATEGIC POINTS
========================================================== */

.about-v2-points{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:12px;

    margin-top:35px;
}

.about-v2-point{
    padding:20px;

    border-radius:17px;

    background:var(--surface);

    border:1px solid var(--border);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.about-v2-point:hover{
    transform:translateY(-4px);

    border-color:rgba(200,161,74,.5);

    box-shadow:
        0 15px 35px rgba(15,23,42,.06);
}

.about-v2-point-number{
    margin-bottom:18px;

    color:var(--accent);

    font-size:.68rem;

    font-weight:800;

    letter-spacing:1.5px;
}

.about-v2-point h4{
    margin:0 0 9px;

    color:var(--text-primary);

    font-size:.88rem;
}

.about-v2-point p{
    margin:0;

    font-size:.73rem;

    line-height:1.65;
}


/* ==========================================================
   SIGNATURE
========================================================== */

.about-v2-footer{
    display:flex;

    align-items:center;

    gap:15px;

    margin-top:38px;

    padding-top:25px;

    border-top:1px solid var(--border);
}

.about-v2-signature{
    width:120px;
    height:45px;
}

.about-v2-signature img{
    width:100%;
    height:100%;

    object-fit:contain;
    object-position:left center;
}

.about-v2-footer > span{
    color:var(--text-secondary);

    font-size:.68rem;

    letter-spacing:1px;

    text-transform:uppercase;
}


/* ==========================================================
   DARK SUPPORT
========================================================== */

html[data-theme="dark"] .about-v2-marker{
    background:rgba(17,24,39,.90);

    border-color:#263247;

    box-shadow:
        0 20px 45px rgba(0,0,0,.28);
}

html[data-theme="dark"] .about-v2-point{
    background:rgba(15,23,42,.65);
}

html[data-theme="dark"] .about-v2-point:hover{
    border-color:rgba(212,175,55,.45);
}

/* ==========================================================
   EXPERTISE V2
========================================================== */

.expertise-v2{
    position:relative;
    padding:125px 0 120px;
    overflow:hidden;
}


/* ==========================================================
   HEADER
========================================================== */

.expertise-v2-header{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:70px;
    align-items:end;

    margin-bottom:60px;
}

.expertise-v2-heading{
    max-width:760px;
}

.expertise-v2-label{
    display:block;

    margin-bottom:15px;

    color:var(--accent);

    font-size:.70rem;
    font-weight:800;

    letter-spacing:2.5px;
    text-transform:uppercase;
}

.expertise-v2-heading h2{
    margin:0;

    font-size:clamp(2.8rem,4.2vw,4.6rem);

    line-height:1;

    letter-spacing:-.055em;

    color:var(--text-primary);
}

.expertise-v2-heading h2 span{
    display:block;
    color:var(--accent);
}

.expertise-v2-intro{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.expertise-v2-index{
    color:var(--accent);

    font-size:.72rem;
    font-weight:800;

    letter-spacing:2px;
}

.expertise-v2-intro p{
    margin:0;

    color:var(--text-secondary);

    font-size:.86rem;
    line-height:1.7;
}


/* ==========================================================
   GRID
========================================================== */

.expertise-v2-grid{
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:15px;
}


/* ==========================================================
   CARD
========================================================== */

.expertise-v2-card{
    position:relative;

    min-height:310px;

    padding:28px;

    display:flex;
    flex-direction:column;

    justify-content:space-between;

    border:1px solid var(--border);

    border-radius:20px;

    background:var(--surface);

    overflow:hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.expertise-v2-card:hover{
    transform:translateY(-7px);

    border-color:rgba(200,161,74,.50);

    box-shadow:
        0 22px 50px rgba(15,23,42,.08);
}


/* ==========================================================
   CARD TOP
========================================================== */

.expertise-v2-top{
    display:flex;

    align-items:center;
    justify-content:space-between;
}

.expertise-v2-number{
    color:var(--accent);

    font-size:.70rem;
    font-weight:800;

    letter-spacing:2px;
}

.expertise-v2-symbol{
    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid var(--border);

    border-radius:50%;

    color:var(--text-secondary);

    font-size:1rem;

    transition:
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.expertise-v2-card:hover .expertise-v2-symbol{
    color:var(--accent);

    border-color:var(--accent);

    transform:rotate(12deg);
}


/* ==========================================================
   CONTENT
========================================================== */

.expertise-v2-content{
    margin-top:35px;
}

.expertise-v2-content h3{
    margin:0 0 15px;

    color:var(--text-primary);

    font-size:1.25rem;

    line-height:1.2;

    letter-spacing:-.02em;
}

.expertise-v2-content p{
    max-width:330px;

    margin:0;

    color:var(--text-secondary);

    font-size:.80rem;

    line-height:1.75;
}


/* ==========================================================
   LINK
========================================================== */

.expertise-v2-link{
    display:inline-flex;

    align-items:center;

    gap:10px;

    width:max-content;

    margin-top:30px;

    color:var(--text-primary);

    font-size:.72rem;
    font-weight:700;

    text-decoration:none;
}

.expertise-v2-link span{
    color:var(--accent);

    transition:transform .3s ease;
}

.expertise-v2-link:hover span{
    transform:translateX(5px);
}


/* ==========================================================
   FEATURED CARD
========================================================== */

.expertise-v2-featured{
    background:#111827;

    border-color:#111827;

    color:#fff;
}

.expertise-v2-featured:hover{
    border-color:var(--accent);

    box-shadow:
        0 25px 55px rgba(15,23,42,.18);
}

.expertise-v2-featured .expertise-v2-content h3{
    color:#fff;
}

.expertise-v2-featured .expertise-v2-content p{
    color:#AAB4C5;
}

.expertise-v2-featured .expertise-v2-symbol{
    color:var(--accent);

    border-color:rgba(200,161,74,.35);
}

.expertise-v2-featured .expertise-v2-link{
    color:#fff;
}

.expertise-v2-featured-label{
    display:block;

    margin-bottom:10px;

    color:var(--accent);

    font-size:.60rem;
    font-weight:800;

    letter-spacing:1.8px;
}

.expertise-v2-featured-glow{
    position:absolute;

    width:250px;
    height:250px;

    right:-100px;
    bottom:-110px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.18),
            transparent 70%
        );

    filter:blur(20px);

    pointer-events:none;
}


/* ==========================================================
   GRID POSITIONING
========================================================== */

/*
   Desktop:
   01  02  03
   04  05 FEATURED
*/

.expertise-v2-card:nth-child(4){
    grid-column:span 1;
}

.expertise-v2-card:nth-child(5){
    grid-column:span 2;
}


/* ==========================================================
   FOOTER STATEMENT
========================================================== */

.expertise-v2-footer{
    display:flex;

    align-items:center;

    gap:20px;

    margin-top:35px;
}

.expertise-v2-footer-line{
    width:55px;
    height:1px;

    flex:none;

    background:var(--accent);
}

.expertise-v2-footer p{
    margin:0;

    color:var(--text-secondary);

    font-size:.75rem;
}

.expertise-v2-footer a{
    margin-left:auto;

    color:var(--text-primary);

    font-size:.72rem;
    font-weight:700;

    text-decoration:none;
}

.expertise-v2-footer a:hover{
    color:var(--accent);
}

.expertise-v2-footer{
    margin-top:45px;
    padding-top:10px;
}

.expertise-v2-footer p{
    font-size:.86rem;
    line-height:1.6;
    color:var(--text-secondary);
}

.expertise-v2-footer a{
    font-size:.78rem;
    letter-spacing:.02em;
    white-space:nowrap;
}

@media (max-width:576px){

    .expertise-v2-footer{
        align-items:flex-start;
    }

    .expertise-v2-footer p{
        font-size:.78rem;
    }

}

/* ==========================================================
   JOURNEY V2
========================================================== */

.journey-v2{
    position:relative;
    padding:125px 0 120px;
    overflow:hidden;
}


/* ==========================================================
   HEADER
========================================================== */

.journey-v2-header{
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        320px;

    gap:70px;

    align-items:end;

    margin-bottom:75px;
}

.journey-v2-heading{
    max-width:760px;
}

.journey-v2-label{
    display:block;

    margin-bottom:15px;

    color:var(--accent);

    font-size:.70rem;
    font-weight:800;

    letter-spacing:2.5px;

    text-transform:uppercase;
}

.journey-v2-heading h2{
    margin:0;

    font-size:
        clamp(2.8rem,4.2vw,4.6rem);

    line-height:1;

    letter-spacing:-.055em;

    color:var(--text-primary);
}

.journey-v2-heading h2 span{
    display:block;

    color:var(--accent);
}

.journey-v2-intro{
    display:flex;

    gap:18px;

    align-items:flex-start;
}

.journey-v2-index{
    color:var(--accent);

    font-size:.72rem;
    font-weight:800;

    letter-spacing:2px;
}

.journey-v2-intro p{
    margin:0;

    color:var(--text-secondary);

    font-size:.86rem;

    line-height:1.7;
}


/* ==========================================================
   TIMELINE
========================================================== */

.journey-v2-timeline{
    position:relative;

    width:min(900px,100%);

    margin:0 auto;
}

.journey-v2-timeline::before{
    content:"";

    position:absolute;

    top:0;
    bottom:0;

    left:104px;

    width:1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(200,161,74,.45) 5%,
            rgba(200,161,74,.45) 95%,
            transparent
        );
}


/* ==========================================================
   ITEM
========================================================== */

.journey-v2-item{
    position:relative;

    display:grid;

    grid-template-columns:
        105px
        1fr;

    column-gap:35px;

    padding-bottom:32px;
}

.journey-v2-item:last-child{
    padding-bottom:0;
}


/* ==========================================================
   MARKER
========================================================== */

.journey-v2-marker{
    position:absolute;

    left:99px;
    top:22px;

    width:11px;
    height:11px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid var(--accent);

    border-radius:50%;

    background:var(--background);

    z-index:3;
}

.journey-v2-marker span{
    width:4px;
    height:4px;

    border-radius:50%;

    background:var(--accent);
}


/* ==========================================================
   YEAR
========================================================== */

.journey-v2-year{
    padding-top:18px;

    color:var(--accent);

    font-size:.68rem;

    font-weight:800;

    letter-spacing:1.5px;

    text-align:right;
}


/* ==========================================================
   CARD
========================================================== */

.journey-v2-card{
    position:relative;

    padding:27px 30px;

    border-radius:18px;

    background:var(--surface);

    border:1px solid var(--border);

    box-shadow:
        0 8px 25px rgba(15,23,42,.035);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.journey-v2-card:hover{
    transform:translateX(5px);

    border-color:rgba(200,161,74,.42);

    box-shadow:
        0 18px 40px rgba(15,23,42,.07);
}


/* ==========================================================
   CARD TOP
========================================================== */

.journey-v2-card-top{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:15px;

    margin-bottom:9px;
}

.journey-v2-company{
    color:var(--accent);

    font-size:.63rem;

    font-weight:800;

    letter-spacing:1.4px;

    text-transform:uppercase;
}

.journey-v2-status{
    padding:5px 9px;

    border-radius:999px;

    background:rgba(200,161,74,.10);

    color:var(--accent);

    font-size:.55rem;

    font-weight:800;

    letter-spacing:1px;
}

.journey-v2-card h3{
    margin:0 0 10px;

    color:var(--text-primary);

    font-size:1.12rem;

    line-height:1.25;

    letter-spacing:-.02em;
}

.journey-v2-card > p{
    max-width:690px;

    margin:0;

    color:var(--text-secondary);

    font-size:.78rem;

    line-height:1.7;
}


/* ==========================================================
   SCOPE TAGS
========================================================== */

.journey-v2-scope{
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-top:18px;
}

.journey-v2-scope span{
    padding:6px 9px;

    border-radius:999px;

    background:var(--background);

    border:1px solid var(--border);

    color:var(--text-secondary);

    font-size:.58rem;

    font-weight:600;
}


/* ==========================================================
   CURRENT ITEM
========================================================== */

.journey-v2-item.current .journey-v2-card{
    border-color:rgba(200,161,74,.42);

    box-shadow:
        0 18px 45px rgba(200,161,74,.07);
}

.journey-v2-item.current .journey-v2-marker{
    width:15px;
    height:15px;

    left:97px;

    box-shadow:
        0 0 0 5px rgba(200,161,74,.10);
}


/* ==========================================================
   FOOTER
========================================================== */

.journey-v2-footer{
    width:min(900px,100%);

    margin:50px auto 0;

    padding:25px 30px;

    display:flex;

    align-items:center;

    gap:25px;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);
}

.journey-v2-footer-number{
    color:var(--accent);

    font-size:2.5rem;

    font-weight:800;

    line-height:1;
}

.journey-v2-footer strong{
    display:block;

    margin-bottom:5px;

    color:var(--text-primary);

    font-size:.92rem;
}

.journey-v2-footer p{
    margin:0;

    color:var(--text-secondary);

    font-size:.73rem;

    line-height:1.6;
}


/* ==========================================================
   DARK MODE
========================================================== */

html[data-theme="dark"] .journey-v2-card{
    background:rgba(15,23,42,.70);

    border-color:#263247;
}

html[data-theme="dark"] .journey-v2-card:hover{
    border-color:rgba(212,175,55,.40);
}

html[data-theme="dark"] .journey-v2-scope span{
    background:#0B1220;

    border-color:#263247;
}

html[data-theme="dark"] .journey-v2-marker{
    background:#080E1C;
}

/* ==========================================================
   INSIGHTS V2
========================================================== */

.insights-v2{
    position:relative;
    padding:125px 0 120px;
    overflow:hidden;
}


/* ==========================================================
   HEADER
========================================================== */

.insights-v2-header{
    display:flex;

    align-items:flex-end;
    justify-content:space-between;

    gap:40px;

    margin-bottom:55px;
}

.insights-v2-heading{
    max-width:760px;
}

.insights-v2-label{
    display:block;

    margin-bottom:15px;

    color:var(--accent);

    font-size:.70rem;
    font-weight:800;

    letter-spacing:2.5px;

    text-transform:uppercase;
}

.insights-v2-heading h2{
    margin:0;

    color:var(--text-primary);

    font-size:
        clamp(2.8rem,4.2vw,4.6rem);

    line-height:1;

    letter-spacing:-.055em;
}

.insights-v2-heading h2 span{
    display:block;

    color:var(--accent);
}

.insights-v2-header-right{
    display:flex;

    align-items:center;

    gap:30px;
}

.insights-v2-index{
    color:var(--accent);

    font-size:.70rem;
    font-weight:800;

    letter-spacing:2px;
}

.insights-v2-view{
    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--text-primary);

    font-size:.72rem;
    font-weight:700;

    text-decoration:none;

    white-space:nowrap;
}

.insights-v2-view span{
    color:var(--accent);

    transition:transform .3s ease;
}

.insights-v2-view:hover span{
    transform:translateX(5px);
}


/* ==========================================================
   GRID
========================================================== */

.insights-v2-grid{
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:16px;
}


/* ==========================================================
   CARD
========================================================== */

.insights-v2-card{
    position:relative;

    display:flex;
    flex-direction:column;

    min-height:500px;

    overflow:hidden;

    border:1px solid var(--border);

    border-radius:20px;

    background:var(--surface);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.insights-v2-card:hover{
    transform:translateY(-7px);

    border-color:rgba(200,161,74,.42);

    box-shadow:
        0 22px 50px rgba(15,23,42,.08);
}


/* ==========================================================
   IMAGE
========================================================== */

.insights-v2-image{
    position:relative;

    display:block;

    height:230px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            var(--surface-soft),
            var(--surface)
        );
}

.insights-v2-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .55s ease,
        filter .4s ease;
}

.insights-v2-card:hover .insights-v2-image img{
    transform:scale(1.045);
}

.insights-v2-image-arrow{
    position:absolute;

    top:18px;
    right:18px;

    width:38px;
    height:38px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.35);

    border-radius:50%;

    background:rgba(8,14,28,.72);

    color:#fff;

    font-size:.9rem;

    backdrop-filter:blur(8px);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.insights-v2-card:hover .insights-v2-image-arrow{
    background:var(--accent);

    color:#111;

    transform:rotate(8deg);
}


/* ==========================================================
   BODY
========================================================== */

.insights-v2-body{
    flex:1;

    display:flex;
    flex-direction:column;

    padding:27px 27px 25px;
}

.insights-v2-meta{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:15px;

    margin-bottom:17px;
}

.insights-v2-meta span:first-child{
    color:var(--accent);

    font-size:.60rem;

    font-weight:800;

    letter-spacing:1.5px;
}

.insights-v2-meta span:last-child{
    color:var(--text-muted);

    font-size:.62rem;

    font-weight:700;
}

.insights-v2-body h3{
    margin:0 0 15px;

    color:var(--text-primary);

    font-size:1.25rem;

    line-height:1.28;

    letter-spacing:-.025em;
}

.insights-v2-body p{
    margin:0;

    color:var(--text-secondary);

    font-size:.78rem;

    line-height:1.75;
}

.insights-v2-link{
    display:inline-flex;

    align-items:center;

    gap:10px;

    width:max-content;

    margin-top:auto;
    padding-top:25px;

    color:var(--text-primary);

    font-size:.70rem;

    font-weight:700;

    text-decoration:none;
}

.insights-v2-link span{
    color:var(--accent);

    transition:transform .3s ease;
}

.insights-v2-link:hover span{
    transform:translateX(5px);
}


/* ==========================================================
   FEATURED ARTICLE
========================================================== */

.insights-v2-card.featured{
    border-color:rgba(200,161,74,.28);
}

.insights-v2-card.featured .insights-v2-body{
    background:
        linear-gradient(
            180deg,
            rgba(200,161,74,.035),
            transparent
        );
}


/* ==========================================================
   FOOTER
========================================================== */

.insights-v2-footer{
    display:flex;

    align-items:center;

    gap:20px;

    margin-top:40px;
}

.insights-v2-footer-line{
    width:55px;
    height:1px;

    flex:none;

    background:var(--accent);
}

.insights-v2-footer p{
    margin:0;

    color:var(--text-secondary);

    font-size:.76rem;

    line-height:1.6;
}

.insights-v2-footer a{
    margin-left:auto;

    color:var(--text-primary);

    font-size:.72rem;
    font-weight:700;

    text-decoration:none;

    white-space:nowrap;
}

.insights-v2-footer a:hover{
    color:var(--accent);
}


/* ==========================================================
   DARK MODE
========================================================== */

html[data-theme="dark"] .insights-v2-card{
    background:#0F172A;

    border-color:#263247;
}

html[data-theme="dark"] .insights-v2-card:hover{
    border-color:rgba(212,175,55,.42);

    box-shadow:
        0 22px 50px rgba(0,0,0,.20);
}

html[data-theme="dark"] .insights-v2-card.featured{
    border-color:rgba(212,175,55,.32);
}

html[data-theme="dark"] .insights-v2-image{
    background:#111827;
}

/* ==========================================================
   MINI CTA V2
========================================================== */

.mini-cta-v2{
    position:relative;

    padding:30px 0;
}

.mini-cta-v2-wrapper{
    position:relative;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:40px;

    padding:35px 42px;

    overflow:hidden;

    border-radius:18px;

    background:#111827;

    border:1px solid #202B3E;

    box-shadow:
        0 18px 45px rgba(15,23,42,.08);
}

.mini-cta-v2-wrapper::after{
    content:"";

    position:absolute;

    width:260px;
    height:260px;

    right:-100px;
    top:-150px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.14),
            transparent 70%
        );

    pointer-events:none;
}

.mini-cta-v2-content{
    position:relative;

    z-index:1;
}

.mini-cta-v2-label{
    display:block;

    margin-bottom:9px;

    color:var(--accent);

    font-size:.58rem;
    font-weight:800;

    letter-spacing:2px;
}

.mini-cta-v2-content h2{
    margin:0;

    color:#fff;

    font-size:1.35rem;

    line-height:1.35;

    letter-spacing:-.025em;
}

.mini-cta-v2-content h2 span{
    display:block;
}

.mini-cta-v2-button{
    position:relative;

    z-index:1;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    flex:none;

    min-width:125px;

    padding:13px 18px;

    border-radius:999px;

    background:#0B1220;

    border:1px solid #263247;

    color:#fff;

    font-size:.70rem;
    font-weight:700;

    text-decoration:none;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.mini-cta-v2-button span{
    color:var(--accent);

    transition:transform .3s ease;
}

.mini-cta-v2-button:hover{
    background:var(--accent);

    color:#111;
    
    border-color:var(--accent);
}

.mini-cta-v2-button:hover span{
    color:#111;

    transform:translateX(4px);
}


/* ==========================================================
   CONTACT CTA V2
========================================================== */

.contact-cta-v2{
    padding:70px 0 120px;
}

.contact-v2-box{
    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            #101827 0%,
            #0C1321 55%,
            #172033 100%
        );

    border:1px solid #263247;

    box-shadow:
        0 30px 70px rgba(15,23,42,.12);
}

.contact-v2-glow{
    position:absolute;

    width:500px;
    height:500px;

    right:-180px;
    top:-260px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.15),
            transparent 68%
        );

    filter:blur(15px);

    pointer-events:none;
}

.contact-v2-inner{
    position:relative;

    z-index:1;

    max-width:900px;

    margin:0 auto;

    padding:85px 70px;

    text-align:center;
}

.contact-v2-label{
    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:18px;

    color:var(--accent);

    font-size:.62rem;
    font-weight:800;

    letter-spacing:2.5px;
}

.contact-v2-dot{
    width:5px;
    height:5px;

    border-radius:50%;

    background:var(--accent);
}

.contact-v2-index{
    position:absolute;

    top:35px;
    right:40px;

    color:rgba(212,175,55,.65);

    font-size:.65rem;
    font-weight:800;

    letter-spacing:2px;
}

.contact-v2-inner h2{
    margin:0 auto 22px;

    max-width:760px;

    color:#fff;

    font-size:
        clamp(2.5rem,4vw,4.2rem);

    line-height:1.02;

    letter-spacing:-.055em;
}

.contact-v2-inner h2 span{
    display:block;

    color:var(--accent);
}

.contact-v2-inner > p{
    max-width:650px;

    margin:0 auto;

    color:#AAB4C5;

    font-size:.86rem;

    line-height:1.8;
}

.contact-v2-actions{
    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:32px;
}

.contact-v2-primary,
.contact-v2-secondary{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    min-height:46px;

    padding:0 20px;

    border-radius:999px;

    font-size:.70rem;
    font-weight:700;

    text-decoration:none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.contact-v2-primary{
    background:var(--accent);

    color:#111;

    border:1px solid var(--accent);
}

.contact-v2-primary:hover{
    transform:translateY(-2px);

    background:#E2BC4D;
}

.contact-v2-primary span{
    font-size:.9rem;
}

.contact-v2-secondary{
    background:rgba(255,255,255,.025);

    color:#fff;

    border:1px solid #354158;
}

.contact-v2-secondary:hover{
    transform:translateY(-2px);

    border-color:var(--accent);

    color:var(--accent);
}

.contact-v2-secondary span{
    color:var(--accent);
}

.contact-v2-note{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    margin-top:38px;

    color:#78869D;

    font-size:.63rem;

    line-height:1.5;
}

.contact-v2-note span{
    width:5px;
    height:5px;

    flex:none;

    border-radius:50%;

    background:var(--accent);
}


/* ==========================================================
   LIGHT MODE
========================================================== */

html[data-theme="light"] .contact-v2-box{
    background:
        linear-gradient(
            135deg,
            #111827,
            #182131
        );
}


/* ==========================================================
   DARK MODE
========================================================== */

html[data-theme="dark"] .mini-cta-v2-wrapper{
    background:#111827;

    border-color:#263247;

    box-shadow:none;
}

html[data-theme="dark"] .contact-v2-box{
    background:
        linear-gradient(
            135deg,
            #0F172A,
            #0B1220
        );

    border-color:#263247;

    box-shadow:none;
}

/* ==========================================================
   FOOTER V2
========================================================== */

.footer-v2{
    position:relative;

    padding:75px 0 25px;

    background:
        linear-gradient(
            180deg,
            #0B1220 0%,
            #080E1A 100%
        );

    border-top:1px solid #202B3E;

    color:#fff;
}


/* ==========================================================
   MAIN
========================================================== */

.footer-v2-main{
    display:grid;

    grid-template-columns:
        minmax(0,1.7fr)
        150px
        150px;

    gap:80px;

    padding-bottom:60px;
}


/* ==========================================================
   BRAND
========================================================== */

.footer-v2-brand{
    max-width:430px;
}

.footer-v2-logo{
    display:inline-flex;

    align-items:center;

    margin-bottom:22px;
}

.footer-v2-logo img{
    display:block;

    width:auto;

    max-width:210px;

    height:auto;
}

.footer-v2-brand p{
    max-width:400px;

    margin:0 0 18px;

    color:#98A5B8;

    font-size:.76rem;

    line-height:1.8;
}

.footer-v2-location{
    color:#647186;

    font-size:.62rem;

    letter-spacing:.04em;
}


/* ==========================================================
   COLUMNS
========================================================== */

.footer-v2-heading{
    display:block;

    margin-bottom:20px;

    color:var(--accent);

    font-size:.60rem;

    font-weight:800;

    letter-spacing:1.8px;
}

.footer-v2-column ul{
    display:flex;

    flex-direction:column;

    gap:12px;

    margin:0;
    padding:0;

    list-style:none;
}

.footer-v2-column a,
.footer-v2-static{
    color:#9AA7B9;

    font-size:.72rem;

    text-decoration:none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-v2-column a:hover{
    color:#fff;
}

.footer-v2-static{
    cursor:default;
}


/* ==========================================================
   STATEMENT
========================================================== */

.footer-v2-statement{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    padding:27px 0;

    border-top:1px solid #202B3E;

    border-bottom:1px solid #202B3E;
}

.footer-v2-statement span{
    color:var(--accent);

    font-size:.60rem;

    font-weight:800;

    letter-spacing:2px;
}

.footer-v2-statement p{
    margin:0;

    color:#79869A;

    font-size:.68rem;
}


/* ==========================================================
   BOTTOM
========================================================== */

.footer-v2-bottom{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    padding-top:25px;
}

.footer-v2-bottom p{
    margin:0;

    color:#59667A;

    font-size:.60rem;
}


/* ==========================================================
   BACK TO TOP V2
========================================================== */

.back-to-top-v2{
    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid #344055;

    border-radius:50%;

    background:#111827;

    color:#fff;

    font-size:.85rem;

    cursor:pointer;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.back-to-top-v2:hover{
    transform:translateY(-4px);

    background:var(--accent);

    border-color:var(--accent);

    color:#111;
}


/* ==========================================================
   LIGHT MODE
========================================================== */

html[data-theme="light"] .footer-v2{
    background:
        linear-gradient(
            180deg,
            #0D1524 0%,
            #080E1A 100%
        );
}


/* ==========================================================
   DARK MODE
========================================================== */

html[data-theme="dark"] .footer-v2{
    background:#070D19;

    border-top-color:#1C2739;
}

html[data-theme="dark"] .footer-v2-statement{
    border-color:#1C2739;
}

/* ==========================================================
   FINAL HOMEPAGE POLISH — LOCKED DESIGN
   Do not modify the core layout above.
========================================================== */


/* ==========================================================
   01. HEADER / LOGO BALANCE
========================================================== */

.header .logo img,
.site-header .logo img,
.navbar-brand img,
.header-logo img{
    max-height:46px;
    width:auto;
    object-fit:contain;
}

.header,
.site-header{
    min-height:72px;
}


/* ==========================================================
   02. HERO STATS — MORE BREATHING ROOM
========================================================== */

.hero-highlights + *,
.hero-stats,
.hero-metrics{
    margin-top:26px;
}

.hero .stats-grid,
.hero .hero-stats-grid{
    gap:14px;
}

.hero .stat-card,
.hero .metric-card{
    min-height:92px;
}


/* ==========================================================
   03. JOURNEY — GOLD ACCENT CONTROL
========================================================== */

.journey-v2-heading h2 span{
    color:var(--text-primary);
}

.journey-v2-label{
    color:var(--accent);
}

.journey-v2-year,
.journey-v2-company,
.journey-v2-status{
    color:var(--accent);
}


/* Keep only important accent */

.journey-v2-footer-number{
    color:var(--accent);
}


/* ==========================================================
   04. FOOTER — BETTER READABILITY
========================================================== */

.footer-v2-brand p{
    color:#A7B1C1;
}

.footer-v2-location{
    color:#7B8799;
}

.footer-v2-column a,
.footer-v2-static{
    color:#A1ADBF;
}

.footer-v2-column a:hover{
    color:#FFFFFF;
}

.footer-v2-bottom p{
    color:#69768A;
}

.footer-v2-statement p{
    color:#8995A8;
}


/* ==========================================================
   05. GENERAL MICRO TYPOGRAPHY
========================================================== */

.insights-v2-body p,
.journey-v2-card > p,
.about-right p{
    text-wrap:pretty;
}


/* ==========================================================
   06. IMAGE RENDERING
========================================================== */

.hero-image img,
.about-image img,
.insights-v2-image img{
    image-rendering:auto;

    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}


/* ==========================================================
   07. MOBILE HEADER
========================================================== */

@media (max-width:768px){

    .header,
    .site-header{
        min-height:64px;
    }

    .header .logo img,
    .site-header .logo img,
    .navbar-brand img,
    .header-logo img{
        max-height:38px;
    }

}


/* ==========================================================
   08. MOBILE HERO STATS
========================================================== */

@media (max-width:576px){

    .hero-highlights{
        margin-top:20px;
    }

    .hero .stats-grid,
    .hero .hero-stats-grid{
        gap:9px;
    }

    .hero .stat-card,
    .hero .metric-card{
        min-height:78px;
    }

}


/* ==========================================================
   09. ACCESSIBILITY / MOTION
========================================================== */

@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        scroll-behavior:auto !important;

        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;

        transition-duration:.01ms !important;
    }

}