@charset "utf-8";

/* =====================================
   FONTS
===================================== */

@font-face{
    font-family:'InvescoEditor';
    src:url("../fonts/InvescoEditor-Regular.woff2");
    font-style:normal;
    font-weight:400;
}

@font-face{
    font-family:'Graphik';
    src:url("../fonts/Graphik-Light.otf");
    font-style:normal;
    font-weight:300;
}

@font-face{
    font-family:'Graphik';
    src:url("../fonts/Graphik-Regular.otf");
    font-style:normal;
    font-weight:400;
}

@font-face{
    font-family:'Graphik';
    src:url("../fonts/Graphik-Medium.otf");
    font-style:normal;
    font-weight:500;
}

@font-face{
    font-family:'Graphik';
    src:url("../fonts/Graphik-Semibold.otf");
    font-style:normal;
    font-weight:600;
}

/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    /* scroll-behavior managed entirely by JS smoothScrollTo() */
    scroll-behavior:auto;
}

#why-invest,
#downloads{
    scroll-margin-top:100px;
}

body{
    font-family:Graphik, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:15px;
    line-height:1.5;
    color:#111;
	background-color: #FFFFFF;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(1280px,94%);
    margin:auto;
}

/* =====================================
   HEADER
===================================== */

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #ececec;
}

.header .container{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    position:relative;
}

.logo{
    flex-shrink:0;
}

.logo img{
    height:52px;
    width:auto;
}

/* =====================================
   COUNTDOWN
===================================== */

.countdown-box{
    display:flex;
    align-items:center;
    gap:16px;
	background-color: #f0f0f0;
	padding: 5px 10px;
}

.countdown-label{
	font-family: InvescoEditor, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size:16px;
    line-height:1.2;
    white-space:nowrap;
}

.timer{
    display:flex;
    gap:2px;
}

.time-box{
    width:40px;
    height:40px;
	display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.time-box span{
	font-family: InvescoEditor, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size:16px;
    color:#000ad2;
    line-height:1;
	background-color:#ffffff;
	padding: 5px;
}

.time-box small{
    font-size:10px;
    color:#666;
}

.nfo-closed{
	font-family: InvescoEditor, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    background:#f0f0f0;
    color:#000000;
    padding:12px 20px;
    border-radius:4px;
    letter-spacing:.5px;
}

/* =====================================
   DESKTOP NAV
===================================== */

.nav{
    display:flex;
    align-items:center;
    gap:32px;
}

.nav a{
    display:flex;
    align-items:center;
    gap:8px;

    color:#231f20;
    font-size:15px;
    font-weight:400;

    transition:.3s ease;
}

.nav a:hover{
    color:#0a12cd;
}

.nav img{
    width:24px;
    height:24px;
    display:block;
}

.nav strong{
    font-weight:500;
}
/* =====================================
   HAMBURGER
===================================== */

.hamburger{
    width:40px;
    height:40px;

    display:none;

    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:5px;

    background:none;
    border:none;
    cursor:pointer;
}

.hamburger span{
    width:24px;
    height:2px;
    background:#111;
    transition:.3s ease;
}

/* Active State */

.hamburger.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

#why-invest, #downloads{
    scroll-margin-top:100px;
}

/* =====================================
   HERO SLIDER
===================================== */

.hero-slider{
    position:relative;
    overflow:hidden;
    width:100%;
}
.slides{
    display:flex;
    width:100%;
    transition:transform .6s ease;
	touch-action: pan-y;
}

.slide{
    flex:0 0 100%;
    width:100%;
}

.slide img{
    display:block;
    width:100%;
}

/* Arrows */

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:44px;
    height:44px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.3);

    cursor:pointer;

    font-size:22px;
    color:#000ad2;

    z-index:10;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* Dots */

.slider-dots{
    position:absolute;
    left:50%;
    bottom:20px;

    transform:translateX(-50%);

    display:flex;
    gap:8px;
}

.slider-dot{
    width:10px;
    height:10px;
	border: 1px solid #ff4632;
    border-radius:50%;

    background:rgba(255,255,255,.5);

    cursor:pointer;
}

.slider-dot.active{
    background:#ff4632;
}



/* =====================================
   CALLBACK FORM
===================================== */

