/*==========================================================
  VMENTORZ
  Main Stylesheet
==========================================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    transition:.35s ease;
    overflow-x:hidden;
}

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

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

ul{
    list-style:none;
}

.container{
    width:min(1280px,92%);
    margin:auto;
}

/*==============================
Background
==============================*/

.bg-grid{
    position:fixed;
    inset:0;
    z-index:-3;
    opacity:.04;

    background-image:
    linear-gradient(rgba(0,0,0,.1) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,0,0,.1) 1px,transparent 1px);

    background-size:70px 70px;
}

.bg-blur{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    z-index:-2;

}

.blur-one{

    width:420px;
    height:420px;

    top:-100px;
    left:-100px;

    background:rgba(0,181,146,.25);

}

.blur-two{

    width:500px;
    height:500px;

    right:-150px;
    bottom:-100px;

    background:rgba(176,249,217,.35);

}

/*==============================
Header
==============================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

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

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

}

.nav-container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

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

.logo{

    display:flex;
    align-items:center;
    text-decoration:none;

}

.logo img{

    height:100px;      /* Change according to your logo */
    width:auto;
    display:block;
    transition:.35s ease;

}

.logo:hover img{

    transform:scale(1.05);

}
.nav-links{

    display:flex;

    gap:42px;

}

.nav-links a{

    font-size:15px;

    font-weight:500;

    color:var(--text-muted);

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-right{

    display:flex;

    align-items:center;

    gap:16px;

}

.theme-toggle{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:var(--surface);

    color:var(--text);

    font-size:18px;

    transition:.35s;

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

}

.theme-toggle:hover{

    transform:rotate(180deg);

}

/*==============================
Buttons
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border-radius:999px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    color:#fff;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    box-shadow:0 18px 45px rgba(0,181,146,.28);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    border:1px solid rgba(0,0,0,.08);

    background:var(--surface);

}

.btn-outline:hover{

    border-color:var(--primary);

}

/*==============================
Hero
==============================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(0,181,146,.12);

    color:var(--primary);

    font-weight:600;

    margin-bottom:28px;

}

.hero h1{

    font-family:'Plus Jakarta Sans',sans-serif;

    font-size:68px;

    line-height:1.08;

    margin-bottom:24px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:18px;

    color:var(--text-muted);

    line-height:1.8;

    margin-bottom:38px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:50px;

}

.hero-stats{

    display:flex;

    gap:48px;

}

.stat h3{

    font-size:38px;

    color:var(--primary);

    margin-bottom:8px;

}

.stat span{

    color:var(--text-muted);

}

/*==============================
Dashboard
==============================*/

.hero-image{

    position:relative;

}

.dashboard-wrapper{

    border-radius:32px;

    overflow:hidden;

    background:var(--surface);

    padding:18px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.12),
    0 10px 20px rgba(0,0,0,.05);

    animation:float 6s ease-in-out infinite;

}

.dashboard-image{

    border-radius:22px;

}

/*==============================
Floating Cards
==============================*/

.floating-card{

    position:absolute;

    display:flex;
    align-items:center;
    gap:16px;

    width:260px;
    padding:18px 20px;

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

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

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

    border-radius:22px;

    box-shadow:
        0 20px 60px rgba(15,23,42,.12),
        0 8px 20px rgba(0,181,146,.10);

    transition:.35s ease;

    z-index:20;

}

.floating-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 30px 70px rgba(15,23,42,.18),
        0 12px 25px rgba(0,181,146,.16);

}

.card-one{

    top:60px;
    left:-90px;

}

.card-two{

    top:220px;
    right:-100px;

}

.card-three{

    bottom:80px;
    left:-80px;

}

/*==============================
Scroll Indicator
==============================*/

.scroll-indicator{

    position:absolute;

    bottom:28px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-indicator span{

    display:block;

    width:28px;

    height:48px;

    border:2px solid var(--primary);

    border-radius:30px;

    position:relative;

}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    width:6px;

    height:6px;

    border-radius:50%;

    background:var(--primary);

    animation:scroll 2s infinite;

}

/*==============================
Dark Theme
==============================*/

[data-theme="dark"] .header{

    background:rgba(5,10,18,.75);

    border-color:rgba(255,255,255,.05);

}

[data-theme="dark"] .floating-card{

    background:rgba(9,18,32,.82);

}

[data-theme="dark"] .btn-outline{

    border-color:rgba(255,255,255,.08);

}

[data-theme="dark"] .bg-grid{

    opacity:.03;

}

/*==================================================
TRUSTED SECTION
==================================================*/

.trusted-section{

    padding:90px 0;

    position:relative;

    overflow:hidden;

    background:var(--bg);

}

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(0,181,146,.12);

    color:var(--primary);

    font-weight:600;

    margin-bottom:18px;

}

.section-header h2{

    font-size:46px;

    font-family:'Plus Jakarta Sans',sans-serif;

    color:var(--text);

    margin-bottom:20px;

}

.section-header p{

    max-width:760px;

    margin:auto;

    line-height:1.8;

    color:var(--text-muted);

    font-size:17px;

}

/*=====================
Slider
=====================*/

.trusted-slider{

    position:relative;

    overflow:hidden;

    mask-image:linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );

    -webkit-mask-image:linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );

}

.trusted-track{

    display:flex;

    gap:24px;

    width:max-content;

    animation:marquee 28s linear infinite;

}

.trusted-slider:hover .trusted-track{

    animation-play-state:paused;

}

/*=====================
Cards
=====================*/

.trusted-card{

    min-width:240px;

    height:95px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    padding:0 28px;

    border-radius:22px;

    background:var(--surface);

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

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

    transition:var(--transition);

}

.trusted-card:hover{

    transform:translateY(-8px);

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

    border-color:var(--primary);

}

.trusted-card i{

    font-size:28px;

    color:var(--primary);

}

.trusted-card span{

    font-size:18px;

    font-weight:600;

    color:var(--text);

}

/*=====================
Animation
=====================*/

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*=====================
Dark Theme
=====================*/

[data-theme="dark"] .trusted-card{

    background:var(--surface);

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

}

[data-theme="dark"] .trusted-card:hover{

    box-shadow:0 25px 50px rgba(0,204,168,.15);

}

/*=====================
Responsive
=====================*/

@media(max-width:768px){

.section-header h2{

    font-size:34px;

}

.section-header p{

    font-size:16px;

}

.trusted-card{

    min-width:190px;

    height:80px;

}

.trusted-card span{

    font-size:16px;

}

}

@media(max-width:576px){

.trusted-section{

    padding:70px 0;

}

.section-header{

    margin-bottom:40px;

}

.section-header h2{

    font-size:28px;

}

.trusted-card{

    min-width:170px;

    height:70px;

    gap:12px;

}

.trusted-card i{

    font-size:22px;

}

}

/*==================================================
WHY MENTAL WELLNESS
==================================================*/

