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

body{

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

background:#F7F9FB;

color:#1F2937;

}

.container{

width:100%;

max-width:1280px;

margin:auto;

padding:0 32px;

}

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

.header{

height:78px;

position:sticky;

top:0;

background:#fff;

display:flex;

align-items:center;

border-bottom:1px solid #EEF2F7;

box-shadow:0 2px 12px rgba(15,23,42,.04);

z-index:999;

}

.header .container{

display:flex;

align-items:center;

justify-content:space-between;

height:100%;

}


/*******************************************
 Logo
********************************************/

.logo img{

height:50px;

display:block;

}

.nav{

display:flex;

gap:42px;

}

.nav a{

text-decoration:none;

color:#374151;

font-size:15px;

font-weight:500;

transition:.3s;

}

.nav a:hover{

color:#119261;

}

/* =========================================
   Right Menu
========================================= */

.right-menu{

gap:20px;

display:flex;

align-items:center;

}

.login-btn{

text-decoration:none;

color:#111827;

font-weight:600;

}

/* =========================================
   Get Started Button
========================================= */

.primary-btn{

padding:6px 18px;

font-size:16px;

font-weight:600;

border-radius:16px;

background:#119261;

color:#fff;

text-decoration:none;

transition:.3s;


}

.primary-btn:hover{

background:#0F7D55;

transform:translateY(-2px);

}

/* =========================================
   Mobile Menu Button
========================================= */

.menu-btn{

display:none;

flex-direction:column;

gap:6px;

cursor:pointer;

}

.menu-btn span{

width:24px;

height:2px;

background:#0D1B2A;

border-radius:5px;

}

@media(max-width:900px){

.nav{

display:none;

}

.login-btn{

display:none;

}

.menu-btn{

display:flex;

}

/* =========================================
   Mobile Container
========================================= */

.container{

padding:0 20px;

}

.logo img{

height:44px;

}

}
/* =========================================
   Hero Section
========================================= */

.hero{

position:relative;

/*min-height:760px;*/

overflow:hidden;

padding:45px 24px 80px;

display:flex;

flex-direction:column;

align-items:center;

text-align:center;

background:
radial-gradient(circle at 20% 20%,rgba(16,185,129,.10),transparent 40%),
radial-gradient(circle at 85% 15%,rgba(59,130,246,.06),transparent 35%),
linear-gradient(180deg,#ffffff 0%,#F8FCFA 100%);

}

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

.hero{

background-image:

linear-gradient(rgba(17,146,97,.03) 1px,transparent 1px),

linear-gradient(90deg,rgba(17,146,97,.008) 1px,transparent 1px),

radial-gradient(circle at 20% 20%,rgba(16,185,129,.10),transparent 40%),

radial-gradient(circle at 85% 15%,rgba(59,130,246,.06),transparent 35%),

linear-gradient(180deg,#ffffff,#F8FCFA);

background-size:

40px 40px,

40px 40px,

auto,

auto,

auto;

}

/* =========================================
   Hero Background Glow
========================================= */

.hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

left:-220px;

top:-180px;

background:radial-gradient(circle,
rgba(16,185,129,.18),
transparent 70%);

filter:blur(130px);

opacity:.5;

pointer-events:none;

z-index:0;

}

.hero::after{

content:"";

position:absolute;

width:420px;

height:420px;

right:-170px;

bottom:-120px;

background:radial-gradient(circle,
rgba(34,197,94,.12),
transparent 70%);

filter:blur(60px);

pointer-events:none;

z-index:0;

}

/* =========================================
   Hero Content Layer
========================================= */

.hero>*{

position:relative;

z-index:2;

}

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

@keyframes floatGlow{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0px);

}

}

.hero::before{

animation:floatGlow 10s ease-in-out infinite;

}

.hero::after{

animation:floatGlow 14s ease-in-out infinite reverse;

} 




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

.dashboard{
    margin-top:25px;
    width:100%;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    display:flex;
    min-height:560px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.dashboard-sidebar{
    width:220px;
    background:#fbfbfb;
    border-right:1px solid #ececec;
    padding:28px;
}

.dashboard-logo{
    width:150px;
    margin-bottom:30px;
}

.sidebar-item{
    padding:14px 16px;
    border-radius:14px;
    font-weight:600;
    color:#555;
    margin-bottom:8px;
    cursor:pointer;
    transition:.25s;
}

.sidebar-item.active{
    background:#E9F9F1;
    color:#169A63;
}

.sidebar-item:hover{
    background:#f4f4f4;
}

.dashboard-main{
    flex:1;
    padding:30px;
}

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

.dashboard-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.dashboard-top h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #F6F8FA;
    border: 1px solid #EEF0F2;

    padding: 13px 18px;
    border-radius: 30px;

    color: #9AA1AA;
    font-size: 14px;

    width: 280px;
    box-sizing: border-box;
}

.avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #159A62;
    color: #fff;

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

    font-weight: 700;

    flex-shrink: 0;
}

.search-box{
    background:#F5F7FA;
    padding:14px 22px;
    border-radius:30px;
    color:#999;
    min-width:240px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.stat-card span{
    font-size:24px;
}

.stat-card h2{
    font-size:38px;
    margin:14px 0 8px;
}

.stat-card p{
    color:#888;
}

/* ==========================================
   Dashboard Bottom Panels
========================================== */

.dashboard-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-top:22px;
}

.dashboard-panel{
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.panel-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.panel-header h4{
    font-size:24px;
    font-weight:700;
}

.panel-header a{
    color:#169A63;
    font-weight:600;
    text-decoration:none;
}

.panel-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:14px 0;
    border-bottom:1px solid #F1F1F1;
}

.panel-item:last-child{
    border-bottom:none;
}

.panel-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#F5F7FA;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.panel-item strong{
    display:block;
    font-size:17px;
    margin-bottom:4px;
}

.panel-item small{
    color:#888;
    font-size:14px;
}

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

.dashboard-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:24px;
    gap:20px;
}

.storage-box{
    flex:1;
}

.storage-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-size:14px;
    color:#666;
}

.storage-bar{
    width:100%;
    height:10px;
    background:#ECEFF3;
    border-radius:20px;
    overflow:hidden;
}

.storage-fill{
    width:24%;
    height:100%;
    background:#169A63;
    border-radius:20px;
}

.quick-note-btn{
    border:none;
    background:#169A63;
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.quick-note-btn:hover{
    background:#138555;
    transform:translateY(-2px);
}

/* ==========================================
   Dashboard Stat Icon Polish
========================================== */

.stat-icon{
    width:58px;
    height:58px;
    margin:0 auto;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.stat-icon-notes{
    background:#E9F8F1;
}

.stat-icon-files{
    background:#EEF5FF;
}

.stat-icon-collections{
    background:#F4EEFF;
}

.stat-icon-reminders{
    background:#FFF3E7;
}

.stat-card{
    transition:transform .25s ease, box-shadow .25s ease;
}

.stat-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.09);
}

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

.search-box{
    display:flex;
    align-items:center;
    gap:8px;
    background:#F6F8FA;
    border:1px solid #EEF0F2;
    padding:13px 18px;
    border-radius:30px;
    color:#9AA1AA;
    font-size:14px;
    min-width:230px;
  }  
   


/* ---------- Small Tablet / Large Mobile ---------- */