.callback-section{
    padding:22px 0;
}

.callback-box{
    background:#e8fdff;
    border-radius:10px;

    padding:16px 18px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.callback-left{
    flex:1;
}

.callback-left h3{
    font-size:18px;
    font-weight:600;
    color:#333;
    margin-bottom:12px;
}

.callback-form{
    display:grid;
    grid-template-columns: 1fr 1fr 0.8fr 0.8fr; 
	gap:10px;
}

.callback-form input{
    width:100%;
    height:42px;

    border:0;
    background:#fff;

    padding:0 12px;

    font-family:Graphik, sans-serif;
    font-size:13px;
    color:#333;
}

.callback-form input::placeholder{
    color:#666;
}

.callback-form input:focus{
    outline:none;
}

.callback-actions{
    display:flex;
    flex-direction:column;
    gap:14px;
    min-width:130px;
}

.action-link{
    display:flex;
    align-items:center;
    gap:8px;
	color:#0a12cd;
    font-size:15px;
    font-weight:600;
	text-decoration:none;
}

.action-link span{
    width:24px;
    height:24px;
	display:flex;
    align-items:center;
    justify-content:center;
	flex-shrink:0;
}

.action-link img{
    width:22px;
    height:22px;
    display:block;
}

.submit-btn{
    background:none;
    border:none;
    padding:0;
    font:inherit;
    color:#0a12cd;
    cursor:pointer;
	font-weight:600;
}

/* =====================================
   WHY SETTLE
===================================== */

.why-settle{
    padding:40px 0px 35px;
}

.why-settle-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    align-items:start;
}

.why-settle-title h2{
    font-family: InvescoEditor, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size:28px;
    line-height:1.4;
    color:#0a12cd;
    font-weight:400;
}

.why-settle-content p{
    font-size:15px;
    line-height:1.5;
    color:#000000;
    margin-bottom:18px;
}

.why-settle-content p:last-child{
    margin-bottom:0;
}

/* =====================================
   Fund Intro
===================================== */

.intro-fund{
    padding:40px 0;
}

.intro-panel{
    background: radial-gradient(circle at top right, #b8cae5 0%, #dce8f4 35%, #eef8fb 70%, #f6ffff 100%);
    padding:40px 0px 40px 40px;
    display:grid;
    grid-template-columns:1fr 400px;
    gap:30px;
    position:relative;
}

.intro-label{
	font-size: 22px;
}

.intro-content h1{
    font-family: InvescoEditor, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size:36px;
	font-weight:400;
    line-height:1.8;
    color:#000ad2;
    margin-bottom:0px;
}

.intro-content h3{
    font-size:26px;
    font-weight:400;
    line-height:1.2;
    margin-bottom:24px;
}

.intro-content p{
    font-size:15px;
    line-height:1.5;
}

.intro-visual{
    position:relative;
    min-height:400px;
}
.intro-visual img{
    position:absolute;
    bottom:0;
    right:0;
    z-index:2;
}

.strategy-box{
    background:#fff;
    border-radius:14px;
	border:1px solid #ececec;
	margin:-80px 40px 0;
    padding:30px 20px;
	display:block;
	position:relative;
    z-index:5;
}

.strategy-box table{
	width: 100%;
}

.strategy-box td{
	width: 32%;
	padding: 15px 10px 15px 25px;
	vertical-align: top;
}

.strategy-box h4{
	font-size: 19px;
	line-height:1.25;
    margin-bottom:12px;
}

.fund-name{
	color: #000ad2;
	font-size: 20px;
}

.strategy-divider{
    border-right: 1px solid #d7d7d7;
}

.strategy-callout{
    display:grid;
    align-items:center;
    justify-content:center;
}

.strategy-callout img{
    display:block;
    max-width:100%;
    height:auto;
}

.strategy-box li{
	list-style: none;
	padding: 5px 0px;
}

.investment-approach{
    padding:50px 0;
}

.section-heading{
    margin-bottom:30px;
}

.section-heading h2{
    font-family:InvescoEditor, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:28px;
    color:#000ad2;
    line-height:1.1;
	font-weight: 400
}

.section-heading p{
    font-size:20px;
    color:#000;
}

.approach-image{
    display:block;
    width:100%;
	max-width: 1200px;
    height:auto;
	margin: 0px auto;
}

.book-features{
    padding:50px 0;
}

.book-row{
    border-top:1px solid #cfcfcf;
    padding:35px 0;
}

.book-row h2{
    font-size:20px;
    font-weight:500;
    margin-bottom:12px;
}

.book-row h2 span{
    font-family:InvescoEditor, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color:#000ad2;
    font-size:24px;
}

.book-intro{
    margin-bottom:35px;
    color:#333;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-item img{
    width:75px;
    flex-shrink:0;
}

.feature-item h3{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
}

.feature-item p{
    font-size:15px;
    line-height:1.45;
}

/* =====================================
   FUND MANAGER VIDEO
===================================== */

.fund-manager-video{
    padding:40px 0;
}

.video-section{
    border-top:1px solid #cfcfcf;
    padding-top:30px;
	display:grid;
    grid-template-columns:350px 1fr;
    gap:40px;
    align-items:start;
}

.video-content h2{
    font-family: InvescoEditor, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:24px;
    line-height:1.4;
    color:#000ad2;
    font-weight:400;
    margin-bottom:12px;
}

.video-content p{
    font-size:18px;
    line-height:1.8;
}

.video-content strong{
    font-weight:600;
}

.video-box{
    width:100%;
    max-width:400px;
}

.video-embed{
    position:relative;
    width:100%;
    padding-bottom:56.25%; /* 16:9 ratio */
    overflow:hidden;
    border-radius:14px;
}

.video-embed iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}