.wellness-section{

    padding:110px 0;

    background:var(--bg);

    position:relative;

    overflow:hidden;

}

.wellness-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(0,181,146,.08);

    border-radius:50%;

    filter:blur(120px);

    top:-120px;

    right:-100px;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header h2{

    font-size:48px;

    margin-bottom:20px;

    color:var(--text);

}

.section-header p{

    max-width:760px;

    margin:auto;

    color:var(--text-muted);

    line-height:1.9;

    font-size:17px;

}

.wellness-grid{

    display:grid;

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

    gap:30px;

}

.wellness-card{

    background:var(--surface);

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

    border-radius:28px;

    padding:40px;

    transition:.4s;

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

}

.wellness-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

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

}

.wellness-icon{

    width:72px;

    height:72px;

    border-radius:22px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    margin-bottom:25px;

}

.wellness-card h3{

    font-size:42px;

    color:var(--primary);

    margin-bottom:10px;

    font-family:'Plus Jakarta Sans',sans-serif;

}

.wellness-card h4{

    font-size:22px;

    margin-bottom:15px;

    color:var(--text);

}

.wellness-card p{

    color:var(--text-muted);

    line-height:1.8;

}

/*=========================
Responsive
=========================*/

@media(max-width:992px){

.wellness-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.wellness-section{

    padding:80px 0;

}

.section-header h2{

    font-size:36px;

}

.wellness-card{

    padding:30px;

}

}

@media(max-width:576px){

.section-header h2{

    font-size:30px;

}

.section-header p{

    font-size:15px;

}

.wellness-card h3{

    font-size:34px;

}

.wellness-card h4{

    font-size:20px;

}

}
/*==================================================
WHY CHOOSE VMENTORZ
==================================================*/

.choose-section{

    padding:120px 0;
    position:relative;
    overflow:hidden;
    background:var(--bg);

}

.choose-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

/* LEFT */

.choose-content h2{

    font-size:48px;
    line-height:1.2;
    margin:25px 0;
    color:var(--text);

}

.choose-content p{

    font-size:17px;
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:35px;

}

/* RIGHT */

.choose-features{

    position:relative;

}

.feature-line{

    position:absolute;
    left:36px;
    top:40px;
    bottom:40px;
    width:3px;

    background:linear-gradient(
        to bottom,
        var(--primary),
        rgba(0,181,146,.10)
    );

}

.feature-card{

    position:relative;

    display:flex;
    align-items:flex-start;
    gap:22px;

    padding:28px;

    margin-bottom:25px;

    background:var(--surface);

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

    border-radius:24px;

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

    transition:.35s;

}

.feature-card:hover{

    transform:translateX(10px);

    border-color:var(--primary);

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

}

.feature-icon{

    width:72px;
    height:72px;

    min-width:72px;

    border-radius:20px;

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

    color:#fff;

    font-size:28px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.feature-card h3{

    font-size:22px;
    margin-bottom:12px;
    color:var(--text);

}

.feature-card p{

    color:var(--text-muted);
    line-height:1.8;

}

/* Hover */

.feature-card:hover .feature-icon{

    transform:rotate(-8deg) scale(1.08);

}

/* Responsive */

@media(max-width:992px){

.choose-wrapper{

    grid-template-columns:1fr;
    gap:60px;

}

.feature-line{

    display:none;

}

}

@media(max-width:768px){

.choose-section{

    padding:90px 0;

}

.choose-content{

    text-align:center;

}

.choose-content h2{

    font-size:38px;

}

.feature-card{

    padding:22px;

}

}

@media(max-width:576px){

.choose-content h2{

    font-size:30px;

}

.feature-card{

    flex-direction:column;
    text-align:center;

}

.feature-icon{

    margin:auto;

}

}
/*==================================================
HOW VMENTORZ WORKS
==================================================*/

.journey-section{

    padding:120px 0;

    background:var(--bg);

    position:relative;

}

.journey-wrapper{

    position:relative;

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

.journey-line{

    position:absolute;

    top:50px;

    left:10%;

    width:80%;

    height:4px;

    background:linear-gradient(
        to right,
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;

    z-index:0;

}

.journey-card{

    position:relative;

    z-index:2;

    text-align:center;

    background:var(--surface);

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

    border-radius:28px;

    padding:35px 25px;

    transition:.35s;

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

}

.journey-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

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

}

.step-circle{

    width:52px;

    height:52px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-weight:700;

    font-size:16px;

}

.journey-icon{

    width:82px;

    height:82px;

    margin:auto;

    margin-bottom:25px;

    border-radius:24px;

    background:rgba(0,181,146,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:34px;

}

.journey-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:var(--text);

}

.journey-card p{

    color:var(--text-muted);

    line-height:1.8;

    font-size:15px;

}

/* Hover */

.journey-card:hover .journey-icon{

    transform:rotate(-10deg) scale(1.08);

}

.journey-card:hover .step-circle{

    transform:scale(1.1);

}

/* Responsive */

@media(max-width:1200px){

.journey-wrapper{

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

}

.journey-line{

    display:none;

}

}

@media(max-width:768px){

.journey-wrapper{

    grid-template-columns:1fr;

}

.journey-card{

    text-align:left;

}

.step-circle{

    margin-left:0;

}

.journey-icon{

    margin-left:0;

}

}
/*==================================================
  AI COMPANION SECTION - PART 2A
==================================================*/

.ai-section{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg);
}

/* Background Glow */

.ai-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -180px;
    left: -150px;
    border-radius: 50%;
    background: rgba(0,181,146,.08);
    filter: blur(120px);
}

.ai-section::after{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -150px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(20,184,166,.08);
    filter: blur(120px);
}

/*==========================
Wrapper
==========================*/

.ai-wrapper{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:90px;

    align-items:center;

    position:relative;

    z-index:2;

}

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

.ai-content h2{

    font-size:52px;

    line-height:1.15;

    margin:20px 0;

    color:var(--text);

}

.ai-content h2 span{

    color:var(--primary);

}

.ai-description{

    font-size:17px;

    line-height:1.9;

    color:var(--text-muted);

    margin-bottom:45px;

    max-width:580px;

}

/*==========================
FEATURE LIST
==========================*/

.ai-feature-list{

    display:flex;

    flex-direction:column;

    gap:28px;

    margin-bottom:45px;

}