@media (max-width: 800px){

    .dashboard{
        min-height:auto;
        flex-direction:column;
        border-radius:22px;
    }

    .dashboard-sidebar{
        width:100%;
        border-right:none;
        border-bottom:1px solid #ececec;
        padding:18px;
    }

    .dashboard-logo{
        width:130px;
        margin-bottom:16px;
    }

    .sidebar-item{
        display:inline-block;
        margin:3px;
        padding:10px 12px;
        font-size:13px;
    }

    .dashboard-main{
        padding:20px;
    }

    .dashboard-top{
        flex-wrap:wrap;
        gap:15px;
    }

    .dashboard-top h3{
        font-size:26px;
    }

    .search-box{
        min-width:0;
        flex:1;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .stat-card{
        padding:20px 12px;
    }

    .stat-card h2{
        font-size:34px;
    }

    .dashboard-row{
        grid-template-columns:1fr;
    }

}


/* =========================================================
   STEP 3.9 — FINAL MOBILE DASHBOARD
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       DASHBOARD WIDTH
    ----------------------------------------------------- */

    .hero-right {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .dashboard {
        width: calc(100vw - 42px) !important;
        max-width: none !important;
        min-width: 0 !important;

        margin-left: 50% !important;
        transform: translateX(-50%) !important;

        border-radius: 22px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;

        display: block !important;
    }


    /* -----------------------------------------------------
       HIDE SIDEBAR ON MOBILE
    ----------------------------------------------------- */

    .dashboard-sidebar {
        display: none !important;
    }


    /* -----------------------------------------------------
       MAIN DASHBOARD
    ----------------------------------------------------- */

    .dashboard-main {
        width: 100% !important;
        min-width: 0 !important;

        padding: 24px 18px 28px !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       DASHBOARD HEADER
    ----------------------------------------------------- */

.dashboard-top {
    display: grid !important;

    grid-template-columns: minmax(0, 1fr) 58px !important;

    grid-template-areas:
        "title title"
        "search avatar";

    align-items: center !important;

    column-gap: 12px !important;
    row-gap: 18px !important;

    width: 100% !important;

    margin: 0 0 24px 0 !important;
}

.dashboard-top h3 {
    grid-area: title !important;

    margin: 0 !important;

    text-align: center !important;

    font-size: 26px !important;
    line-height: 1.2 !important;
}

.dashboard-top .search-box {
    grid-area: search !important;

    width: 100% !important;
    min-width: 0 !important;

    height: 42px !important;

    box-sizing: border-box !important;

    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;

    border-radius: 30px !important;
}

.dashboard-top .avatar {
    grid-area: avatar !important;

    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;
    min-height: 42px !important;

    margin: 0 !important;

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

    border-radius: 50% !important;

    box-sizing: border-box !important;
}




    /* -----------------------------------------------------
       DASHBOARD CONTENT
    ----------------------------------------------------- */

    .dashboard-content {
        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* -----------------------------------------------------
       STAT CARDS
    ----------------------------------------------------- */

    .stats-grid {
        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 12px !important;

        width: 100% !important;

        margin: 0 !important;
    }


    .stat-card {
        width: 100% !important;
        min-width: 0 !important;

        height: 170px !important;

        padding: 15px 6px !important;

        display: flex !important;

        flex-direction: column !important;

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

        box-sizing: border-box !important;
    }


    .stat-icon {
        width: 54px !important;
        height: 54px !important;

        margin: 0 0 8px 0 !important;

        font-size: 26px !important;
    }


    .stat-card h2 {
        font-size: 26px !important;

        line-height: 1 !important;

        margin: 8px 0 !important;
    }


    .stat-card p {
        font-size: 15px !important;

        line-height: 1.2 !important;

        margin: 0 !important;
    }


    /* -----------------------------------------------------
       RECENT NOTES / FILES
    ----------------------------------------------------- */

    .dashboard-bottom {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 18px !important;

        width: 100% !important;

        margin-top: 18px !important;
    }


    .dashboard-panel {
        width: 100% !important;
        min-width: 0 !important;

        padding: 22px !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       DASHBOARD FOOTER
    ----------------------------------------------------- */

    .dashboard-footer {
        display: flex !important;

        flex-direction: column !important;

        align-items: stretch !important;

        gap: 16px !important;

        width: 100% !important;

        margin-top: 18px !important;
    }


    .storage {
        width: 100% !important;
    }


    .quick-btn {
        width: 100% !important;

        box-sizing: border-box !important;
    }

}

/* =========================================================
   FINAL DESKTOP HERO DASHBOARD
   Scale the COMPLETE dashboard as one unit
========================================================= */

@media (min-width: 769px) {

    /* HERO LAYOUT */

    .hero-container {
        width: 100% !important;
        max-width: 1380px !important;
        margin: 0 auto !important;

        display: grid !important;
        grid-template-columns: 0.9fr 1.1fr !important;

        gap: 40px !important;

        align-items: center !important;
        box-sizing: border-box !important;
    }


    /* =====================================================
       DASHBOARD AREA
    ===================================================== */

    .hero-right {
        width: 100% !important;
        min-width: 0 !important;

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

        box-sizing: border-box !important;
    }


    /* =====================================================
       COMPLETE DASHBOARD

       IMPORTANT:
       Do NOT resize sidebar/cards/fonts individually.
       Zoom the whole dashboard together.
    ===================================================== */

    .dashboard {
        width: 100% !important;
        max-width: 1000px !important;

        zoom: 0.60;

        margin: 0 auto !important;

        box-sizing: border-box !important;
    }

}

/* =========================================================
   KEEP CANVAS — HERO FINAL DESIGN
========================================================= */

/* ---------- Eyebrow ---------- */

.hero-eyebrow {
    font-family: 'Poppins', sans-serif;

    color: #0D1B2A;

    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    

    font-weight: 500;

    margin-bottom: 22px;
}


/* ---------- Main Heading ---------- */

.hero h1 {
    font-family: 'Poppins', sans-serif;

    color: #0D1B2A;

    font-size: 54px;
    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.2px;

    margin: 0 0 28px;
}

.hero h1 span {
    color: #119261;
}


/* ---------- Description ---------- */

.hero p {
    font-family: 'Poppins', sans-serif;

    color: #64748B;

    display: block;

    font-size: 18px;
    line-height: 1.65;

    max-width: 560px;

    margin: 0 0 30px;
}

/* ---------- Buttons ---------- */

.hero-buttons {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 14px;

    margin: 0;

    flex-wrap: nowrap;
}

.hero-primary-btn,
.hero-secondary-btn {

    height: 56px;

    padding: 0 30px;

    border-radius: 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    white-space: nowrap;
}


/* Primary */

.hero-primary-btn {

    min-width: 210px;

    background: #119261;

    color: #fff;

    box-shadow:
        0 10px 25px rgba(17,146,97,.18);
}


/* Secondary */

.hero-secondary-btn {

    min-width: 200px;

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

    color: #0D1B2A;

    border: 1px solid #E5EAF0;
}


/* ---------- Highlights ---------- */

.hero-highlights {

    display: flex;

    align-items: flex-start;

    justify-content: flex-start;

    gap: 15px;

    margin-top: 24px;

    font-size: 15px;

    color: #475569;
}

.hero-highlights div {

    display: flex;

    align-items: center;

    gap: 6px;

    white-space: nowrap;
}

.hero-highlights span {
    font-weight: 500;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1101px) {

    .hero-left {

        text-align: left;

        max-width: 600px;
    }

    .hero-eyebrow {

        font-size: 26px;

        margin-bottom: 22px;
    }

    .hero h1 {

        font-size: 42px;

        margin-bottom: 28px;
    }

    .hero p {

        font-size: 18px;

        max-width: 560px;
    }

    .hero-buttons {

        justify-content: flex-start;
    }

    .hero-highlights {

        justify-content: flex-start;
    }
}


/* =========================================================
   TABLET — 769px to 1100px
   Desktop-style Hero
========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    /* -----------------------------------------
       HERO CONTAINER
    ----------------------------------------- */

    .hero-container {
        width: 100% !important;
        max-width: 100% !important;

        display: grid !important;

        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;

        gap: 30px !important;

        align-items: center !important;
    }


    /* -----------------------------------------
       LEFT HERO
    ----------------------------------------- */

    .hero-left {
        width: 100% !important;
        max-width: none !important;

        min-width: 0 !important;

        text-align: left !important;
    }


    .hero-eyebrow {
        font-size: 20px !important;
        line-height: 1.4 !important;

        margin-bottom: 20px !important;

        text-align: left !important;
    }


    .hero h1 {
        font-size: 42px !important;
        line-height: 1.18 !important;

        margin-bottom: 26px !important;

        text-align: left !important;
    }


    .hero-left > p {
        width: 100% !important;

        max-width: 560px !important;

        margin: 0 0 28px 0 !important;

        text-align: left !important;

        font-size: 18px !important;
        line-height: 1.65 !important;
    }


    /* -----------------------------------------
       BUTTONS
    ----------------------------------------- */

    .hero-buttons {
        width: 100% !important;

        display: flex !important;

        flex-direction: row !important;

        justify-content: flex-start !important;

        align-items: center !important;

        gap: 14px !important;

        flex-wrap: nowrap !important;
    }


    .hero-primary-btn,
    .hero-secondary-btn {
        height: 56px !important;

        min-width: 0 !important;

        padding: 0 24px !important;

        font-size: 16px !important;

        white-space: nowrap !important;
    }


    /* -----------------------------------------
       HERO HIGHLIGHTS
       EXACTLY LIKE DESKTOP
    ----------------------------------------- */

    .hero-highlights {
        width: 100% !important;

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-start !important;

        gap: 18px !important;

        margin-top: 24px !important;

        margin-bottom: 0 !important;

        padding: 0 !important;

        font-size: 15px !important;

        color: #475569 !important;

        flex-wrap: nowrap !important;

        text-align: left !important;
    }


    .hero-highlights div {
        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-start !important;

        gap: 6px !important;

        margin: 0 !important;

        padding: 0 !important;

        white-space: nowrap !important;

        text-align: left !important;

        font-size: 15px !important;

        line-height: 1.3 !important;

        flex: 0 0 auto !important;
    }


    .hero-highlights span {
        display: inline !important;

        font-size: 15px !important;

        line-height: 1.3 !important;

        font-weight: 500 !important;

        white-space: nowrap !important;
    }


    /* -----------------------------------------
       DASHBOARD
    ----------------------------------------- */

    .hero-right {
        width: 100% !important;

        min-width: 0 !important;

        display: flex !important;

        justify-content: center !important;

        align-items: center !important;
    }
}


/* =========================================================
   MOBILE — MATCH REFERENCE DESIGN
========================================================= */

@media (max-width: 600px) {

    .hero {

        padding-top: 48px;

        padding-left: 16px;
        padding-right: 16px;

        padding-bottom: 50px;
    }


    .hero-left {

        width: 100%;

        max-width: 100%;

        text-align: left;
    }


    /* Top statement */

    .hero-eyebrow {

        font-size: 20px;

        line-height: 1.4;

        font-weight: 500;

        margin-bottom: 20px;

        color: #0D1B2A;
    }


    /* Main heading */

    .hero h1 {

        font-size: 30px;

        line-height: 1.18;

        letter-spacing: -0.5px;

        margin: 0 0 26px;
    }


    /* Description */

    .hero p {

        font-size: 17px;

        line-height: 1.65;

        max-width: 350px;

        margin: 0 auto 28px;
        
        text-align: left;
    }


    /* Buttons */

    .hero-buttons {

        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 12px;
    }


    .hero-primary-btn,
    .hero-secondary-btn {

        width: 100%;

        min-width: 0;

        height: 60px;

        border-radius: 18px;

        font-size: 17px;
    }


    /* Highlights */

    .hero-highlights {

        width: 100%;

        display: grid;

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

        gap: 8px;

        margin-top: 20px;
        margin-bottom: 38px;

        font-size: 14px;

        align-items: start;
    }


    .hero-highlights div {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        gap: 5px;

        white-space: normal;

        text-align: center;
    }


    .hero-highlights div:first-child,
    .hero-highlights div:nth-child(2),
    .hero-highlights div:nth-child(3) {

        flex-direction: column;
    }


    .hero-highlights span {

        font-size: 10px;

        line-height: 1.3;
    }
}

/* =========================================================
   FINAL HERO TEXT ALIGNMENT
   Keep description aligned with H1
========================================================= */

.hero-left > p {
    display: block !important;

    width: 100% !important;
    max-width: 600px !important;

    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 28px !important;
    margin-left: 0 !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    text-align: left !important;

    box-sizing: border-box !important;
}


/* Tablet + Mobile */

@media (max-width: 1100px) {

    .hero-left > p {
        width: 100% !important;
        max-width: 600px !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        text-align: left !important;
    }
}


/* Mobile */

@media (max-width: 600px) {

    .hero-left > p {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        text-align: left !important;
    }
}

/* =========================================================
   KEEP CANVAS — TABLET FINAL FIX
   601px–1100px
========================================================= */

@media (min-width: 601px) and (max-width: 1100px) {

    /* =====================================================
       HERO
       Keep tablet hero as ONE COLUMN
    ===================================================== */

    .hero-container {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        gap: 0 !important;
    }


    /* =====================================================
       HERO LEFT
       Desktop-style LEFT alignment
    ===================================================== */

    .hero-left {
        width: 100% !important;
        max-width: 100% !important;

        text-align: left !important;
    }


    .hero-eyebrow {
        width: 100% !important;

        text-align: left !important;

        font-size: 20px !important;
        line-height: 1.4 !important;

        margin-bottom: 20px !important;
    }


    .hero h1 {
        width: 100% !important;

        text-align: left !important;

        font-size: 42px !important;
        line-height: 1.18 !important;

        margin: 0 0 26px 0 !important;
    }


    .hero-left > p {
        width: 100% !important;
        max-width: 600px !important;

        text-align: left !important;

        margin: 0 0 28px 0 !important;
    }


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

    .hero-buttons {
        width: 100% !important;

        display: flex !important;
        flex-direction: row !important;

        justify-content: flex-start !important;
        align-items: center !important;

        gap: 14px !important;

        flex-wrap: nowrap !important;
    }


    .hero-primary-btn,
    .hero-secondary-btn {
        width: auto !important;

        min-width: 0 !important;

        height: 56px !important;

        padding: 0 24px !important;

        font-size: 16px !important;

        border-radius: 16px !important;
    }


    /* =====================================================
       HIGHLIGHTS
       Desktop-style horizontal row
    ===================================================== */

    .hero-highlights {
        width: 100% !important;

        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;
        justify-content: flex-start !important;

        gap: 28px !important;

        margin-top: 30px !important;
        margin-bottom: 24px !important;

        padding: 0 !important;

        flex-wrap: nowrap !important;

        font-size: 15px !important;

        text-align: left !important;
    }


    .hero-highlights div {
        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;

        gap: 6px !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: nowrap !important;

        text-align: left !important;

        font-size: 15px !important;

        flex: 0 0 auto !important;
    }


    .hero-highlights span {
        display: inline !important;

        font-size: 15px !important;

        line-height: 1.3 !important;

        white-space: nowrap !important;
    }


    /* =====================================================
       DASHBOARD
       Tablet: hide sidebar, keep dashboard main clean
    ===================================================== */

    .hero-right {
        width: 100% !important;

        max-width: none !important;

        margin-top: 25px !important;

        display: block !important;
    }


    .dashboard {
        width: 100% !important;
        max-width: none !important;

        min-width: 0 !important;

        margin: 0 !important;

        display: block !important;

        border-radius: 22px !important;

        overflow: hidden !important;

        zoom: 1 !important;
    }


    /* Hide desktop sidebar on tablet */

    .dashboard-sidebar {
        display: none !important;
    }


    /* Dashboard main */

    .dashboard-main {
        width: 100% !important;
        min-width: 0 !important;

        padding: 28px !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       DASHBOARD TOP
       Title + search + avatar
    ===================================================== */

    .dashboard-top {
    display: grid !important;

    grid-template-columns: minmax(0, 1fr) 240px 42px !important;

    align-items: center !important;

    gap: 12px !important;

    margin-bottom: 28px !important;
}


    .dashboard-top h3 {
        font-size: 28px !important;

        margin: 0 !important;

        white-space: nowrap !important;
    }


    .dashboard-top .search-box {
        width: 210px !important;
        margin-left: 20px !important;

        min-width: 0 !important;
    }


    .dashboard-top .avatar {
        width: 42px !important;
        height: 42px !important;
    }


    /* =====================================================
       STAT CARDS
    ===================================================== */

    .stats-grid {
        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 18px !important;
    }


    .stat-card {
        width: 100% !important;

        min-width: 0 !important;

        padding: 25px !important;
    }


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

    .dashboard-row {
        display: grid !important;

        grid-template-columns: 1fr 1fr !important;

        gap: 18px !important;
    }

}

/* =========================================
   Header Action Text
========================================= */

.mobile-action-text {
    display: none;
}


/* =========================================
   TABLET + MOBILE HEADER
========================================= */

@media (max-width: 900px) {

    /* Hide original Login text/link */
    .login-btn {
        display: none !important;
    }

    /* Change green button text to Login */
    .desktop-action-text {
        display: none !important;
    }

    .mobile-action-text {
        display: inline !important;
    }

}

/* =========================================================
   KEEP CANVAS — SECTION 2
   PROBLEM / SOLUTION
========================================================= */

.problem-section {

    width: 100%;

    padding: 50px 24px 100px;

    background: #ffffff;

    position: relative;
}


.problem-container {

    max-width: 1180px;

    margin: 0 auto;
}


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

.problem-heading {

    text-align: center;

    max-width: 960px;

    margin: 0 auto 45px;
}


.problem-heading h2 {

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

    color: #0D1B2A;

    font-size: 42px;

    line-height: 1.5;

    font-weight: 700;

    margin: 0 0 18px;

    letter-spacing: -0.8px;
}


.problem-heading h2 span {

    color: #119261;
}


.problem-heading p {

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

    color: #64748B;

    font-size: 17px;

    line-height: 1.7;

    margin: 0 auto;
    
    max-width: 620px;
}


/* =========================================================
   COMPARISON AREA
========================================================= */

.problem-comparison {

    display: grid;

    grid-template-columns: 1fr 70px 1fr;

    align-items: center;

    gap: 20px;

    max-width: 1000px;

    margin: 0 auto;
}


/* =========================================================
   CARDS
========================================================= */

.problem-card {

    background: #ffffff;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid #E8EDF2;

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


.problem-card-header {

    padding: 18px 24px;

    border-bottom: 1px solid #EEF2F5;

    text-align: center;
}


.problem-card-header h3 {

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

    font-size: 17px;

    font-weight: 700;

    margin: 0;
}


/* Before */

.problem-before {

    border-color: #F1DDDD;
}


.problem-before .problem-card-header {

    background: #FFF7F7;
}


.problem-before .problem-card-header h3 {

    color: #8B3A3A;
}


/* After */

.problem-after {

    border-color: #D9EEE4;
}


.problem-after .problem-card-header {

    background: #F3FBF7;
}


.problem-after .problem-card-header h3 {

    color: #119261;
}


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

.problem-list {

    padding: 20px 24px;
}


.problem-item {

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 48px;

    color: #475569;

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

    font-size: 15px;

    line-height: 1.4;
}


.problem-icon {

    width: 30px;

    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 15px;
}


/* Before icons */

.problem-before .problem-icon {

    background: #FFF1F1;

}


/* After icons */

.problem-after .problem-icon {

    background: #E8F8F0;

    color: #119261;

    font-weight: 700;
}


/* =========================================================
   CENTER ARROW
========================================================= */

.problem-arrow {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #119261;

    font-size: 38px;

    font-weight: 600;

    margin: 0 auto;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .problem-section {

        padding: 50px 20px 85px;
    }


    .problem-heading {
    
        text-align:left;
        margin-bottom: 45px;
    }


    .problem-heading h2 {

        font-size: 36px;
        
    }


    .problem-comparison {

        grid-template-columns: 1fr 50px 1fr;

        gap: 10px;
    }


    .problem-list {

        padding: 18px;
    }


    .problem-item {

        font-size: 14px;

        gap: 10px;
    }

}


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

@media (max-width: 600px) {

    .problem-section {

        padding: 50px 10px 80px;
        text-align: left;
    }

    .problem-heading {
       width: 100%;
        max-width: 520px;
        margin: 0 auto 38px;
        text-align: left;
    }

    .problem-heading h2 {
        font-size: 27px;
font-weight:600;
        line-height: 1.45;
        letter-spacing: -0.3px;
        margin-bottom: 16px;
       /* white-space: nowrap;*/
    }

    .problem-heading h2 span {
        display: block;
        
    }

    .problem-heading p {
        font-size: 16px;
        line-height: 1.65;
        max-width: 100%;
        margin: 0;
    }

    .problem-comparison {

        display: flex;

        flex-direction: column;

        gap: 15px;

        width: 100%;
    }


    .problem-card {

        width: 100%;

        border-radius: 20px;
    }


    .problem-card-header {

        padding: 16px 20px;
    }


    .problem-list {

        padding: 16px 20px;
    }


    .problem-item {

        min-height: 44px;

        font-size: 14px;
    }


    .problem-arrow {

        width: 45px;

        height: 45px;

        font-size: 30px;

        transform: rotate(90deg);

        margin: 0;
    }

}

/* =========================================================
   SECTION 2 — DESKTOP + TABLET
   SIDE-BY-SIDE COMPARISON
========================================================= */

@media (min-width: 769px) {

    .problem-comparison {

        width: 100% !important;
        max-width: 1100px !important;

        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            70px
            minmax(0, 1fr) !important;

        align-items: center !important;

        gap: 20px !important;

        margin: 0 auto !important;
    }


    .problem-card {

        width: 100% !important;

        min-width: 0 !important;

        margin: 0 !important;
    }


    .problem-arrow {

        display: flex !important;

        width: 60px !important;
        height: 60px !important;

        margin: 0 auto !important;

        transform: none !important;

        align-items: center !important;
        justify-content: center !important;
    }

}

/* =========================================================
   KEEP CANVAS — SECTION 3
   EVERYTHING YOU NEED
========================================================= */

.features-section {

    width: 100%;

    padding: 70px 24px 110px;

    background: #F8FAFB;

    position: relative;
}


.features-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;
}


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

.features-heading {

    max-width: 960px;

    margin: 0 auto 45px;

    text-align: center;
}


.features-heading h2 {

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

    color: #0D1B2A;

    font-size: 42px;

    line-height: 1.5;

    font-weight: 700;

    letter-spacing: -0.8px;

    margin: 0 0 18px;
}


.features-heading h2 span {

    color: #119261;
}


.features-heading p {

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

    color: #64748B;

    font-size: 17px;

    line-height: 1.7;

    margin: 0 auto;

    max-width: 640px;
}


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

.features-grid {

    display: grid;

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

    gap: 20px;

    width: 100%;
}


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

.feature-card {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 26px 24px;

    background: #ffffff;

    border: 1px solid #E8EDF2;

    border-radius: 20px;

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

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

    min-width: 0;
}


.feature-card:hover {

    transform: translateY(-5px);

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

    border-color: #DCE8E2;
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {

    width: 54px;

    height: 54px;

    flex: 0 0 54px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;
}


/* Soft icon backgrounds */

.feature-icon-notes {

    background: #E9F8F1;
}


.feature-icon-files {

    background: #EEF5FF;
}


.feature-icon-tasks {

    background: #EEF9F2;
}


.feature-icon-goals {

    background: #F4EEFF;
}


.feature-icon-reminders {

    background: #FFF3E7;
}


.feature-icon-passwords {

    background: #FFF0F3;
}


.feature-icon-finances {

    background: #FFF8E8;
}


.feature-icon-bookmarks {

    background: #F1F3FF;
}


.feature-icon-tools {

    background: #EDF7F7;
}


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

.feature-content {

    min-width: 0;
}


.feature-content h3 {

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

    color: #0D1B2A;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 650;

    margin: 2px 0 8px;
}


.feature-content p {

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

    color: #64748B;

    font-size: 14px;

    line-height: 1.55;

    margin: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .features-section {

        padding: 50px 20px 90px;
    }


    .features-heading {
    
        margin-bottom: 45px;
        padding-left: 5px;
        padding-right: 5px;
        text-align:left;
    }


    .features-heading h2 {

        font-size: 36px;
    }


    .features-grid {

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

        gap: 16px;
    }


    .feature-card {

        padding: 22px 20px;

        gap: 15px;
    }


    .feature-icon {

        width: 50px;

        height: 50px;

        flex-basis: 50px;

        font-size: 25px;
    }

}


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

@media (max-width: 600px) {

    .features-section {

        padding: 50px 20px 75px;
    }


    .features-heading {

        text-align: left;

        margin: 0 0 35px;
    }


    .features-heading h2 {

        font-size: 27px;
        
        font-weight:600;

        line-height: 1.45;

        letter-spacing: -0.3px;

        margin-bottom: 14px;
        
    }
    
    .features-heading h2 span {
    
        font-weight:600;
    }


    .features-heading p {

        font-size: 16px;

        line-height: 1.65;

        max-width: 100%;
    }


    .features-grid {

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

        gap: 12px;
    }


    .feature-card {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;

        padding: 20px 16px;

        border-radius: 18px;

        min-height: 190px;
    }


    .feature-icon {

        width: 48px;

        height: 48px;

        flex-basis: 48px;

        border-radius: 14px;

        font-size: 24px;
    }


    .feature-content h3 {

        font-size: 16px;

        margin-bottom: 7px;
    }


    .feature-content p {

        font-size: 13px;

        line-height: 1.5;
    }

}


/* =========================================================
   KEEP CANVAS — SECTION 4
   BENEFITS
========================================================= */

.benefits-section {

    width: 100%;

    padding: 70px 24px 120px;

    background: #ffffff;

    position: relative;
}


.benefits-container {

    max-width: 1180px;

    margin: 0 auto;
}


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

.benefits-heading {

    max-width: 850px;

    margin: 0 auto 45px;

    text-align: center;
}


.benefits-heading h2 {

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

    color: #0D1B2A;

    font-size: 42px;

    line-height: 1.5;

    font-weight: 700;

    letter-spacing: -1px;

    margin: 0 0 20px;
}


.benefits-heading h2 span {

    color: #119261;
}


.benefits-heading p {

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

    color: #64748B;

    font-size: 18px;

    line-height: 1.7;

    max-width: 760px;

    margin: 0 auto;
}


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

.benefits-grid {

    display: grid;

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

    gap: 24px;

    max-width: 1100px;

    margin: 0 auto;
}


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

.benefit-card {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 36px 32px;

    background: #ffffff;

    border: 1px solid #E6EBEF;

    border-radius: 24px;

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

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.benefit-card:hover {

    transform: translateY(-5px);

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


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

.benefit-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #EAF8F2;

    font-size: 30px;

    margin-bottom: 26px;
}


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

.benefit-content h3 {

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

    color: #0D1B2A;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 700;

    margin: 0 0 12px;
}


.benefit-content p {

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

    color: #64748B;

    font-size: 16px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .benefits-section {

        padding: 50px 20px 90px;
    }


    .benefits-heading {

        margin-bottom: 50px;
        text-align:left;
    }


    .benefits-heading h2 {
   
        font-size: 36px;
        
        padding-right: 60px;
    }


    .benefits-heading p {

        font-size: 17px;
    }


    .benefits-grid {

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

        gap: 16px;
    }


    .benefit-card {

        padding: 28px 22px;

        border-radius: 20px;
    }


    .benefit-icon {

        width: 54px;

        height: 54px;

        font-size: 27px;

        margin-bottom: 20px;
    }


    .benefit-content h3 {

        font-size: 18px;
    }


    .benefit-content p {

        font-size: 14px;

        line-height: 1.55;
    }

}


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

@media (max-width: 600px) {

    .benefits-section {

        padding: 50px 20px 90px;
    }


    .benefits-heading {

        text-align: left;

        margin-bottom: 40px;
    }


    .benefits-heading h2 {

        font-size: 30px;
        font-weight:600;

        line-height: 1.5;

        letter-spacing: -0.5px;

        margin-bottom: 18px;
        padding: 0 !important;
    }
    
  .benefits-heading h2 span {
  font-weight:600;
  
}

    .benefits-heading p {

        font-size: 16px;

        line-height: 1.65;
    }


    .benefits-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .benefit-card {

        flex-direction: row;

        align-items: flex-start;

        gap: 18px;

        padding: 24px 22px;

        border-radius: 20px;
    }


    .benefit-icon {

        width: 52px;

        height: 52px;

        min-width: 52px;

        font-size: 25px;

        margin: 0;
    }


    .benefit-content {

        flex: 1;
    }


    .benefit-content h3 {

        font-size: 18px;

        margin-bottom: 7px;
    }


    .benefit-content p {

        font-size: 14px;

        line-height: 1.55;
    }

}

/* =========================================================
   KEEP CANVAS — SECTION 5
   PRIVACY & SECURITY
========================================================= */

.privacy-section {

    width: 100%;

    padding: 70px 24px 120px;

    background: #F8FAFB;

    position: relative;
}


.privacy-container {

    max-width: 1180px;

    margin: 0 auto;
}


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

.privacy-heading {

    max-width: 850px;

    margin: 0 auto 45px;

    text-align: center;
}


.privacy-heading h2 {

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

    color: #0D1B2A;

    font-size: 42px;

    line-height: 1.5;

    font-weight: 700;

    letter-spacing: -0.8px;

    margin: 0 0 20px;
}


.privacy-heading h2 span {

    color: #119261;
}


.privacy-heading p {

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

    color: #64748B;

    font-size: 18px;

    line-height: 1.7;

    max-width: 660px;

    margin: 0 auto;
}


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

.privacy-panel {

    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 55px;

    align-items: center;

    padding: 55px;

    background: #ffffff;

    border: 1px solid #E2EAE6;

    border-radius: 30px;

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


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

.privacy-visual {

    min-height: 330px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #EAF8F2 0%,
            #F3FBF7 55%,
            #EEF7F4 100%
        );

    border: 1px solid #D8EEE4;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    padding: 35px;
}


/* Lock */

.privacy-lock {

    width: 100px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    font-size: 48px;

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

    margin-bottom: 25px;
}


/* Brand */

.privacy-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}


.privacy-logo {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #119261;

    color: #ffffff;

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

    font-size: 21px;

    font-weight: 800;
}


.privacy-brand strong {

    display: block;

    color: #0D1B2A;

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

    font-size: 19px;

    font-weight: 700;
}


.privacy-brand small {

    display: block;

    color: #64748B;

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

    font-size: 12px;

    margin-top: 3px;
}


/* Status */

.privacy-status {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 16px;

    border-radius: 50px;

    background: #ffffff;

    color: #119261;

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

    font-size: 13px;

    font-weight: 600;

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


.status-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #119261;
}


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

.privacy-benefits {

    display: flex;

    flex-direction: column;

    gap: 30px;
}


.privacy-benefit {

    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.privacy-benefit-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #EAF8F2;

    font-size: 25px;
}


.privacy-benefit h3 {

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

    color: #0D1B2A;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 700;

    margin: 0 0 7px;
}


.privacy-benefit p {

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

    color: #64748B;

    font-size: 15px;

    line-height: 1.6;

    margin: 0;

    max-width: 430px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .privacy-section {

        padding: 50px 20px 100px;
    }


    .privacy-heading {

        margin-bottom: 45px;
        text-align:left;
    }


    .privacy-heading h2 {

        font-size: 36px;
    }


    .privacy-heading p {

        font-size: 17px;
    }


    .privacy-panel {

        grid-template-columns: 1fr 1fr;

        gap: 30px;

        padding: 35px;
    }


    .privacy-visual {

        min-height: 300px;
    }


    .privacy-benefits {

        gap: 24px;
    }

}


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

@media (max-width: 600px) {

    .privacy-section {

        padding: 40px 16px 90px;
    }


    .privacy-heading {

        text-align: left;
        
        
        padding: 0 5px 0;

        margin-bottom: 30px;
    }


    .privacy-heading h2 {

        font-size: 30px;
        
        font-weight:600;

        line-height: 1.35;

        letter-spacing: -0.5px;
    }

    .privacy-heading h2 span {
    font-weight:600;
}
    .privacy-heading p {

        font-size: 16px;

        line-height: 1.65;
    }


    .privacy-panel {

        display: flex;

        flex-direction: column;

        gap: 35px;

        padding: 22px;

        border-radius: 24px;
    }


    .privacy-visual {

        width: 100%;

        min-height: 280px;

        border-radius: 20px;

        padding: 25px;
    }


    .privacy-lock {

        width: 82px;

        height: 82px;

        font-size: 40px;

        margin-bottom: 20px;
    }


    .privacy-brand {

        margin-bottom: 18px;
    }


    .privacy-benefits {

        gap: 26px;

        padding: 4px 2px;
    }


    .privacy-benefit {

        gap: 14px;
    }


    .privacy-benefit-icon {

        width: 48px;

        height: 48px;

        min-width: 48px;

        font-size: 22px;
    }


    .privacy-benefit h3 {

        font-size: 18px;
    }


    .privacy-benefit p {

        font-size: 14px;

        line-height: 1.55;
    }

}


/* =========================================================
   KEEP CANVAS — HOW IT WORKS
========================================================= */

.how-section {

    width: 100%;

    padding: 70px 24px 100px;

    background: #ffffff;

    position: relative;
}


.how-container {

    max-width: 1180px;

    margin: 0 auto;
}


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

.how-heading {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 45px;
}


.how-heading h2 {

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

    color: #0D1B2A;

    font-size: 42px;

    line-height: 1.5;

    font-weight: 700;

    letter-spacing: -0.8px;

    margin: 0 0 20px;
}


.how-heading h2 span {

    color: #119261;
}


.how-heading p {

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

    color: #64748B;

    font-size: 18px;

    line-height: 1.7;

    max-width: 660px;

    margin: 0 auto;
}


/* =========================================================
   STEPS
========================================================= */

.how-steps {

    display: grid;

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

    align-items: center;

    gap: 20px;
}


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

.how-step {

    background: #ffffff;

    border: 1px solid #d7dee0;

    border-radius: 22px;

    padding: 32px 26px;

    min-height: 285px;

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

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.how-step:hover {

    transform: translateY(-4px);

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


/* =========================================================
   NUMBER
========================================================= */

.how-number {

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

    color: #119261;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;

    letter-spacing: 0.5px;
}


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

.how-icon {

    width: 58px;

    height: 58px;

    border-radius: 16px;

    background: #EAF8F2;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin-bottom: 22px;
}


/* =========================================================
   TITLE
========================================================= */

.how-step h3 {

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

    color: #0D1B2A;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;

    margin: 0 0 12px;
}


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

.how-step p {

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

    color: #64748B;

    font-size: 16px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================================
   CONNECTOR
========================================================= */

.how-connector {

    display: flex;

    align-items: center;

    justify-content: center;

    color: #119261;

    font-size: 34px;

    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .how-section {

        padding: 50px 20px 100px;
    }


    .how-heading {

        margin-bottom: 45px;
        
        text-align:left;
    }


    .how-heading h2 {

        font-size: 36px;
    }


    .how-heading p {

        font-size: 17px;
    }


    .how-steps {

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

        gap: 10px;
    }


    .how-step {

        padding: 26px 22px;

        min-height: 270px;
    }


    .how-step h3 {

        font-size: 20px;
    }


    .how-step p {

        font-size: 15px;
    }

}

/* =========================================================
   TABLET CARD IMPROVEMENT
========================================================= */

@media (min-width: 601px) and (max-width: 1100px) {

    .how-steps {

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

        gap: 8px;
    }


    .how-step {

        height: 300px;

        min-height: 300px;

        padding: 22px 20px 0;

        box-sizing: border-box;

        display: flex;

        flex-direction: column;
    }


    .how-number {

        margin-bottom: 14px;
    }


    .how-icon {

        width: 54px;

        height: 54px;

        margin-bottom: 20px;

        font-size: 26px;
    }


    .how-step h3 {

        font-size: 20px;

        line-height: 1.3;

        margin-bottom: 10px;
    }


    .how-step p {

        font-size: 15px;

        line-height: 1.55;
    }


    .how-connector {

        font-size: 26px;
    }
}


/* =========================================================
   MOBILE — HOW IT WORKS
========================================================= */

@media (max-width: 600px) {

    .how-section {

        padding: 40px 20px 85px;
    }


    /* -----------------------------------------------------
       HEADING
    ----------------------------------------------------- */

    .how-heading {

        text-align: left;

        margin-bottom: 30px;
    }


    .how-heading h2 {

        font-size: 30px;
        
        font-weight:600;

        line-height: 1.35;

        letter-spacing: -0.5px;

        margin-bottom: 16px;
    }
    
    .how-heading h2 span {
    
    font-weight:600;
    }


    .how-heading p {

        font-size: 16px;

        line-height: 1.6;

        margin: 0;
    }


    /* -----------------------------------------------------
       STEPS
    ----------------------------------------------------- */

    .how-steps {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    /* -----------------------------------------------------
       COMPACT STEP CARD
    ----------------------------------------------------- */

    .how-step {

        width: 100%;

        min-height: auto;

        padding: 20px 20px;

        border-radius: 18px;

        display: grid;

        grid-template-columns: 48px 1fr;

        grid-template-rows: auto auto;

        column-gap: 16px;

        row-gap: 4px;

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


    /* -----------------------------------------------------
       NUMBER
    ----------------------------------------------------- */

    .how-number {

        grid-column: 1 / -1;

        margin: 0 0 8px;

        font-size: 13px;

        line-height: 1;
    }


    /* -----------------------------------------------------
       ICON
    ----------------------------------------------------- */

    .how-icon {

        grid-column: 1;

        grid-row: 2;

        width: 48px;

        height: 48px;

        border-radius: 14px;

        margin: 0;

        font-size: 23px;
    }


    /* -----------------------------------------------------
       TITLE
    ----------------------------------------------------- */

    .how-step h3 {

        grid-column: 2;

        grid-row: 2;

        align-self: center;

        font-size: 20px;

        line-height: 1.3;

        margin: 0;
    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .how-step p {

        grid-column: 2;

        grid-row: 3;

        font-size: 15px;

        line-height: 1.55;

        margin: 2px 0 0;
    }


    /* -----------------------------------------------------
       ARROW
    ----------------------------------------------------- */

    .how-connector {

        width: 100%;

        height: 38px;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 24px;

        transform: rotate(90deg);

        margin: 0;
    }

}

/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {

    background: #f7f9fb;

    padding: 70px 20px 100px;

}


.pricing-container {

    max-width: 1100px;

    margin: 0 auto;

}


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

.pricing-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 55px;

}


.pricing-heading h2 {

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

    color: #0D1B2A;

    font-size: 42px;

    line-height: 1.5;
    
    letter-spacing: -0.8px;

    font-weight: 700;

    margin: 0 0 18px;

}


.pricing-heading h2 span {

    color: #119261;

}


.pricing-heading p {

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

    color: #64748B;

    font-size: 18px;

    line-height: 1.65;

    margin: 0 auto;

    max-width: 700px;

}


/* =========================================================
   REGION SELECTOR
========================================================= */

.pricing-region {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    padding: 8px 12px;

    background: #ffffff;

    border: 1px solid #d7dee0;

    border-radius: 12px;

    box-shadow: 0 4px 15px rgba(15, 23, 42, .04);

}


.pricing-region span {

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

    color: #64748B;

    font-size: 14px;

}


.pricing-region select {

    border: none;

    outline: none;

    background: transparent;

    color: #0D1B2A;

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

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

}

/* =========================================================
   COUNTRY DROPDOWN
========================================================= */

.pricing-region {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}


.pricing-region > span {
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 15px;
    font-weight: 600;
}


/* Dropdown wrapper */

.country-dropdown {
    position: relative;
    width: 230px;
}


/* Selected country button */

.country-selected {
    width: 100%;
    height: 46px;

    padding: 0 15px;

    background: #ffffff;

    border: 1px solid #d7dee0;

    border-radius: 12px;

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

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

    color: #0D1B2A;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

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


.country-selected:hover {
    border-color: #119261;
}


.country-dropdown.active .country-selected {
    border-color: #119261;

    box-shadow:
        0 0 0 3px rgba(17, 146, 97, .10);
}


.country-arrow {
    color: #64748B;

    font-size: 20px;

    line-height: 1;

    transition: transform .2s ease;
}


.country-dropdown.active .country-arrow {
    transform: rotate(180deg);
}


/* Dropdown menu */

.country-menu {
    position: absolute;

    top: calc(100% + 8px);

    left: 0;

    width: 100%;

    background: #ffffff;

    border: 1px solid #d7dee0;

    border-radius: 14px;

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

    overflow: hidden;

    z-index: 1000;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-6px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}


.country-dropdown.active .country-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* Search */

.country-search {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px;

    border-bottom: 1px solid #e5e7eb;

    background: #ffffff;
}


.country-search > span {
    font-size: 15px;

    opacity: .65;
}


.country-search input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

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

    color: #0D1B2A;

    font-size: 14px;
}


.country-search input::placeholder {
    color: #94A3B8;
}


/* Country list */

.country-list {
    max-height: 260px;

    overflow-y: auto;

    padding: 6px;
}


/* Individual country */

.country-option {
    width: 100%;

    border: none;

    background: transparent;

    padding: 10px 11px;

    border-radius: 9px;

    display: flex;

    align-items: center;

    gap: 10px;

    text-align: left;

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

    color: #334155;

    font-size: 14px;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease;
}


.country-option:hover {
    background: #EAF8F2;

    color: #119261;
}


.country-option.active {
    background: #EAF8F2;

    color: #119261;

    font-weight: 600;
}


.country-flag {
    font-size: 18px;

    width: 24px;

    text-align: center;
}


.no-country {
    padding: 18px 12px;

    text-align: center;

    color: #94A3B8;

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

    font-size: 14px;
}


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

@media (max-width: 600px) {

    .pricing-region {
        flex-direction: column;

        gap: 8px;

        align-items: flex-start;

        margin-top: 25px;
    }


    .pricing-region > span {
        font-size: 14px;
    }


    .country-dropdown {
        width: 100%;
        max-width: 280px;
    }


    .country-menu {
        width: 100%;
    }

}


/* =========================================================
   CARDS
========================================================= */

.pricing-cards {

    display: grid;

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

    gap: 28px;

    align-items: stretch;

}


.pricing-card {

    position: relative;

    background: #ffffff;

    border: 1px solid #d7dee0;

    border-radius: 24px;

    padding: 38px 36px;

    display: flex;

    flex-direction: column;

    min-height: 650px;

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

}


.free-card {

    border-color: #d7dee0;

}


.premium-card {

    border: 2px solid #119261;

    box-shadow:
        0 18px 45px rgba(17, 146, 97, .10);

}


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

.popular-badge {

    position: absolute;

    top: -15px;

    right: 36px;

    background: #119261;

    color: #ffffff;

    padding: 8px 20px;

    border-radius: 30px;

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

    font-size: 14px;

    font-weight: 700;

}


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

.pricing-card-title h3 {

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

    color: #0D1B2A;

    font-size: 30px;

    line-height: 1.2;

    margin: 0 0 8px;

}


.pricing-card-title p {

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

    color: #64748B;

    font-size: 16px;

    line-height: 1.55;

    margin: 0;

}


/* =========================================================
   PRICE
========================================================= */

.pricing-price {

    display: flex;

    align-items: baseline;

    gap: 3px;

    margin-top: 42px;

}


.pricing-price .currency {

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

    color: #0D1B2A;

    font-size: 30px;

    font-weight: 600;

}


.pricing-price .amount {

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

    color: #0D1B2A;

    font-size: 56px;

    line-height: 1;

    font-weight: 700;

}


.pricing-price .period {

    color: #64748B;

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

    font-size: 15px;

    margin-left: 5px;

}


/* =========================================================
   YEARLY PRICE
========================================================= */

.yearly-price {

    margin-top: 12px;

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

    color: #64748B;

    font-size: 14px;

}


.save-label {

    display: inline-block;

    margin-left: 7px;

    padding: 4px 8px;

    background: #EAF8F2;

    color: #119261;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 700;

}


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

.pricing-divider {

    height: 1px;

    background: #e5e9eb;

    margin: 30px 0 24px;

}


/* =========================================================
   FEATURES
========================================================= */

.pricing-features {

    list-style: none;

    padding: 0;

    margin: 0;

}


.pricing-features li {

    display: flex;

    align-items: center;

    gap: 12px;

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

    color: #475569;

    font-size: 16px;

    line-height: 1.4;

    margin-bottom: 18px;

}


.pricing-features .check {

    flex: 0 0 25px;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #EAF8F2;

    color: #119261;

    font-size: 14px;

    font-weight: 700;

}


.pricing-features .muted {

    color: #94A3B8;

}


.pricing-features .muted span {

    width: 25px;

    text-align: center;

    color: #94A3B8;

}


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

.pricing-button {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 54px;

    margin-top: auto;

    border-radius: 12px;

    text-decoration: none;

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

    font-size: 16px;

    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}


.free-button {

    color: #119261;

    background: #ffffff;

    border: 1.5px solid #119261;

}


.free-button:hover {

    background: #EAF8F2;

}


.premium-button {

    color: #ffffff;

    background: #119261;

    border: 1.5px solid #119261;

    box-shadow:
        0 8px 20px rgba(17, 146, 97, .20);

}


.premium-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(17, 146, 97, .28);

}


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

.pricing-note {

    text-align: center;

    margin-top: 25px;

    color: #64748B;

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

    font-size: 14px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .pricing-section {

        padding: 50px 28px 85px;

    }
    
    .pricing-heading {

text-align: left;

}

    .pricing-heading h2 {

        font-size: 36px;
        

    }


    .pricing-heading p {

        font-size: 17px;

    }


    .pricing-cards {

        gap: 20px;

    }


    .pricing-card {

        padding: 32px 28px;

        min-height: 620px;

    }

}


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

@media (max-width: 600px) {

    .pricing-section {

        padding: 40px 18px 75px;

    }


    .pricing-heading {

        margin-bottom: 45px;
        text-align: left;

    }


    .pricing-heading h2 {

        font-size: 31px;
        
        font-weight:700;
        
        letter-spacing: 0.1px;

        line-height: 1.35;

    }
    
    .pricing-heading h2 span {
font-weight:600;
}


    .pricing-heading p {

        font-size: 16px;

        line-height: 1.6;

    }


    .pricing-region {

        margin-top: 22px;

    }


    .pricing-cards {

        grid-template-columns: 1fr;

        gap: 24px;

    }


    .pricing-card {

        min-height: auto;

        padding: 32px 26px;

    }


    .premium-card {

        order: -1;

    }


    .pricing-price {

        margin-top: 35px;

    }


    .pricing-price .amount {

        font-size: 50px;

    }


    .popular-badge {

        right: 24px;

        font-size: 13px;

        padding: 7px 16px;

    }

}

/* =========================================================
   CUSTOMER REVIEWS
========================================================= */

.reviews-section {

    background: #ffffff;

    padding: 100px 28px 110px;

}


.reviews-container {

    max-width: 1200px;

    margin: 0 auto;

}


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

.reviews-heading {

    max-width: 850px;

    margin: 0 auto 60px;

    text-align: center;

}


.reviews-heading h2 {

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

    color: #0D1B2A;

    font-size: 46px;

    line-height: 1.5;

    font-weight: 700;

    margin: 0 0 20px;

}


.reviews-heading h2 span {

    color: #119261;

}


.reviews-heading p {

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

    color: #64748B;

    font-size: 18px;

    line-height: 1.7;

    margin: 0 auto;

    max-width: 720px;

}


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

.reviews-grid {

    display: grid;

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

    gap: 24px;

    align-items: stretch;

}


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

.review-card {

    background: #ffffff;

    border: 1px solid #d7dee0;

    border-radius: 22px;

    padding: 32px 30px;

    min-height: 310px;

    display: flex;

    flex-direction: column;

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

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

}


.review-card:hover {

    transform: translateY(-5px);

    border-color: #b9d8cd;

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

}


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

.review-featured {

    border-color: #119261;

    box-shadow:
        0 14px 40px rgba(17, 146, 97, .08);

}


/* =========================================================
   STARS
========================================================= */

.review-stars {

    color: #119261;

    font-size: 18px;

    letter-spacing: 3px;

    margin-bottom: 24px;

}


/* =========================================================
   REVIEW TEXT
========================================================= */

.review-text {

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

    color: #334155;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;

    flex: 1;

}


/* =========================================================
   PERSON
========================================================= */

.review-person {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;

    padding-top: 22px;

    border-top: 1px solid #edf1f2;

}


.review-avatar {

    width: 46px;

    height: 46px;

    flex: 0 0 46px;

    border-radius: 50%;

    background: #EAF8F2;

    color: #119261;

    display: flex;

    align-items: center;

    justify-content: center;

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

    font-size: 17px;

    font-weight: 700;

}


.review-person h3 {

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

    color: #0D1B2A;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;

    margin: 0 0 3px;

}


.review-person span {

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

    color: #94A3B8;

    font-size: 13px;

}


/* =========================================================
   TRUST LINE
========================================================= */

.reviews-trust {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 42px;

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

    color: #64748B;

    font-size: 14px;

}


.trust-check {

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #EAF8F2;

    color: #119261;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .reviews-section {

        padding: 80px 28px 90px;

    }


    .reviews-heading {

        margin-bottom: 45px;
        text-align:left;
    }


    .reviews-heading h2 {

        font-size: 36px;
        
    }


    .reviews-heading p {

        font-size: 17px;

    }


    .reviews-grid {

        gap: 18px;

    }


    .review-card {

        padding: 27px 23px;

        min-height: 300px;

        border-radius: 20px;

    }


    .review-text {

        font-size: 15px;

        line-height: 1.65;

    }

}


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

@media (max-width: 600px) {

    .reviews-section {

        padding: 70px 20px 80px;

    }


    .reviews-heading {

        text-align: left;

        margin-bottom: 35px;

    }


    .reviews-heading h2 {

        font-size: 31px;

        line-height: 1.25;

    }


    .reviews-heading p {

        font-size: 16px;

        line-height: 1.65;

    }


    .reviews-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .review-card {

        min-height: auto;

        padding: 26px 23px;

        border-radius: 20px;

    }


    .review-featured {

        border-color: #119261;

    }


    .review-stars {

        margin-bottom: 18px;

        font-size: 17px;

    }


    .review-text {

        font-size: 16px;

        line-height: 1.65;

    }


    .review-person {

        margin-top: 25px;

        padding-top: 19px;

    }


    .reviews-trust {

        margin-top: 30px;

        text-align: center;

        font-size: 13px;

    }

}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {

    background: #F8FAFB;

    padding: 105px 28px 110px;

}


.faq-container {

    max-width: 900px;

    margin: 0 auto;

}


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

.faq-heading {

    text-align: center;

    margin-bottom: 55px;

}


.faq-heading h2 {

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

    color: #0D1B2A;

    font-size: 46px;

    line-height: 1.2;

    font-weight: 700;

    margin: 0 0 18px;

}


.faq-heading h2 span {

    color: #119261;

}


.faq-heading p {

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

    color: #64748B;

    font-size: 18px;

    line-height: 1.7;

    max-width: 700px;

    margin: 0 auto;

}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


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

.faq-item {

    background: #ffffff;

    border: 1px solid #d7dee0;

    border-radius: 16px;

    overflow: hidden;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;

}


.faq-item.active {

    border-color: #b8d8cd;

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

}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {

    width: 100%;

    border: 0;

    background: transparent;

    padding: 23px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    cursor: pointer;

}


.faq-question span:first-child {

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

    color: #0D1B2A;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 600;

}


/* =========================================================
   PLUS ICON
========================================================= */

.faq-icon {

    width: 30px;

    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: #EAF8F2;

    color: #119261;

    display: flex;

    align-items: center;

    justify-content: center;

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

    font-size: 22px;

    font-weight: 400;

    line-height: 1;

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

}


.faq-item.active .faq-icon {

    transform: rotate(45deg);

    background: #119261;

    color: #ffffff;

}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .35s ease;

}


.faq-answer p {

    overflow: hidden;

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

    color: #64748B;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;

    padding: 0 24px;

}


.faq-item.active .faq-answer {

    grid-template-rows: 1fr;

}


.faq-item.active .faq-answer p {

    padding-bottom: 24px;

}


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

.faq-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 45px;

}


.faq-bottom p {

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

    color: #64748B;

    font-size: 15px;

    margin: 0;

}


.faq-contact-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 20px;

    border: 1px solid #119261;

    border-radius: 10px;

    color: #119261;

    background: #ffffff;

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

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease;

}


.faq-contact-btn:hover {

    background: #119261;

    color: #ffffff;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .faq-section {

        padding: 85px 28px 95px;

    }


    .faq-heading {

        margin-bottom: 45px;
        text-align:left;

    }


    .faq-heading h2 {

        font-size: 36px;

    }


    .faq-heading p {

        font-size: 17px;

    }


    .faq-question {

        padding: 21px 22px;

    }


    .faq-question span:first-child {

        font-size: 16px;

    }


    .faq-answer p {

        font-size: 15px;

        padding-left: 22px;

        padding-right: 22px;

    }


    .faq-item.active .faq-answer p {

        padding-bottom: 22px;

    }

}


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

@media (max-width: 600px) {

    .faq-section {

        padding: 70px 20px 80px;

    }


    .faq-heading {

        text-align: left;

        margin-bottom: 35px;

    }


    .faq-heading h2 {

        font-size: 31px;

        line-height: 1.25;

    }


    .faq-heading p {

        font-size: 16px;

        line-height: 1.65;

        margin: 0;

    }


    .faq-list {

        gap: 10px;

    }


    .faq-item {

        border-radius: 15px;

    }


    .faq-question {

        padding: 19px 18px;

        gap: 14px;

    }


    .faq-question span:first-child {

        font-size: 15px;

        line-height: 1.45;

    }


    .faq-icon {

        width: 28px;

        height: 28px;

        flex-basis: 28px;

        font-size: 20px;

    }


    .faq-answer p {

        font-size: 14.5px;

        line-height: 1.65;

        padding-left: 18px;

        padding-right: 18px;

    }


    .faq-item.active .faq-answer p {

        padding-bottom: 19px;

    }


    .faq-bottom {

        flex-direction: column;

        gap: 12px;

        margin-top: 35px;

    }

}

/* =========================================================
   FINAL CTA SECTION
========================================================= */

.final-cta-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0D7F55 0%,
            #119261 50%,
            #0F8559 100%
        );

    padding: 115px 28px 120px;

}


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

.final-cta-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(70px);

    opacity: .35;

}


.final-cta-glow-left {

    width: 380px;

    height: 380px;

    left: -180px;

    top: -180px;

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

}


.final-cta-glow-right {

    width: 450px;

    height: 450px;

    right: -220px;

    bottom: -250px;

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

}


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

.final-cta-section::before {

    content: "";

    position: absolute;

    inset: 0;

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

    background-size: 42px 42px;

    pointer-events: none;

}


/* =========================================================
   CONTAINER
========================================================= */

.final-cta-container {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

}


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

.final-cta-content {

    text-align: center;

}


/* =========================================================
   LABEL
========================================================= */

.final-cta-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 16px;

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

    border-radius: 30px;

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

    color: rgba(255,255,255,.90);

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

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 24px;

}


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

