/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #546AE3;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    /* Typography */
    
    --section-pad: 5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: "Schibsted Grotesk", sans-serif;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}



.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: #27263A;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}


.same-heading h2 .highlight{color: var(--PrimaryColor); font-weight: 600;}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}




.bg-gray {
    background: #F5F5F5;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
}

.same-heading.white-text :is( p) {
    color: #FFFFFFB2;
}
.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
  color: var(--PrimaryColor);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.7rem;
    border-radius: 9999px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #CDDDFF;
    border: solid 1px #CDDDFF;
    color: #565656;
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}

.btn-white {
    background: var(--WhiteColor);
    color: var(--BlackColor);
    border: 1px solid #E8E8E8;
}

.btn-white:hover, .btn-white:focus, .btn-white:active {
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
    color: var(--WhiteColor);
}


/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    background: #F5F4FC;

    padding:1rem 0;
    transition: all 0.3s ease;
}

.header.headerfix {
	   position: fixed; top: 0; left: 0;right: 0; box-shadow:0 2px 6px rgba(0,0,0,0.2); animation:headerfixdown 0.7s;
       background: #F5F4FC;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 9999;
}
@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}
.header .nav-content {
    display: flex;
    align-items: center;
}

.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.header .nav-links .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--BlackColor);
    padding: 0.2rem;
}

.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}
.header .nav-links .btn{margin-left: 2rem;}



.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}

.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header .btn-sidebar-close svg {
    width: 1.2rem;
    height: 1.2rem;
}
.header .mobile-toggle svg{ width: 1.2rem;
    height: 1.2rem;}

.header.inner-header{background: var(--BlackColor);}

/* =========================================
   2. HERO
   ========================================= */


.hero {
   background: #F5F4FC;
   padding: 8rem 0 0;
   overflow: hidden;
}

.hero .hero-content {
    text-align: center;
}

.hero .hero-content h1 {
    font-size:3.1rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--BlackColor);
}

.hero .hero-content h1 strong{  font-weight: 600;}

.hero .hero-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--PrimaryColor);
    margin-bottom: 1.2rem;
}

.hero .hero-content p{
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 50rem;
    margin: 0 auto 1.2rem;
    color: #3E3E3E;
}

.hero .section-bottom-btn {
    justify-content: center;
}

.hero .img-bx {
    margin-top: 3rem;
}

.hero .img-bx img{top: 1rem; position: relative;}
/* =========================================
   TRUST STRIP
   ========================================= */

.trust-strip {
    padding: 3rem 0;
}

.trust-strip .trust-item {
    padding: 0 1.5rem;
    height: 100%;
}

.trust-strip .trust-item svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--PrimaryColor);
    margin-bottom: 1rem;
}

.trust-strip .trust-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #545454;
    margin: 0;
}

/* =========================================
   SETTLE SECTION
   ========================================= */

.settle-section {
    background: linear-gradient(to top, #EEECFB 0%, #FFFFFF 100%);
}


.settle-section .row {
    margin-top: 3rem;
}

.settle-item {
    text-align: center;
}

.settle-item svg {
    width: 1.3rem;
    height: 1.3rem;
    color: var(--PrimaryColor);
    margin-bottom: 0.8rem;
}

.settle-item p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #27263A;
    margin: 0;
}

/* =========================================
   STATS STRIP
   ========================================= */


.stats-item h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #27263A;
    margin-bottom: 0.4rem;
}

.stats-item p {
    font-size: 0.85rem;
    color: #616161;
    margin: 0;
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    background: #181623;
}

.cta-section .section-bottom-btn {

    margin-top: 3rem;
}

/* =========================================
   SITE FOOTER
   ========================================= */

.footer {
    padding: 1.5rem 0;
    border-top: 1px solid #ECECEC;
}


.footer .footer-logo img {
    height: 1.8rem;
    width: auto;
}

.footer .footer-note {
    font-size: 0.85rem;
    color: #727272;
    margin: 0;
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}