/* =====================================
   KEY TERMS
===================================== */
.key-terms{
    padding:50px 0;
	width: 98%;
	overflow: hidden;
}

.key-terms .container{
	border-top:1px solid #bdbdbd;
}

.key-terms h2{
    font-size:24px;
    color:#000ad2;
    margin-bottom:15px;
	font-weight: 400;
}

.terms-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.terms-col{
    display:flex;
    flex-direction:column;
    gap:20px;
	min-width:0;
}

.scroll-indicator{
    display:none;
}

.terms-col table{
	width: 100%;
	font-size: 13px;
	line-height: 1.5;
	border: 0px;
}

.terms-col table tr td{
	padding: 5px 0px;
}

.blue-dotted-border-top{
	border-top: 1px dotted #000ad1;
}

.blue-dotted-border-btm{
	border-bottom: 1px dotted #000ad1;
}

.blue-dotted-border-btm-m{
	border-bottom:none;
}

.terms-notes{
	font-size: 11px;
}

.load-li li{
	list-style: disc;
	list-style-position: outside;
	margin-left: 15px;
}

/* =====================================
   DOWNLOADS
===================================== */

.downloads{
    padding:40px 0;
}

.downloads h2{
	font-family: InvescoEditor, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:24px;
    color:#000ad2;
    margin-bottom:15px;
    font-weight:400;
}

.downloads-grid{
    background:#e8fdff;
    padding:18px 20px;
	display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.download-item{
    display:flex;
    align-items:center;
    gap:10px;
	color:#000ad2;
    font-weight:500;
    text-decoration:none;
	transition:.3s ease;
}

.download-item:hover{
    color:#000000;
}

.download-item span{
    width:24px;
    height:24px;
	display:flex;
    align-items:center;
    justify-content:center;
	flex-shrink:0;
}

/* =====================================
   Risk Section
===================================== */

.risk-section{
    padding:40px 0 100px;
}

.risk-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:40px;
    align-items:start;
	border-top:1px solid #bdbdbd;
    padding-top:20px;
}

.risk-content{
	font-size: 12px;
	line-height: 1.5;
}

.risk-content li{
	list-style: disc;
	list-style-position: outside;
	margin-left: 20px;
}