.final-cta-content h2 {

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

    color: #ffffff;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;

    max-width: 800px;

    margin: 0 auto 22px;

}


.final-cta-content h2 span {

    color: #D9F7EA;

}


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

.final-cta-content p {

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

    color: rgba(255,255,255,.82);

    font-size: 18px;

    line-height: 1.7;

    max-width: 680px;

    margin: 0 auto 34px;

}


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

.final-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 210px;

    min-height: 56px;

    padding: 0 28px;

    border-radius: 16px;

    background: #ffffff;

    color: #0D7F55;

    text-decoration: none;

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

    font-size: 16px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(0,0,0,.16);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.final-cta-button span {

    font-size: 21px;

    line-height: 1;

    transition: transform .25s ease;

}


.final-cta-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(0,0,0,.20);

}


.final-cta-button:hover span {

    transform: translateX(4px);

}


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

.final-cta-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 19px;

    color: rgba(255,255,255,.72);

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

    font-size: 13px;

}


.final-cta-note > span:first-child {

    width: 18px;

    height: 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

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

    color: #ffffff;

    font-size: 11px;

}


.cta-dot {

    opacity: .55;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .final-cta-section {

        padding: 90px 28px 100px;

    }


    .final-cta-content h2 {

        font-size: 42px;

    }


    .final-cta-content p {

        font-size: 17px;

    }

}


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