.ai-feature{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.ai-feature .feature-icon{

    width:62px;

    height:62px;

    min-width:62px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    color:#fff;

    box-shadow:0 12px 30px rgba(0,181,146,.25);

}

.ai-feature h4{

    font-size:21px;

    color:var(--text);

    margin-bottom:8px;

}

.ai-feature p{

    color:var(--text-muted);

    line-height:1.7;

}

/*==========================
BUTTONS
==========================*/

.ai-buttons{

    display:flex;

    gap:18px;

    margin-top:20px;

}

.ai-buttons .btn{

    padding:16px 30px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

}

.btn-outline{

    background:transparent;

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

    color:var(--text);

}

.btn-outline:hover{

    border-color:var(--primary);

    color:var(--primary);

}

/*==========================
PHONE AREA
==========================*/

.phone-area{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

/*==========================
PHONE
==========================*/

.phone{

    background:#ffffff;

    border:1px solid rgba(226,232,240,.9);

    overflow:hidden;

    border-radius:36px;

    box-shadow:
        0 40px 90px rgba(15,23,42,.14);

}

/* Phone Glow */

.phone::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.06),
        transparent 30%
    );

    pointer-events:none;

}
.phone img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

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

.phone-header{

    display:flex;

    align-items:center;

    gap:14px;

    padding:22px 24px;

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

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

    backdrop-filter:blur(20px);

}

.ai-avatar{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.phone-header h4{

    color:var(--text);

    margin-bottom:3px;

    font-size:18px;

}

.phone-header span{

    font-size:14px;

    color:var(--primary);

}

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

.chat-body{

    padding:24px;

    display:flex;

    flex-direction:column;

    gap:18px;

    height:calc(100% - 95px);

    overflow-y:auto;

    scrollbar-width:none;

}

.chat-body::-webkit-scrollbar{

    display:none;

}
/*==================================================
AI COMPANION - PART 2B
==================================================*/

/*==========================
CHAT BUBBLES
==========================*/

.chat-message{

    max-width:85%;
    padding:16px 18px;
    border-radius:20px;
    line-height:1.7;
    font-size:15px;
    animation:fadeUp .5s ease;

}

.chat-message.ai{

    background:rgba(0,181,146,.08);
    color:var(--text);
    border:1px solid rgba(0,181,146,.12);
    border-bottom-left-radius:6px;
    align-self:flex-start;

}

.chat-message.user{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    border-bottom-right-radius:6px;

    align-self:flex-end;

}

/*==========================
MOOD CHIPS
==========================*/

.mood-options{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:4px;
    margin-bottom:8px;

}

.mood-chip{

    padding:10px 18px;
    border-radius:999px;
    background:var(--surface);
    border:1px solid var(--border);
    color:var(--text);
    cursor:pointer;
    transition:.35s;
    font-size:14px;
    font-weight:600;

}

.mood-chip:hover{

    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    transform:translateY(-3px);

}

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

.exercise-card{

    display:flex;
    align-items:center;
    gap:18px;
    padding:18px;
    border-radius:20px;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
    margin-top:8px;

}

.exercise-left{

    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#fff;

}

.exercise-right{

    flex:1;

}

.exercise-right h5{

    font-size:17px;
    margin-bottom:6px;
    color:var(--text);

}

.exercise-right span{

    color:var(--text-muted);
    font-size:14px;

}

.exercise-card button{

    border:none;
    outline:none;
    background:var(--primary);
    color:#fff;
    padding:10px 18px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;

}

.exercise-card button:hover{

    transform:translateY(-2px);
    background:var(--secondary);

}

/*==========================
FLOATING GLASS CARDS
==========================*/

.floating-card{

    position:absolute;

    display:flex;
    align-items:center;
    gap:16px;

    width:260px;
    padding:18px 20px;

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

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

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

    border-radius:22px;

    box-shadow:
        0 20px 60px rgba(15,23,42,.12),
        0 8px 20px rgba(0,181,146,.10);

    transition:.35s ease;

    z-index:20;

}

.floating-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 30px 70px rgba(15,23,42,.18),
        0 12px 25px rgba(0,181,146,.16);

}

.card-icon{

    width:46px;
    height:46px;
    border-radius:14px;

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

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
    font-size:22px;

}

.floating-card strong{

    display:block;
    font-size:15px;
    color:var(--text);

}

.floating-card span{

    font-size:13px;
    color:var(--text-muted);

}

/* Positions */

.card-one{

    top:60px;
    left:-90px;

}

.card-two{

    top:220px;
    right:-100px;

}

.card-three{

    bottom:80px;
    left:-80px;

}

/*==========================
TYPING INDICATOR
==========================*/

.typing{

    display:flex;
    gap:6px;
    padding:12px 16px;
    width:70px;
    border-radius:18px;
    background:rgba(0,181,146,.08);

}

.typing span{

    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);

    animation:typing 1.3s infinite;

}

.typing span:nth-child(2){

    animation-delay:.2s;

}

.typing span:nth-child(3){

    animation-delay:.4s;

}

/*==========================
PHONE FLOAT
==========================*/

.phone{

    animation:phoneFloat 6s ease-in-out infinite;

}

/*==========================
HOVER EFFECTS
==========================*/

.phone:hover{

    transform:translateY(-8px) scale(1.01);

}

.floating-card:hover{

    transform:translateY(-8px) scale(1.04);

}

/*==========================
ANIMATIONS
==========================*/

@keyframes phoneFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

@keyframes floatingCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

}

@keyframes typing{

    0%,80%,100%{

        opacity:.3;
        transform:scale(.8);

    }

    40%{

        opacity:1;
        transform:scale(1);

    }

}

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

[data-theme="dark"] .floating-card{

    background:rgba(16,24,39,.88);
    border-color:rgba(255,255,255,.08);

}

[data-theme="dark"] .exercise-card{

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

}

[data-theme="dark"] .mood-chip{

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

}

[data-theme="dark"] .chat-message.ai{

    background:rgba(0,181,146,.12);

}
/*==================================================
AI COMPANION - FINAL POLISH
==================================================*/

/*==============================
Premium Glass Phone
==============================*/

.phone{

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.04)
        );

    backdrop-filter:blur(35px);

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

}

/* Glass Reflection */

.phone::after{

    content:"";

    position:absolute;

    top:-20%;

    left:-40%;

    width:70%;

    height:160%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.15),

        transparent

    );

    transform:rotate(25deg);

    pointer-events:none;

    animation:glassReflection 8s linear infinite;

}

/*==============================
Gradient Heading
==============================*/

.ai-content h2 span{

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==============================
Chat Bubble Shine
==============================*/

.chat-message{

    position:relative;

    overflow:hidden;

}

.chat-message::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.18),

        transparent

    );

    transition:.8s;

}

.chat-message:hover::after{

    left:120%;

}

/*==============================
Floating Card Glow
==============================*/

.floating-card{

    transition:.4s;

}

.floating-card:hover{

    box-shadow:

        0 20px 60px rgba(0,181,146,.22),

        0 0 0 1px rgba(0,181,146,.25);

}

/*==============================
Phone Hover
==============================*/

.phone{

    transition:

        transform .5s ease,

        box-shadow .5s ease;

}

.phone:hover{

    box-shadow:

        0 40px 90px rgba(0,181,146,.18);

}

/*==============================
Mood Chips
==============================*/

.mood-chip{

    position:relative;

    overflow:hidden;

}

.mood-chip::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.22),

        transparent

    );

    transform:translateX(-120%);

}

