/*بـسـم الله الـرحـمـان الـرحـیـم*/



.header .container{width: 95%;}


.goal{
    border-radius: 10px;
    border: 1px solid #22c55e;
    background-color: #00eb5a27;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 230px;
    height: 40px;
}

.goal:hover{
    box-shadow: 2px 2px 4px #16a34a , -2px -2px 4px #16a34a;
    opacity: 90%;
}



.planner-boxes{

    width:100%;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

    padding:30px;

}




.planner-card{


    background:
    linear-gradient(
        145deg,
        #07111d,
        #020617
    );


    border-radius:28px;


    padding:28px;


    border:1px solid rgba(255,255,255,.08);


    box-shadow:

    0 20px 50px rgba(0,0,0,.4);


    position:relative;

    overflow:hidden;


    transition:.4s;

}




.planner-card::before{


    content:"";

    position:absolute;

    width:160px;

    height:160px;

    background:#22c55e;

    filter:blur(90px);

    opacity:.25;

    top:-50px;

    right:-40px;


}




.planner-card:hover{


    transform:translateY(-10px);


    border-color:#22c55e;


}




.card-header{


    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;


}



.card-header .icon{


    width:55px;

    height:55px;

    border-radius:18px;


    display:flex;

    align-items:center;

    justify-content:center;


    font-size:28px;


    background:

    rgba(34,197,94,.15);


}



.card-header h2{


    color:white;

    font-size:22px;

    margin:0;

}





.task-list{


    display:flex;

    flex-direction:column;

    gap:14px;


}




.task{


    background:

    rgba(255,255,255,.05);


    padding:15px 18px;


    border-radius:15px;


    display:flex;

    justify-content:space-between;


    color:#e5e7eb;


    transition:.3s;


}



.task:hover{


    background:

    rgba(34,197,94,.12);


}



.task b{


    color:#22c55e;

    font-size:13px;


}



.task.done span{


    text-decoration:line-through;

    opacity:.6;

}





.planner-card a{

    display: flex;
    justify-content: center;
    align-items: center;


    width:100%;

    margin-top:25px;


    padding:14px;


    border-radius:15px;


    border:none;


    background:#22c55e;


    color:#020617;


    font-size:15px;

    font-weight:bold;


    cursor:pointer;


    transition:.3s;


}



.planner-card button:hover{


    transform:scale(1.04);


    background:#4ade80;


}




/*==============================
        RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    margin-top: 170px !important;

    font-family:vazir;

    direction:rtl;

    background:
    radial-gradient(circle at top,#0f172a,#020617 70%);

    color:#fff;

    min-height:100vh;

    overflow-x:hidden;

}


/*==============================
        VARIABLES
==============================*/

:root{

    --bg:#020617;

    --bg2:#07111d;

    --card:#0b1220;

    --border:rgba(255,255,255,.08);

    --green:#22c55e;

    --green2:#16a34a;

    --orange:#f59e0b;

    --red:#ef4444;

    --purple:#8b5cf6;

    --text:#ffffff;

    --text2:#94a3b8;

    --radius:20px;

    --shadow:
    0 15px 45px rgba(0,0,0,.35);

}


/*==============================
        SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07111d;

}

::-webkit-scrollbar-thumb{

    background:#1f2937;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#22c55e;

}


/*==============================
        MAIN
==============================*/

.dashboard{

    width:min(1450px,95%);

    margin:auto;

    padding:35px 0 70px;

}


/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1200px){

.stats{

grid-template-columns:repeat(2,1fr);

}

.hero{

grid-template-columns:260px 1fr;

}

.hero h1{

font-size:2.2rem;

}

}


@media(max-width:900px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-content{

display:flex;

flex-direction:column;

align-items:center;

}

.hero-image{

order:-1;

}

}


@media(max-width:650px){

.dashboard{

width:92%;

}

.stats{

grid-template-columns:1fr;

}

.hero{

padding:30px 22px;

}

.hero h1{

font-size:1.9rem;

}

.hero img{

width:210px;

}

.hero-btn{

width:100%;

}

}


/*==================================
    TASKS
==================================*/