@media (max-width: 600px) {

    .final-cta-section {

        padding: 75px 20px 85px;

    }


    .final-cta-label {

        font-size: 12px;

        padding: 7px 13px;

        margin-bottom: 20px;

    }


    .final-cta-content h2 {

        font-size: 31px;

        line-height: 1.25;

        letter-spacing: -.5px;

        margin-bottom: 18px;

    }


    .final-cta-content p {

        font-size: 16px;

        line-height: 1.65;

        margin-bottom: 28px;

    }


    .final-cta-button {

        width: 100%;

        min-height: 58px;

        border-radius: 16px;

    }


    .final-cta-note {

        flex-wrap: wrap;

        font-size: 12px;

        gap: 6px;

    }


    .final-cta-glow-left {

        width: 280px;

        height: 280px;

        left: -160px;

        top: -120px;

    }


    .final-cta-glow-right {

        width: 300px;

        height: 300px;

        right: -180px;

        bottom: -160px;

    }

}

/* =========================================================
   KEEP CANVAS FOOTER
========================================================= */

.site-footer {

    background: #0D1B2A;

    color: #ffffff;

    padding: 75px 28px 25px;

}


/* =========================================================
   CONTAINER
========================================================= */

.footer-container {

    max-width: 1180px;

    margin: 0 auto;

}


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