.mood-chip:hover::before{

    animation:chipShine .7s linear;

}

/*==============================
Exercise Card
==============================*/

.exercise-card{

    transition:.35s;

}

.exercise-card:hover{

    transform:translateY(-4px);

    border-color:var(--primary);

}

/*==============================
Feature Cards
==============================*/

.ai-feature{

    transition:.35s;

}

.ai-feature:hover{

    transform:translateX(10px);

}

.ai-feature:hover .feature-icon{

    transform:rotate(-10deg) scale(1.08);

}

/*==============================
Buttons
==============================*/

.ai-buttons .btn{

    position:relative;

    overflow:hidden;

}

.ai-buttons .btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

}

.ai-buttons .btn:hover::before{

    animation:buttonShine .8s linear;

}

/*==============================
Avatar Pulse
==============================*/

.ai-avatar{

    animation:avatarPulse 3s infinite;

}

/*==============================
Online Dot
==============================*/

.phone-header span{

    position:relative;

    padding-left:16px;

}

.phone-header span::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    width:8px;

    height:8px;

    border-radius:50%;

    background:#22c55e;

    animation:onlineBlink 1.5s infinite;

}

/*==============================
Scrollbar
==============================*/

.chat-body{

    scrollbar-width:thin;

}

.chat-body::-webkit-scrollbar{

    width:6px;

}

.chat-body::-webkit-scrollbar-thumb{

    background:rgba(0,181,146,.25);

    border-radius:20px;

}

/*==============================
Background Floating Orbs
==============================*/

.ai-section .orb{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

    opacity:.18;

    pointer-events:none;

}

.orb.one{

    width:240px;

    height:240px;

    background:var(--primary);

    top:8%;

    right:6%;

}

.orb.two{

    width:180px;

    height:180px;

    background:var(--secondary);

    bottom:10%;

    left:5%;

}

/*==============================
Animations
==============================*/

@keyframes glassReflection{

    from{

        left:-60%;

    }

    to{

        left:150%;

    }

}

@keyframes avatarPulse{

    0%,100%{

        box-shadow:0 0 0 0 rgba(0,181,146,.35);

    }

    50%{

        box-shadow:0 0 0 15px rgba(0,181,146,0);

    }

}

@keyframes onlineBlink{

    0%,100%{

        opacity:1;

    }

    50%{

        opacity:.35;

    }

}

@keyframes chipShine{

    from{

        transform:translateX(-120%);

    }

    to{

        transform:translateX(160%);

    }

}

@keyframes buttonShine{

    from{

        transform:translateX(-120%);

    }

    to{

        transform:translateX(160%);

    }

}
/* =========================================================
   VMENTORZ WELLNESS ECOSYSTEM
========================================================= */

.ecosystem-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg, #FCFCFC);
    isolation: isolate;
}


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

.ecosystem-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

.ecosystem-glow-left {
    top: 80px;
    left: -260px;
    background: var(--primary, #00B592);
}

.ecosystem-glow-right {
    right: -260px;
    bottom: 40px;
    background: var(--secondary, #42D982);
}


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

.ecosystem-heading {
    max-width: 780px;
    margin: 0 auto 80px;
    text-align: center;
}

.ecosystem-heading .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(0, 181, 146, 0.10);
    border: 1px solid rgba(0, 181, 146, 0.15);

    color: var(--primary, #00B592);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 22px;
}

.ecosystem-heading .section-badge i {
    font-size: 12px;
}

.ecosystem-heading h2 {
    margin: 0 0 20px;

    color: var(--text, #0E172D);

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -1.5px;
}

.ecosystem-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        var(--primary, #00B592),
        var(--secondary, #42D982)
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecosystem-heading > p {
    max-width: 680px;
    margin: 0 auto;

    color: var(--text-muted, #6A7282);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ECOSYSTEM MAIN AREA
========================================================= */

.ecosystem-container {
    position: relative;

    width: min(100%, 1100px);
    height: 720px;

    margin: 0 auto;

    border-radius: 40px;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 181, 146, 0.06),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.55);

    border: 1px solid rgba(0, 181, 146, 0.10);

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.06);

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


/* =========================================================
   CONNECTING LINES
========================================================= */

.ecosystem-line {
    position: absolute;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 181, 146, 0.45),
        transparent
    );

    transform-origin: left center;

    opacity: 0.65;

    pointer-events: none;
}

.line-top {
    width: 250px;
    height: 1px;

    top: 190px;
    left: 425px;

    transform: rotate(-90deg);
}

.line-right {
    width: 240px;
    height: 1px;

    top: 350px;
    left: 570px;

    transform: rotate(0deg);
}

.line-bottom {
    width: 250px;
    height: 1px;

    top: 530px;
    left: 425px;

    transform: rotate(90deg);
}

.line-left {
    width: 240px;
    height: 1px;

    top: 350px;
    left: 290px;

    transform: rotate(180deg);
}


/* =========================================================
   ECOSYSTEM NODES
========================================================= */

.ecosystem-node {
    position: absolute;

    width: 250px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 17px 18px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 15px 45px rgba(15, 23, 42, 0.08),
        0 3px 12px rgba(0, 181, 146, 0.05);

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

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    z-index: 4;
}

.ecosystem-node:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 181, 146, 0.30);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.12),
        0 8px 25px rgba(0, 181, 146, 0.12);
}


/* =========================================================
   NODE ICON
========================================================= */