.tasks ul{

list-style:none;

display:flex;

flex-direction:column;

gap:18px;

}

.tasks li{

display:flex;

justify-content:space-between;

align-items:center;

background:#0f172a;

padding:15px 18px;

border-radius:15px;

transition:.3s;

}

.tasks li:hover{

transform:translateX(-6px);

background:#132034;

}

.tasks label{

display:flex;

align-items:center;

gap:12px;

cursor:pointer;

}

.tasks input{

width:18px;

height:18px;

accent-color:#22c55e;

}

.tasks span{

color:#94a3b8;

font-size:.9rem;

}

/*==================================
    RESPONSIVE
==================================*/

@media(max-width:1200px){

.dashboard-grid{

    grid-template-columns:repeat(6,1fr);

}

.tasks{

    grid-column:span 6;

}

.calendar-card{

    grid-column:span 3;

}

.timer-card{

    grid-column:span 3;

}

.projects{

    grid-column:span 3;

}

.habits{

    grid-column:span 3;

}

.report{

    grid-column:span 6;

}

.notes{

    grid-column:span 6;

}

}


@media(max-width:768px){

.dashboard-grid{

    grid-template-columns:1fr;

}

.tasks,
.calendar-card,
.timer-card,
.projects,
.habits,
.report,
.notes{

    grid-column:span 1;

}

.timer-circle{

    width:150px;
    height:150px;

    font-size:1.7rem;

}

}

/*==================================
            HABITS
==================================*/

.habits{

display:flex;
flex-direction:column;
gap:22px;

}

.habit{

display:flex;
justify-content:space-between;
align-items:center;

padding:18px;

border-radius:16px;

background:#0f172a;

transition:.35s;

}

.habit:hover{

background:#132034;
transform:translateY(-4px);

}

.habit span{

font-weight:600;

}

.days{

display:flex;
gap:8px;

}

.days i{

width:18px;
height:18px;

border-radius:5px;

background:#1e293b;

transition:.3s;

}

.days i.done{

background:#22c55e;

box-shadow:
0 0 10px rgba(34,197,94,.45);

}


/*==================================
        REPORT
==================================*/

.report{

display:flex;

flex-direction:column;

}

.chart{

height:220px;

display:flex;

align-items:flex-end;

justify-content:space-between;

gap:12px;

margin-top:auto;

}

.chart div{

flex:1;

border-radius:14px 14px 0 0;

background:linear-gradient(
    to top,
    #16a34a,
    #4ade80
);

transition:.35s;

}

.chart div:hover{

filter:brightness(1.2);

transform:translateY(-8px);

}


/*==================================
        NOTES
==================================*/

.notes{

display:flex;

flex-direction:column;

}

.notes textarea{

width:100%;

min-height:180px;

resize:none;

border:none;

outline:none;

border-radius:18px;

padding:18px;

background:#0f172a;

color:#fff;

font-family:inherit;

font-size:1rem;

margin-bottom:22px;

}

.notes textarea::placeholder{

color:#64748b;

}

.notes button{

align-self:flex-end;

padding:14px 28px;

border:none;

border-radius:14px;

cursor:pointer;

font-family:inherit;

font-size:1rem;

color:#fff;

background:linear-gradient(
    135deg,
    #22c55e,
    #16a34a
);

transition:.3s;

}

.notes button:hover{

transform:translateY(-5px);

box-shadow:
0 10px 25px rgba(34,197,94,.35);

}


/*==================================
        QUOTE
==================================*/

.quote{

margin-top:35px;

padding:45px;

text-align:center;

border-radius:24px;

border:1px solid rgba(255,255,255,.08);

background:
linear-gradient(
    140deg,
    #07111d,
    #091a16
);

position:relative;

overflow:hidden;

}

.quote::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:#22c55e20;

border-radius:50%;

filter:blur(90px);

top:-180px;

right:-120px;

}

.quote h3{

position:relative;

z-index:2;

font-size:1.7rem;

line-height:2;

font-weight:700;

}


/*==================================
        CARD EFFECT
==================================*/

.card{

transition:
.35s transform,
.35s border-color,
.35s box-shadow;

}