.risk-bands{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.risk-bands img{
    width:100%;
	max-width: 235px;
    display:block;
}

/* =====================================
   STICKY CTA
===================================== */

.sticky-cta{
    position:fixed;
    right:0;
    bottom:0;

    display:flex;

    z-index:9999;
}

/* kept for backwards compatibility */
.sticky-cta.show{
    display:flex;
}

.cta-btn{
    height:44px;
    padding:0 24px;

    border:none;

    display:flex;
    align-items:center;
    gap:10px;

    font-size:16px;
    /*font-weight:500;*/

    cursor:pointer;
    text-decoration:none;
}

.invest-btn{
    background:#000ad2;
    color:#fff;
	border-radius: 10px 10px 0px 0px;
	margin-right: 10px;
}

.invest-btn img{
    width:24px;
    height:24px;
}

.callback-btn{
    background:#000ad2;
    color:#fff;
	border-radius: 10px 10px 0px 0px;
}

/* =====================================
   CALLBACK POPUP
===================================== */

.callback-popup{
    position:fixed;
    right:0;
    bottom:0;

    width:300px;

    background:#fff;
    border:1px solid #ccc;

    display:none;

    z-index:10000;
}

.callback-popup.active{
    display:block;
}

.callback-popup-header{
    height:42px;

    background:#000ad2;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 15px;
}

.close-popup{
    background:none;
    border:none;

    color:#fff;
    font-size:30px;

    cursor:pointer;
}

.callback-popup-form{
    padding:15px;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.callback-popup-form input{
    height:42px;

    border:1px solid #666;

    padding:0 10px;

    font-size:14px;
	background-color: #FFFFFF;
	color: #000000;
    width: 100%;
}

.popup-submit{
    border:none;
    background:none;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    color:#000ad2;
    font-size:16px;
    font-weight:600;

    cursor:pointer;

    margin-top:10px;
}

.popup-submit img{
    width:24px;
    height:24px;
}


/* =====================================
   TABLET
   769px - 1024px
===================================== */

@media (max-width:1024px){

    .header .container{
        min-height:72px;
        gap:10px;
    }

    .logo img{
        height:44px;
    }

    .countdown-box{
        margin-left:auto;
        transform:scale(.85);
        transform-origin:right center;
    }

    .hamburger{
        display:flex;
        flex-shrink:0;
    }

    .nav{
        position:absolute;
        top:72px;
        left:0;
        right:0;

        background:#fff;

        flex-direction:column;
        align-items:flex-start;

        gap:0;

        max-height:0;
        overflow:hidden;

        transition:max-height .3s ease;

        border-top:1px solid #ececec;

        z-index:1000;
    }

    .nav.active{
        max-height:300px;
    }

    .nav a{
        width:100%;
        padding:16px 20px;
        border-bottom:1px solid #ececec;
    }

    .nav a:last-child{
        border-bottom:none;
    }
	
	.why-settle-grid{
        grid-template-columns:220px 1fr;
        gap:30px;
    }

    .why-settle-title h2{
        font-size:24px;
    }
	
	.intro-panel{
        grid-template-columns:1fr 250px;
        padding:0px;
		gap:10px;
    }
	
	.intro-content{
		padding: 25px 10px 10px 25px;
	}
	
	.intro-content h1{
		line-height: 1.2;
	}
	
	.strategy-box{
		margin: 0px 0px;
	}
	
	.approach-scroll{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

    .approach-image{
        width:auto;
        max-width:none;
        min-width:1200px; /* adjust based on actual image width */
    }
	
	.feature-grid{
        gap:25px;
    }

    .feature-item{
        gap:15px;
    }

    .feature-item img{
        width:60px;
    }
	
	.video-section{
        grid-template-columns:180px 1fr;
        gap:30px;
    }
	
	.terms-grid{
        grid-template-columns:1fr;
        gap:0px;
    }
	
	.downloads-grid{
        grid-template-columns:repeat(2,1fr);
    }
	
	
}

/* =====================================
   MOBILE
===================================== */

@media (max-width:700px){

    .header .container{
        min-height:auto;
        padding:12px 0;
        flex-wrap:wrap;
    }

    .logo{
        order:1;
    }

    .hamburger{
        order:2;
        margin-left:auto;
    }

    .countdown-box{
        order:3;
        width:100%;
        justify-content:center;

        margin-top:10px;

        transform:none;
    }

    .countdown-label{
        font-size:16px;
    }

    .timer{
        gap:5px;
    }

    .nav{
        top:100%;
    }
	
	.slider-arrow{
        display: none;
    }

    .prev{
        left:5px;
    }

    .next{
        right:5px;
    }
	
	.callback-section{
        display:none;
    }
	
	.why-settle{
        padding:30px 20px;
    }

    .why-settle-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .why-settle-title h2{
        font-size:24px;
        line-height:1.4;
    }

    .why-settle-content p{
        font-size:15px;
        line-height:1.5;
    }
	
	.intro-panel{
        grid-template-columns:1fr;
        padding:0px;
    }
	
	.intro-content{
		padding: 25px 25px 10px;
	}
	
	.intro-fund h1{
		line-height: 1.25;
	}

    .intro-visual{
        min-height:auto;
        text-align:center;
    }

    .intro-visual img{
        position:relative;
		width: 100%;
        max-width:402px;
        margin:auto;
    }
	
	.strategy-box{
		width: 100%;	
		margin:0;
		padding:10px 0px;
		overflow-x: auto;
		-webkit-overflow-scrolling:touch;
	}

	.strategy-box table{
		width: 800px;
	}

	.strategy-box td{
		width: 350px;
		padding: 15px 10px 15px 25px;
		vertical-align: top;
	}
	
    .strategy-callout{
        min-height:90px;
    }
	
	.section-heading h2{
        font-size:24px;
    }

    .section-heading p{
        font-size:15px;
    }
	.feature-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .book-row h2{
        line-height:1.4;
    }

    .book-row h2 span{
        display:block;
        margin-bottom:6px;
    }
	
	.video-section{
        grid-template-columns:1fr;
        gap:20px;
    }

    .video-content h2{
        font-size:32px;
    }

    .video-box{
        max-width:100%;
    }
	
	.scroll-indicator{
        display:block;
		position:relative;
		font-size:12px;
        color:#4D4D4D;
		padding-top: 10px;
    }
	
	.blue-dotted-border-btm-m{
		border-bottom: 1px dotted #000ad1;
	}
	
	.sip-amt-div{
		width: 350px;
		overflow-x: scroll;
	}
	.sip-amt-tbl{
		width: 600px; margin-right: 20px;
	}
	
	 .downloads-grid{
        gap:15px;
    }
	
	.risk-grid{
        grid-template-columns:1fr;
		gap:20px;
    }

    .risk-bands{
        grid-template-columns:1fr;
    }
	
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width:480px){

    .countdown-box{
        gap:8px;
    }

    .sip-amt-div{
		width: 250px;
	}
	
	.downloads-grid{
        grid-template-columns:1fr;
        gap:15px;
    }
	
	.cta-btn{
		font-size: 12px;
		font-weight: bold;
	}
}

@media (max-width:320px){
	.sip-amt-div{
		width: 200px;
		overflow-x: scroll;
	}
	.sip-amt-tbl{
		width: 500px; margin-right: 20px;
	}
}

/* ============================================
   FORM FIELD WRAP & VALIDATION ERRORS
   ============================================ */

.field-wrap {
    position: relative;
    width: 100%;
}

.field-error {
    display: none;
    color: #e8002d;
    font-size: 11px;
    margin-top: 3px;
    margin-bottom: 2px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.3;
}

/* Red border on the input when its sibling error span is visible */
.field-wrap input:focus-within + .field-error:not(:empty),
.field-wrap .field-error:not(:empty) ~ input {
    border-color: #e8002d !important;
}

/* =====================================
   NOTIFICATION POPUP
===================================== */

.notif-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.notif-overlay.notif-visible {
    opacity: 1;
    pointer-events: all;
}

.notif-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px 32px;
    width: min(420px, 90vw);
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    opacity: 0;
    position: relative;
}

.notif-overlay.notif-visible .notif-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.notif-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon {
    width: 52px;
    height: 52px;
    display: none;
}

.notif-icon.notif-show {
    display: block;
}

.notif-title {
    font-family: Graphik, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.notif-msg {
    font-family: Graphik, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 28px;
}

.notif-btn {
    display: inline-block;
    background: #000ad2;
    color: #fff;
    font-family: Graphik, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.notif-btn:hover {
    background: #0a12cd;
    transform: translateY(-1px);
}

.notif-btn:active {
    transform: translateY(0);
}

.notif-card.notif-error .notif-btn {
    background: #ff4632;
}

.notif-card.notif-error .notif-btn:hover {
    background: #e03020;
}