.node-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

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

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        var(--primary, #00B592),
        var(--secondary, #42D982)
    );

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 10px 25px rgba(0, 181, 146, 0.20);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ecosystem-node:hover .node-icon {
    transform: scale(1.08) rotate(-5deg);

    box-shadow:
        0 14px 30px rgba(0, 181, 146, 0.28);
}


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

.node-content h4 {
    margin: 0 0 5px;

    color: var(--text, #0E172D);

    font-size: 15px;
    font-weight: 700;
}

.node-content p {
    margin: 0;

    color: var(--text-muted, #6A7282);

    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   NODE POSITIONS
========================================================= */

.node-top {
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

.node-left-top {
    top: 180px;
    left: 45px;
}

.node-right-top {
    top: 180px;
    right: 45px;
}

.node-left-bottom {
    bottom: 155px;
    left: 45px;
}

.node-right-bottom {
    bottom: 155px;
    right: 45px;
}

.node-corporate {
    bottom: 45px;
    left: 190px;
}

.node-individuals {
    bottom: 45px;
    right: 190px;
}


/* =========================================================
   CENTER ECOSYSTEM
========================================================= */

.ecosystem-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 250px;
    height: 250px;

    transform: translate(-50%, -50%);

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

    text-align: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.98),
            rgba(237, 255, 249, 0.92)
        );

    border: 1px solid rgba(0, 181, 146, 0.25);

    box-shadow:
        0 25px 70px rgba(0, 181, 146, 0.16),
        inset 0 0 40px rgba(0, 181, 146, 0.05);

    z-index: 10;
}


/* =========================================================
   CENTER RINGS
========================================================= */

.center-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(0, 181, 146, 0.20);

    pointer-events: none;
}

.ring-one {
    inset: -18px;

    animation: ecosystemRing 5s linear infinite;
}

.ring-two {
    inset: -38px;

    border-style: dashed;

    opacity: 0.55;

    animation: ecosystemRingReverse 12s linear infinite;
}


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

.center-logo {
    position: relative;

    width: 68px;
    height: 68px;

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

    margin-bottom: 12px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        var(--primary, #00B592),
        var(--secondary, #42D982)
    );

    box-shadow:
        0 15px 35px rgba(0, 181, 146, 0.25);
}

.center-logo-mark {
    color: #ffffff;

    font-size: 28px;
    font-weight: 800;
}


/* =========================================================
   CENTER TEXT
========================================================= */

.ecosystem-center h3 {
    margin: 0 0 4px;

    color: var(--text, #0E172D);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.ecosystem-center > span {
    color: var(--text-muted, #6A7282);

    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   STATUS
========================================================= */

.center-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 14px;

    padding: 7px 12px;

    border-radius: 50px;

    background: rgba(0, 181, 146, 0.08);

    color: var(--primary, #00B592);

    font-size: 10px;
    font-weight: 600;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary, #00B592);

    box-shadow:
        0 0 0 4px rgba(0, 181, 146, 0.10);

    animation: ecosystemPulse 2s infinite;
}


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

.ecosystem-benefits {
    display: grid;

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

    gap: 22px;

    max-width: 1050px;

    margin: 35px auto 0;
}

.ecosystem-benefit {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 22px;

    border-radius: 20px;

    background: var(--card-bg, #FFFFFF);

    border: 1px solid rgba(0, 181, 146, 0.08);

    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ecosystem-benefit:hover {
    transform: translateY(-5px);

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

.benefit-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

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

    border-radius: 14px;

    background: rgba(0, 181, 146, 0.10);

    color: var(--primary, #00B592);

    font-size: 17px;
}

.ecosystem-benefit h4 {
    margin: 0 0 6px;

    color: var(--text, #0E172D);

    font-size: 15px;
}

.ecosystem-benefit p {
    margin: 0;

    color: var(--text-muted, #6A7282);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes ecosystemPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(0, 181, 146, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(0, 181, 146, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(0, 181, 146, 0);
    }

}


@keyframes ecosystemRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes ecosystemRingReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


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

[data-theme="dark"] .ecosystem-section {
    background: var(--bg, #030712);
}

[data-theme="dark"] .ecosystem-container {
    background:
        radial-gradient(
            circle at center,
            rgba(0, 204, 168, 0.08),
            transparent 38%
        ),
        rgba(6, 13, 26, 0.72);

    border-color: rgba(0, 204, 168, 0.12);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.30);
}

[data-theme="dark"] .ecosystem-node {
    background: rgba(6, 13, 26, 0.88);

    border-color: rgba(255, 255, 255, 0.07);

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

[data-theme="dark"] .ecosystem-node:hover {
    border-color: rgba(0, 204, 168, 0.30);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.40),
        0 10px 30px rgba(0, 204, 168, 0.10);
}

[data-theme="dark"] .ecosystem-center {
    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(12, 31, 42, 0.98),
            rgba(6, 13, 26, 0.96)
        );

    border-color: rgba(0, 204, 168, 0.25);

    box-shadow:
        0 25px 70px rgba(0, 204, 168, 0.10),
        inset 0 0 50px rgba(0, 204, 168, 0.05);
}

[data-theme="dark"] .ecosystem-benefit {
    background: var(--card-bg, #060D1A);

    border-color: rgba(255, 255, 255, 0.06);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);
}

[data-theme="dark"] .ecosystem-heading .section-badge {
    background: rgba(0, 204, 168, 0.10);

    border-color: rgba(0, 204, 168, 0.18);
}

[data-theme="dark"] .ecosystem-line {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 204, 168, 0.45),
        transparent
    );
}

/* =========================================================
   WELLNESS FOR EVERY JOURNEY — FIXED BASE STYLES
   Scoped to prevent conflicts with the existing .journey-card
   styles used by the earlier journey/how-it-works section.
========================================================= */

section.journey-audience-section {
    position: relative;
    width: 100%;
    padding: 110px 0;
    overflow: hidden;
    background: var(--bg);
    isolation: isolate;
}

section.journey-audience-section > .container {
    position: relative;
    z-index: 2;
    width: min(1100px, 92%);
    max-width: 1100px;
    margin: 0 auto;
}

section.journey-audience-section .journey-bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    z-index: 0;
}

section.journey-audience-section .journey-glow-one {
    top: 0;
    left: -250px;
    background: rgba(0, 181, 146, .14);
}

section.journey-audience-section .journey-glow-two {
    right: -250px;
    bottom: 0;
    background: rgba(66, 217, 130, .12);
}

section.journey-audience-section .journey-heading {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

section.journey-audience-section .journey-heading .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 17px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(0, 181, 146, .08);
    border: 1px solid rgba(0, 181, 146, .14);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

section.journey-audience-section .journey-heading h2 {
    width: 100%;
    margin: 0 0 17px;
    color: var(--text);
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.8px;
    text-align: center;
}

section.journey-audience-section .journey-heading h2 span {
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.journey-audience-section .journey-heading > p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

section.journey-audience-section .journey-audience-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

section.journey-audience-section article.journey-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 390px;
    box-sizing: border-box;
    padding: 32px;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    text-align: left !important;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,252,250,.94));
    border: 1px solid rgba(0,181,146,.10);
    box-shadow: 0 15px 45px rgba(15,23,42,.06);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

section.journey-audience-section article.journey-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,181,146,.25);
    box-shadow: 0 25px 65px rgba(15,23,42,.10), 0 8px 30px rgba(0,181,146,.08);
}

section.journey-audience-section .journey-card-number {
    position: absolute;
    top: -18px;
    right: 18px;
    z-index: 0;
    font-size: 145px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -8px;
    color: rgba(0,181,146,.045);
    pointer-events: none;
    transition: transform .4s ease, color .4s ease;
}

section.journey-audience-section article.journey-card:hover .journey-card-number {
    transform: translateY(-8px);
    color: rgba(0,181,146,.075);
}

section.journey-audience-section .journey-card-top {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 0 44px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

section.journey-audience-section .journey-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 18px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 22px;
    box-shadow: var(--shadow-primary);
    transition: transform .4s ease, box-shadow .4s ease;
}

section.journey-audience-section article.journey-card:hover .journey-icon {
    transform: scale(1.07) rotate(-4deg);
}

section.journey-audience-section .journey-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50%;
    background: rgba(0,181,146,.07);
    border: 1px solid rgba(0,181,146,.10);
    color: var(--primary);
    font-size: 13px;
    transition: transform .4s ease, background .4s ease, color .4s ease;
}

section.journey-audience-section article.journey-card:hover .journey-arrow {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

section.journey-audience-section .journey-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    text-align: left !important;
}

section.journey-audience-section .journey-card-label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

section.journey-audience-section .journey-card-content h3 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 750;
    letter-spacing: -.6px;
    text-align: left !important;
}

section.journey-audience-section .journey-card-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
    text-align: left !important;
}