.card:hover{

transform:translateY(-8px);

border-color:#22c55e55;

box-shadow:
0 20px 40px rgba(0,0,0,.45),
0 0 20px rgba(34,197,94,.08);

}


/*==================================
        ANIMATIONS
==================================*/

@keyframes fadeUp{

from{

    opacity:0;

    transform:translateY(35px);

}

to{

    opacity:1;

    transform:translateY(0);

}

}

.hero,
.stats,
.card,
.quote{

animation:fadeUp .7s ease both;

}

.stats .stat-card:nth-child(2){

animation-delay:.1s;

}

.stats .stat-card:nth-child(3){

animation-delay:.2s;

}

.stats .stat-card:nth-child(4){

animation-delay:.3s;

}


/*==================================
    MOBILE
==================================*/

@media(max-width:900px){

.habit{

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}

.days{

    flex-wrap:wrap;

}

.chart{

    height:180px;

}

.quote{

    padding:30px 20px;

}

.quote h3{

    font-size:1.3rem;

    line-height:1.8;

}

.notes button{

    width:100%;

}

}

@media(max-width:500px){

.days{

    gap:6px;

}

.days i{

    width:15px;
    height:15px;

}

.chart{

    gap:8px;

}

.notes textarea{

    min-height:140px;

}

.quote h3{

    font-size:1.1rem;

}

}


.text{display: flex;justify-content: center;align-items: center;}
.contact-button {
    margin: 20px auto;
    width: 120px;
    font-family: vazir;
    align-items: center;
    background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .contact-button:active,
  .contact-button:hover {
    outline: 0;
  }
  
  .contact-button span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
  }
  
  .contact-button:hover span {
    background: none;
  }
  
  .contact-button:active {
    transform: scale(0.9);
  }
  



.hero-grid{
    position: relative;
    overflow: visible;
    isolation: isolate;
}

.hero-grid::before {
    content: "";

    position: absolute;

    width: 850px;
    height: 850px;

    right: -120px;

    /* فقط کمی پایین‌تر */
    top: 65%;

    transform: translateY(-50%);

    background: url("../image/background.webp")
        center center / cover no-repeat;

    opacity: .08;

    z-index: -1;

    pointer-events: none;

    border-radius: 50%;
}


/* ==============================
   TABLET
============================== */

@media (max-width: 900px) {

    .hero-grid::before {

        width: 650px;
        height: 650px;

        right: -100px;

        /* کمی پایین‌تر */
        top: 65%;

        opacity: .06;
    }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 600px) {

    .hero-grid::before {

        width: 500px;
        height: 500px;

        /* وسط صفحه */
        right: 50%;

        /* پایین‌تر از هدر و وسط Hero */
        top: 55%;

        transform: translate(50%, -50%);

        opacity: .055;
    }

}


/* ==============================
   SMALL MOBILE
============================== */

@media (max-width: 400px) {

    .hero-grid::before {

        width: 380px;
        height: 380px;

        right: 50%;

        top: 55%;

        transform: translate(50%, -50%);

        opacity: .045;
    }

}


/*==================================
    WEEK PLANNER
==================================*/