.footer-main {

    display: grid;

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

    gap: 60px;

}


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

.footer-brand {

    max-width: 330px;

}


.footer-logo {

    display: inline-block;

    margin-bottom: 20px;

}


.footer-logo img {

    width: 145px;

    height: auto;

    display: block;

}


.footer-brand p {

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

    color: #AAB6C4;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;

    max-width: 310px;

}


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

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h3 {

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

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    margin: 0 0 20px;

}


.footer-column a {

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

    color: #AAB6C4;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    margin-bottom: 13px;

    transition:
        color .2s ease,
        transform .2s ease;

}


.footer-column a:hover {

    color: #ffffff;

    transform: translateX(2px);

}


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

.footer-divider {

    width: 100%;

    height: 1px;

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

    margin: 55px 0 22px;

}


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

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.footer-bottom p {

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

    color: #8492A3;

    font-size: 13px;

    margin: 0;

}


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

.footer-social {

    display: flex;

    align-items: center;

    gap: 22px;

}


.footer-social a {

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

    color: #8492A3;

    font-size: 13px;

    text-decoration: none;

    transition: color .2s ease;

}


.footer-social a:hover {

    color: #ffffff;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .site-footer {

        padding: 65px 28px 25px;

    }


    .footer-main {

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

        gap: 30px;

    }


    .footer-brand {

        max-width: 280px;

    }


    .footer-logo img {

        width: 135px;

    }

}

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

@media (max-width: 600px) {

    .site-footer {

        padding: 55px 20px 22px;

    }


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

    .footer-main {

        display: grid;

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

        gap: 25px 12px;

    }


    .footer-brand {

        grid-column: 1 / -1;

        max-width: 100%;

        margin-bottom: 15px;

    }


    .footer-logo {

        margin-bottom: 15px;

    }


    .footer-logo img {

        width: 135px;

    }


    .footer-brand p {

        font-size: 14px;

        line-height: 1.7;

        max-width: 100%;

    }


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

    .footer-column {

        min-width: 0;

    }


    .footer-column h3 {

        font-size: 14px;

        margin-bottom: 16px;

        white-space: nowrap;

    }


    .footer-column a {

        font-size: 12.5px;

        line-height: 1.45;

        margin-bottom: 12px;

        white-space: nowrap;

    }


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

    .footer-divider {

        margin: 38px 0 20px;

    }


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

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .footer-bottom p {

        font-size: 12.5px;

    }


    .footer-social {

        gap: 18px;

    }


    .footer-social a {

        font-size: 12.5px;

    }

}