section.journey-audience-section .journey-card-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto !important;
    padding-top: 26px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
}

section.journey-audience-section .journey-card-footer span {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

section.journey-audience-section .journey-card-footer i {
    color: var(--primary);
    transition: transform .3s ease;
}

section.journey-audience-section article.journey-card:hover .journey-card-footer i {
    transform: translateX(5px);
}

section.journey-audience-section article.journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity .35s ease;
}

section.journey-audience-section article.journey-card:hover::before {
    opacity: 1;
}

section.journey-audience-section article.journey-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(0,181,146,.07);
    filter: blur(35px);
    pointer-events: none;
}

section.journey-audience-section .journey-bottom-message {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: 90%;
    margin: 38px auto 0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    background: rgba(0,181,146,.055);
    border: 1px solid rgba(0,181,146,.10);
}

section.journey-audience-section .journey-bottom-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0,181,146,.10);
    color: var(--primary);
}

section.journey-audience-section .journey-bottom-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

section.journey-audience-section .journey-bottom-text strong {
    color: var(--text);
    font-size: 13px;
}

section.journey-audience-section .journey-bottom-text span {
    color: var(--text-muted);
    font-size: 11px;
}

[data-theme="dark"] section.journey-audience-section article.journey-card {
    background: linear-gradient(145deg, rgba(10,23,35,.96), rgba(5,14,24,.96));
    border-color: rgba(255,255,255,.07);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

[data-theme="dark"] section.journey-audience-section article.journey-card:hover {
    border-color: rgba(0,204,168,.28);
    box-shadow: 0 30px 70px rgba(0,0,0,.35), 0 10px 35px rgba(0,204,168,.08);
}

[data-theme="dark"] section.journey-audience-section .journey-card-number {
    color: rgba(0,204,168,.045);
}

[data-theme="dark"] section.journey-audience-section .journey-arrow {
    background: rgba(0,204,168,.08);
    border-color: rgba(0,204,168,.12);
}

@media (prefers-reduced-motion: reduce) {
    section.journey-audience-section article.journey-card,
    section.journey-audience-section .journey-card-number,
    section.journey-audience-section .journey-icon,
    section.journey-audience-section .journey-arrow,
    section.journey-audience-section .journey-card-footer i {
        transition: none;
    }
}

/* =========================================================
   READY TO BEGIN YOUR JOURNEY
   CTA SECTION — DESKTOP / BASE
========================================================= */

.journey-cta-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            135deg,
            #f5fffc 0%,
            #f9fffd 45%,
            #f3fff8 100%
        );
}


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

.journey-cta-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 181, 146, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 65%,
            rgba(66, 217, 130, 0.10),
            transparent 30%
        );

    z-index: -3;
}


/* =========================================================
   DECORATIVE ORBS
========================================================= */

.journey-cta-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -2;

    filter: blur(1px);
}


/* Orb One */

.journey-cta-orb-one {
    width: 230px;
    height: 230px;

    top: -90px;
    left: -80px;

    background:
        radial-gradient(
            circle,
            rgba(0, 181, 146, 0.16),
            rgba(0, 181, 146, 0)
        );

    animation:
        journeyCtaFloatOne 8s ease-in-out infinite;
}


/* Orb Two */

.journey-cta-orb-two {
    width: 280px;
    height: 280px;

    right: -110px;
    bottom: -120px;

    background:
        radial-gradient(
            circle,
            rgba(66, 217, 130, 0.14),
            rgba(66, 217, 130, 0)
        );

    animation:
        journeyCtaFloatTwo 10s ease-in-out infinite;
}


/* Orb Three */

.journey-cta-orb-three {
    width: 110px;
    height: 110px;

    top: 30%;
    right: 15%;

    background:
        radial-gradient(
            circle,
            rgba(0, 181, 146, 0.08),
            rgba(0, 181, 146, 0)
        );

    animation:
        journeyCtaFloatThree 7s ease-in-out infinite;
}


/* =========================================================
   DECORATIVE RINGS
========================================================= */

.journey-cta-ring {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    border: 1px solid rgba(0, 181, 146, 0.08);
}


/* Ring One */

.journey-cta-ring-one {
    width: 420px;
    height: 420px;

    left: -250px;
    top: 50%;

    transform: translateY(-50%);
}


/* Ring Two */

.journey-cta-ring-two {
    width: 520px;
    height: 520px;

    right: -330px;
    top: 50%;

    transform: translateY(-50%);

    border-color:
        rgba(66, 217, 130, 0.08);
}


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

.journey-cta-content {
    position: relative;

    width: min(850px, 92%);

    margin: 0 auto;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    z-index: 2;
}


/* =========================================================
   BADGE
========================================================= */

.journey-cta-badge {
    display: inline-flex;

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

    gap: 8px;

    padding: 9px 17px;

    margin-bottom: 23px;

    border-radius: 50px;

    background:
        rgba(0, 181, 146, 0.07);

    border:
        1px solid rgba(0, 181, 146, 0.14);

    color:
        #00a987;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

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

.journey-cta-badge:hover {
    transform: translateY(-2px);

    background:
        rgba(0, 181, 146, 0.11);

    border-color:
        rgba(0, 181, 146, 0.22);
}

.journey-cta-badge i {
    font-size: 10px;

    animation:
        journeyCtaSparkle 2s ease-in-out infinite;
}


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

.journey-cta-title {
    margin: 0;

    max-width: 780px;

    color:
        #0e172d;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    font-weight: 800;

    text-wrap: balance;
}

.journey-cta-title span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #00b592,
            #20c98e,
            #42d982
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


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

.journey-cta-description {
    max-width: 670px;

    margin: 25px auto 0;

    color:
        #6a7282;

    font-size: 15px;

    line-height: 1.8;

    text-wrap: balance;
}


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

.journey-cta-actions {
    display: flex;

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

    gap: 13px;

    margin-top: 35px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.journey-cta-primary {
    position: relative;

    display: inline-flex;

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

    gap: 12px;

    min-width: 190px;

    padding: 15px 23px;

    overflow: hidden;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #00b592,
            #20c98e
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 750;

    box-shadow:
        0 12px 28px rgba(0, 181, 146, 0.20);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.journey-cta-primary::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    transform: skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );

    transition:
        left 0.65s ease;
}

.journey-cta-primary:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 18px 38px rgba(0, 181, 146, 0.28);
}

.journey-cta-primary:hover::before {
    left: 150%;
}