.week-planner{

    grid-column:span 12;
    width: 98%;
    margin: 30px auto;
    
    }
    
    .week-list{
    
    display:grid;
    
    grid-template-columns:repeat(7,1fr);
    
    gap:18px;
    
    margin-top:25px;
    
    }
    
    .week-day{
    
    background:linear-gradient(
        145deg,
        #0f172a,
        #08111d
    );
    
    border:1px solid rgba(255,255,255,.06);
    
    border-radius:18px;
    
    padding:18px;
    
    transition:.35s;
    
    position:relative;
    
    overflow:hidden;

    max-height: 285px;
    overflow: auto;
    
    }
    
    .week-day::before{
    
    content:"";
    
    position:absolute;
    
    top:0;
    left:0;
    
    width:100%;
    height:4px;
    
    background:#1e293b;
    
    }
    
    .week-day:hover{
    
    transform:translateY(-8px);
    
    border-color:#22c55e55;
    
    box-shadow:
    0 20px 40px rgba(0,0,0,.35);
    
    }
    
    .week-day.active{
    
    border-color:#22c55e;
    
    background:
    linear-gradient(
        160deg,
        #11271b,
        #09111b
    );
    
    }
    
    .week-day.active::before{
    
    background:#22c55e;
    
    }
    
    .day-head{
    
    margin-bottom:18px;
    
    border-bottom:1px solid rgba(255,255,255,.08);
    
    padding-bottom:15px;
    
    }
    
    .day-name{
    
    display:block;
    
    font-size:1.1rem;
    
    font-weight:700;
    
    }
    
    .day-date{
    
    display:block;
    
    margin-top:6px;
    
    color:#94a3b8;
    
    font-size:.85rem;
    
    }
    
    .week-day ul{
    
    list-style:none;
    
    display:flex;
    
    flex-direction:column;
    
    gap:10px;
    
    }
    
    .week-day li{
    
    background:#182233;
    
    border-radius:12px;
    
    padding:10px 12px;
    
    font-size:.9rem;
    
    transition:.3s;
    
    position:relative;
    
    padding-right:34px;
    
    }
    
    .week-day li:hover{
    
    background:#223146;
    
    }
    
    .week-day li::before{
    
    content:"";
    
    position:absolute;
    
    width:10px;
    height:10px;
    
    border-radius:50%;
    
    background:#f59e0b;
    
    right:14px;
    
    top:50%;
    
    transform:translateY(-50%);
    
    }
    
    .week-day li.done{
    
    color:#94a3b8;
    
    text-decoration:line-through;
    
    }
    
    .week-day li.done::before{
    
    background:#22c55e;
    
    }
    
    .week-day li:last-child{
    
    margin-bottom:0;
    
    }
    
    /* تعداد کارها */
    
    .day-head::after{
    
    content:attr(data-count);
    
    position:absolute;
    
    top:18px;
    
    left:18px;
    
    background:#22c55e22;
    
    color:#22c55e;
    
    padding:4px 10px;
    
    border-radius:50px;
    
    font-size:.75rem;
    
    }
    
    
    /*==================================
        RESPONSIVE
    ==================================*/
    
    @media(max-width:1200px){
    
    .week-list{
    
        grid-template-columns:repeat(4,1fr);
    
    }
    
    }
    
    @media(max-width:850px){
    
    .week-list{
    
        grid-template-columns:repeat(2,1fr);
    
    }
    
    }
    
    @media(max-width:600px){

        
    
    .week-list{
    
        display:flex;
    
        overflow-x:auto;
    
        gap:16px;
    
        padding-bottom:10px;
    
        scroll-snap-type:x mandatory;
    
    }
    
    .week-day{
    
        min-width:260px;
    
        flex-shrink:0;
    
        scroll-snap-align:start;
    
    }
    
    }





/* =========================================================
   RESPONSIVE FIX
   برای ساختار فعلی صفحه
========================================================= */


/* =========================================================
   BASE FIX
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}



img {
    max-width: 100%;
    height: auto;
}

a {
    max-width: 100%;
}

button,
input,
textarea,
select {
    max-width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.container {
    width: min(1450px, 100%);
    max-width: 100%;
    margin: 0 auto;
}

.hero-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 40px;

    align-items: center;
}

.hero-content {
    min-width: 0;
    width: 100%;
}

.hero-content h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.hero-content p {
    max-width: 100%;
    overflow-wrap: anywhere;
}


/* =========================================================
   GOAL
========================================================= */

.goal {
    width: min(230px, 100%);
    max-width: 100%;

    min-height: 40px;
    height: auto;

    padding: 8px 12px;

    gap: 8px;

    flex-wrap: wrap;

    text-decoration: none;
}

.goal span {
    min-width: 0;
    overflow-wrap: anywhere;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    padding: 35px 20px 70px;

    min-width: 0;
}


/* اگر dashboard داخلی داخل hero قرار گرفته */
.hero-grid .dashboard {
    width: 100%;
    padding: 0;
    margin: 0;

    min-width: 0;
}


/* =========================================================
   DASHBOARD CARD
========================================================= */

.dashboard-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    overflow: hidden;
}

.dashboard-header {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;
}

.dashboard-header h3 {
    min-width: 0;
    max-width: 100%;

    overflow-wrap: anywhere;
}


/* =========================================================
   TASK
========================================================= */

.task {
    min-width: 0;
    max-width: 100%;

    gap: 12px;
}

.task > div {
    min-width: 0;
}

.task h4,
.task p,
.task span {
    max-width: 100%;
    overflow-wrap: anywhere;
}


/* =========================================================
   WEEK PLANNER
========================================================= */

.week-planner {
    width: 100%;
    max-width: 1450px;

    margin: 30px auto;

    padding: 25px;

    grid-column: auto;

    min-width: 0;
}


/* =========================================================
   WEEK HEADER
========================================================= */

.week-planner .card-header {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;
}

.week-planner .card-header h2 {
    margin: 0;

    min-width: 0;

    overflow-wrap: anywhere;
}

.week-planner .card-header a {
    flex-shrink: 0;
}


/* =========================================================
   WEEK LIST
========================================================= */

.week-list {
    width: 100%;
    max-width: 100%;

    display: grid;

    grid-template-columns: repeat(7, minmax(0, 1fr));

    gap: 14px;

    min-width: 0;
}


/* =========================================================
   WEEK DAY
========================================================= */

.week-day {
    width: 100%;
    min-width: 0;
    max-width: 100%;

    padding: 16px;

    max-height: 285px;

    overflow-x: hidden;
    overflow-y: auto;
}

.day-head {
    position: relative;

    min-width: 0;
}