.journey-cta-primary i {
    transition:
        transform 0.3s ease;
}

.journey-cta-primary:hover i {
    transform:
        translateX(4px);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.journey-cta-secondary {
    display: inline-flex;

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

    gap: 9px;

    min-width: 165px;

    padding: 14px 21px;

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.70);

    border:
        1px solid rgba(0, 181, 146, 0.14);

    color:
        #0e172d;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

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

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

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

.journey-cta-secondary:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(0, 181, 146, 0.28);

    background:
        rgba(255, 255, 255, 0.95);

    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.08);
}

.journey-cta-secondary i {
    font-size: 10px;

    color:
        #00a987;

    transition:
        transform 0.3s ease;
}

.journey-cta-secondary:hover i {
    transform:
        translate(2px, -2px);
}


/* =========================================================
   TRUST POINTS
========================================================= */

.journey-cta-trust {
    display: flex;

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

    gap: 22px;

    margin-top: 40px;

    padding: 15px 21px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.56);

    border:
        1px solid rgba(0, 181, 146, 0.08);

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

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Trust Item */

.journey-cta-trust-item {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        #596274;

    font-size: 10px;

    font-weight: 650;

    white-space: nowrap;
}


/* Trust Icon */

.journey-cta-trust-icon {
    width: 25px;
    height: 25px;

    display: flex;

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

    border-radius: 8px;

    background:
        rgba(0, 181, 146, 0.08);

    color:
        #00a987;

    font-size: 10px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.journey-cta-trust-item:hover
.journey-cta-trust-icon {
    transform:
        translateY(-2px)
        rotate(-3deg);

    background:
        rgba(0, 181, 146, 0.14);
}


/* Divider */

.journey-cta-trust-divider {
    width: 1px;

    height: 22px;

    background:
        rgba(0, 181, 146, 0.12);
}


/* =========================================================
   EMOTIONAL NOTE
========================================================= */

.journey-cta-note {
    display: flex;

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

    gap: 8px;

    margin-top: 25px;

    color:
        #7b8493;

    font-size: 10px;

    opacity: 0.9;
}

.journey-cta-note i {
    color:
        #00b592;

    font-size: 11px;

    transition:
        transform 0.3s ease;
}

.journey-cta-note:hover i {
    transform:
        scale(1.2);
}


/* =========================================================
   FLOATING ANIMATIONS
========================================================= */

@keyframes journeyCtaFloatOne {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(25px, 20px, 0);
    }

}


@keyframes journeyCtaFloatTwo {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(-25px, -18px, 0);
    }

}


@keyframes journeyCtaFloatThree {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(0, -15px, 0)
            scale(1.08);
    }

}


/* =========================================================
   SPARKLE ANIMATION
========================================================= */

@keyframes journeyCtaSparkle {

    0%,
    100% {
        transform:
            scale(1)
            rotate(0deg);

        opacity: 0.8;
    }

    50% {
        transform:
            scale(1.25)
            rotate(12deg);

        opacity: 1;
    }

}


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

[data-theme="dark"] .journey-cta-section {
    background:
        linear-gradient(
            135deg,
            #031019 0%,
            #04151d 50%,
            #03140f 100%
        );
}


/* Dark background glow */

[data-theme="dark"] .journey-cta-section::before {
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 204, 168, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 65%,
            rgba(66, 217, 130, 0.08),
            transparent 30%
        );
}


/* Dark rings */

[data-theme="dark"] .journey-cta-ring {
    border-color:
        rgba(0, 204, 168, 0.08);
}


/* Dark heading */

[data-theme="dark"] .journey-cta-title {
    color:
        #f3f7f8;
}


/* Dark description */

[data-theme="dark"] .journey-cta-description {
    color:
        rgba(226, 235, 239, 0.64);
}


/* Dark badge */

[data-theme="dark"] .journey-cta-badge {
    background:
        rgba(0, 204, 168, 0.07);

    border-color:
        rgba(0, 204, 168, 0.14);

    color:
        #39d9b8;
}


/* Dark secondary */

[data-theme="dark"] .journey-cta-secondary {
    background:
        rgba(10, 27, 38, 0.70);

    border-color:
        rgba(0, 204, 168, 0.14);

    color:
        #f3f7f8;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.16);
}

[data-theme="dark"] .journey-cta-secondary:hover {
    background:
        rgba(13, 34, 45, 0.92);

    border-color:
        rgba(0, 204, 168, 0.26);
}


/* Dark trust */

[data-theme="dark"] .journey-cta-trust {
    background:
        rgba(8, 24, 35, 0.64);

    border-color:
        rgba(0, 204, 168, 0.09);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .journey-cta-trust-item {
    color:
        rgba(226, 235, 239, 0.65);
}

[data-theme="dark"] .journey-cta-trust-icon {
    background:
        rgba(0, 204, 168, 0.08);

    color:
        #39d9b8;
}

[data-theme="dark"] .journey-cta-trust-divider {
    background:
        rgba(0, 204, 168, 0.12);
}


/* Dark note */

[data-theme="dark"] .journey-cta-note {
    color:
        rgba(226, 235, 239, 0.50);
}

[data-theme="dark"] .journey-cta-note i {
    color:
        #39d9b8;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    .journey-cta-orb-one,
    .journey-cta-orb-two,
    .journey-cta-orb-three,
    .journey-cta-badge i {
        animation: none;
    }

    .journey-cta-primary,
    .journey-cta-secondary,
    .journey-cta-badge,
    .journey-cta-trust-icon,
    .journey-cta-note i {
        transition: none;
    }

}
/* =========================================================
   VMENTORZ FOOTER
   PART 2 — BASE / DESKTOP STYLING
========================================================= */


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

.vmentorz-footer {
    position: relative;

    width: 100%;

    padding: 85px 0 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #07131d 0%,
            #081b25 48%,
            #061812 100%
        );

    color: #ffffff;

    isolation: isolate;
}


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

.vmentorz-footer::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -280px;
    left: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 181, 146, 0.14),
            transparent 68%
        );

    pointer-events: none;

    z-index: -1;
}


.vmentorz-footer::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -200px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(66, 217, 130, 0.09),
            transparent 68%
        );

    pointer-events: none;

    z-index: -1;
}


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

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.8fr)
        repeat(3, minmax(150px, 1fr));

    gap: 55px;

    padding-bottom: 55px;
}


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

.footer-brand {
    max-width: 360px;
}


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

.footer-logo {
    display: inline-flex;

    align-items: left;

    text-decoration: none;

    margin-bottom: 22px;
}


.footer-logo img {
    display: block;

    width: 250px;
    height: auto;
	

    max-height: 90px;

    object-fit: contain;
}


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

.footer-description {
    max-width: 340px;

    margin: 0;

    color:
        rgba(226, 235, 239, 0.62);

    font-size: 12px;

    line-height: 1.85;
}


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