.day-name,
.day-date {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.week-day ul {
    width: 100%;
    min-width: 0;
}

.week-day li {
    width: 100%;
    min-width: 0;

    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   PLANNER BOXES
========================================================= */

.planner-boxes {
    width: min(1450px, 95%);
    max-width: 100%;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    padding: 30px 0;

    min-width: 0;
}


/* =========================================================
   PLANNER CARD
========================================================= */

.planner-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;

    padding: 25px;

    overflow: hidden;
}

.planner-card .card-header {
    min-width: 0;
}

.planner-card .card-header h2 {
    min-width: 0;

    font-size: clamp(17px, 2vw, 22px);

    overflow-wrap: anywhere;
}

.planner-card .icon {
    flex-shrink: 0;
}


/* =========================================================
   PLANNER TASKS
========================================================= */

.task-list {
    width: 100%;
    min-width: 0;
}

.planner-card .task {
    width: 100%;
    min-width: 0;
}

.planner-card .task span {
    min-width: 0;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.planner-card .task b {
    flex-shrink: 0;
}


/* =========================================================
   PLANNER BUTTON
========================================================= */

.planner-card > a {
    width: 100%;
    max-width: 100%;

    min-height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    overflow-wrap: anywhere;
}


/* =========================================================
   QUOTE
========================================================= */

.quote {
    width: 100%;
    max-width: 1450px;

    margin: 35px auto;

    padding: 40px 25px;

    min-width: 0;
}

.quote h3 {
    max-width: 100%;

    overflow-wrap: anywhere;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

footer {
    width: 100%;
    max-width: 100%;

    display: flex;
    justify-content: center;

    padding: 0 20px 30px;

    overflow: hidden;
}

.contact-button {
    width: 140px;
    min-width: 140px;
    max-width: 100%;
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

        gap: 25px;
    }

    .week-list {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .planner-boxes {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 92%;
    }

}


/* =========================================================
   950px
========================================================= */

@media (max-width: 950px) {

    .hero {
        padding: 0 15px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .hero-content {
        text-align: center;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: clamp(1.7rem, 5vw, 2.4rem);
        line-height: 1.8;
    }

    .hero-content p {
        line-height: 2;
    }

    .hero-grid .dashboard {
        width: 100%;
    }

    .week-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   768px
========================================================= */

@media (max-width: 768px) {

    .dashboard {
        width: 100%;
        padding: 25px 15px 50px;
    }

    .hero {
        padding: 0 12px;
    }

    .hero-grid {
        gap: 25px;
    }


    /* -------------------------
       HERO
    ------------------------- */

    .hero-content h1 {
        font-size: 1.65rem;
        line-height: 1.9;
    }

    .hero-content p {
        font-size: .9rem;
    }


    /* -------------------------
       DASHBOARD HEADER
    ------------------------- */

    .dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-header h3 {
        font-size: 1rem;
        line-height: 1.8;
    }


    /* -------------------------
       WEEK
    ------------------------- */

    .week-planner {
        width: calc(100% - 24px);

        margin: 25px auto;

        padding: 20px 15px;
    }

    .week-planner .card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .week-planner .card-header a {
        width: 100%;

        text-align: center;
    }

    .week-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .week-day {
        padding: 14px;

        max-height: 260px;
    }

    .day-name {
        font-size: 1rem;
    }

    .day-date {
        font-size: .78rem;
    }

    .week-day li {
        font-size: .82rem;

        padding: 9px 10px 9px 30px;
    }


    /* -------------------------
       PLANNER BOXES
    ------------------------- */

    .planner-boxes {
        width: calc(100% - 24px);

        grid-template-columns: 1fr;

        gap: 18px;

        padding: 20px 0;
    }

    .planner-card {
        padding: 20px;
    }


    /* -------------------------
       QUOTE
    ------------------------- */

    .quote {
        width: calc(100% - 24px);

        margin: 25px auto;

        padding: 30px 18px;
    }

    .quote h3 {
        font-size: 1.2rem;
        line-height: 2;
    }

}


/* =========================================================
   600px
========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    .dashboard {
        padding-left: 10px;
        padding-right: 10px;
    }


    /* -------------------------
       HERO
    ------------------------- */

    .hero {
        padding: 0 10px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.4rem;

        line-height: 2;
    }

    .hero-content p {
        font-size: .85rem;

        line-height: 2;
    }


    /* -------------------------
       GOAL
    ------------------------- */

    .goal {
        width: 100%;
        max-width: 300px;

        justify-content: space-between;

        min-height: 45px;
    }


    /* -------------------------
       WEEK
    ------------------------- */

    .week-planner {
        width: calc(100% - 16px);

        padding: 18px 12px;
    }

    .week-list {

        display: flex;

        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 12px;

        padding: 5px 3px 15px;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;
    }

    .week-day {

        width: 260px;
        min-width: 260px;

        flex: 0 0 260px;

        max-height: 280px;

        scroll-snap-align: start;
    }


    /* -------------------------
       PLANNER
    ------------------------- */

    .planner-boxes {
        width: calc(100% - 16px);

        padding: 15px 0;

        gap: 15px;
    }

    .planner-card {
        padding: 18px;
    }

    .planner-card .card-header {
        gap: 10px;
    }

    .planner-card .card-header .icon {
        width: 45px;
        height: 45px;

        border-radius: 14px;

        font-size: 22px;
    }

    .planner-card .card-header h2 {
        font-size: 17px;
    }

    .planner-card .task {
        padding: 12px;
    }


    /* -------------------------
       TASK
    ------------------------- */

    .task {
        gap: 8px;
    }

    .task span {
        font-size: .85rem;
    }

    .task b {
        font-size: .75rem;
    }


    /* -------------------------
       QUOTE
    ------------------------- */

    .quote {
        width: calc(100% - 16px);

        padding: 25px 15px;
    }

    .quote h3 {
        font-size: 1rem;
        line-height: 2.1;
    }


    /* -------------------------
       CONTACT
    ------------------------- */

    .contact-button {
        width: 130px;
        min-width: 130px;
    }

}


/* =========================================================
   400px
========================================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: .8rem;
    }

    .week-day {
        width: 235px;
        min-width: 235px;
        flex-basis: 235px;
    }

    .planner-card {
        padding: 15px;
    }

    .planner-card .card-header h2 {
        font-size: 16px;
    }

    .planner-card .task {
        padding: 10px;
    }

    .quote h3 {
        font-size: .9rem;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 330px) {

    .week-day {
        width: 220px;
        min-width: 220px;
        flex-basis: 220px;
    }

    .hero-content h1 {
        font-size: 1.15rem;
    }

    .goal {
        font-size: .8rem;
    }

}