.footer-brand-line {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    padding: 8px 12px;

    border:
        1px solid rgba(0, 204, 168, 0.12);

    border-radius: 50px;

    background:
        rgba(0, 204, 168, 0.045);

    color:
        rgba(226, 235, 239, 0.60);

    font-size: 9px;

    letter-spacing: 0.2px;
}


.footer-brand-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        #20c98e;

    box-shadow:
        0 0 10px rgba(32, 201, 142, 0.65);

    animation:
        footerDotPulse 2.2s ease-in-out infinite;
}


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

.footer-column {
    min-width: 0;
}


.footer-heading {
    margin: 5px 0 22px;

    color:
        #ffffff;

    font-size: 12px;

    font-weight: 750;

    letter-spacing: 0.4px;
}


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

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 12px;

    padding: 0;

    margin: 0;

    list-style: none;
}


.footer-links li {
    margin: 0;
}


.footer-links a {
    position: relative;

    display: inline-block;

    color:
        rgba(226, 235, 239, 0.57);

    text-decoration: none;

    font-size: 11px;

    line-height: 1.5;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-links a::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;
    height: 1px;

    background:
        #20c98e;

    transition:
        width 0.3s ease;
}


.footer-links a:hover {
    color:
        #ffffff;

    transform:
        translateX(3px);
}


.footer-links a:hover::before {
    width: 100%;
}


/* =========================================================
   CONNECT COLUMN
========================================================= */

.footer-connect-text {
    max-width: 220px;

    margin: 0 0 17px;

    color:
        rgba(226, 235, 239, 0.55);

    font-size: 11px;

    line-height: 1.7;
}


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

.footer-contact-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(226, 235, 239, 0.75);

    text-decoration: none;

    font-size: 10px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-contact-link:hover {
    color:
        #ffffff;

    transform:
        translateX(3px);
}


.footer-contact-icon {
    width: 28px;
    height: 28px;

    display: flex;

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

    border-radius: 9px;

    background:
        rgba(0, 181, 146, 0.08);

    border:
        1px solid rgba(0, 204, 168, 0.10);

    color:
        #20c98e;

    font-size: 10px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.footer-contact-link:hover
.footer-contact-icon {
    transform:
        translateY(-2px);

    background:
        rgba(0, 181, 146, 0.14);
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;
}


.footer-social {
    width: 31px;
    height: 31px;

    display: flex;

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

    border-radius: 10px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    background:
        rgba(255, 255, 255, 0.035);

    color:
        rgba(226, 235, 239, 0.65);

    text-decoration: none;

    font-size: 11px;

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


.footer-social:hover {
    transform:
        translateY(-4px);

    color:
        #ffffff;

    background:
        rgba(0, 181, 146, 0.13);

    border-color:
        rgba(0, 204, 168, 0.22);

    box-shadow:
        0 8px 20px rgba(0, 181, 146, 0.12);
}


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

.footer-cta {
    position: relative;

    display: flex;

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

    gap: 25px;

    padding: 20px 23px;

    border:
        1px solid rgba(0, 204, 168, 0.12);

    border-radius: 18px;

    background:
        linear-gradient(
            120deg,
            rgba(0, 181, 146, 0.075),
            rgba(66, 217, 130, 0.035)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

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

    overflow: hidden;
}


.footer-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 10%;

    width: 80%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(32, 201, 142, 0.35),
            transparent
        );
}


/* =========================================================
   FOOTER CTA CONTENT
========================================================= */

.footer-cta-content {
    display: flex;

    align-items: center;

    gap: 13px;
}


.footer-cta-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 12px;

    background:
        rgba(0, 181, 146, 0.10);

    border:
        1px solid rgba(0, 204, 168, 0.12);

    color:
        #20c98e;

    font-size: 13px;

    animation:
        footerSparkle 3s ease-in-out infinite;
}


.footer-cta-content strong {
    display: block;

    margin-bottom: 4px;

    color:
        #ffffff;

    font-size: 11px;

    font-weight: 700;
}


.footer-cta-content div span {
    display: block;

    color:
        rgba(226, 235, 239, 0.52);

    font-size: 9px;
}


/* =========================================================
   FOOTER CTA BUTTON
========================================================= */

.footer-cta-button {
    display: inline-flex;

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

    gap: 9px;

    flex-shrink: 0;

    padding: 11px 17px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #00b592,
            #20c98e
        );

    color:
        #ffffff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0, 181, 146, 0.16);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.footer-cta-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 13px 28px rgba(0, 181, 146, 0.24);
}


.footer-cta-button i {
    transition:
        transform 0.3s ease;
}


.footer-cta-button:hover i {
    transform:
        translateX(4px);
}


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

.footer-divider {
    width: 100%;

    height: 1px;

    margin-top: 42px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.09),
            transparent
        );
}


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

.footer-bottom {
    display: grid;

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

    align-items: center;

    gap: 20px;

    padding-top: 23px;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copyright {
    display: flex;

    align-items: center;

    gap: 5px;

    color:
        rgba(226, 235, 239, 0.40);

    font-size: 8.5px;
}


/* =========================================================
   MADE WITH
========================================================= */

.footer-made-with {
    display: flex;

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

    gap: 5px;

    color:
        rgba(226, 235, 239, 0.38);

    font-size: 8.5px;
}


.footer-made-with i {
    color:
        #20c98e;

    font-size: 8px;

    animation:
        footerHeartBeat 2s ease-in-out infinite;
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.footer-legal {
    display: flex;

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

    gap: 8px;
}


.footer-legal a {
    color:
        rgba(226, 235, 239, 0.40);

    text-decoration: none;

    font-size: 8.5px;

    transition:
        color 0.3s ease;
}


.footer-legal a:hover {
    color:
        rgba(255, 255, 255, 0.85);
}


.footer-legal-divider {
    color:
        rgba(226, 235, 239, 0.18);

    font-size: 8px;
}


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

@keyframes footerDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
    }

}


@keyframes footerSparkle {

    0%,
    100% {
        transform:
            rotate(0deg)
            scale(1);
    }

    50% {
        transform:
            rotate(8deg)
            scale(1.08);
    }

}


@keyframes footerHeartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.18);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.12);
    }

    60% {
        transform: scale(1);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    .footer-brand-dot,
    .footer-cta-icon,
    .footer-made-with i {
        animation: none;
    }

    .footer-links a,
    .footer-social,
    .footer-cta-button,
    .footer-contact-link,
    .footer-contact-icon {
        transition: none;
    }

}


/* =========================================================
   MULTI-PAGE NAVIGATION — ACTIVE STATE
========================================================= */

.nav-links a.active{
    color:var(--primary);
    font-weight:600;
    position:relative;
}

.nav-links a.active::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-9px;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--primary);
    transform:translateX(-50%);
}

[data-theme="dark"] .header .nav-links.show{
    background:rgba(6,13,26,.97);
    border-color:var(--border);
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}
