@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ====================================================
   DESIGN SYSTEM & VARIABLES
   ==================================================== */
:root {
    --red-main: #E61F41;
    --red-hover: #C90E2E;
    --dark-text: #002441;
    --grey-border: #ECF0F4;
    --bg-secondary: #FBFCFD;
    --white: #FFFFFF;
    
    --font-primary: 'Montserrat', sans-serif;
    
    /* Layout Tokens */
    --container-max-width: 1200px;
    --section-gap: 96px;
    
    /* Premium Multi-layered Shadow */
    --box-shadow-premium: 0px 54px 15px 0px rgba(0, 36, 65, 0.00), 
                          0px 35px 14px 0px rgba(0, 36, 65, 0.01), 
                          0px 20px 12px 0px rgba(0, 36, 65, 0.03), 
                          0px 9px 9px 0px rgba(0, 36, 65, 0.04), 
                          0px 2px 5px 0px rgba(0, 36, 65, 0.05);
}

/* ====================================================
   BASE RESET & LAYOUT
   ==================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    color: var(--dark-text);
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    padding-top: 116px;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.column {
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    background: var(--bg-secondary);
    width: 100%;
    padding-bottom: var(--section-gap);
}

/* ====================================================
   STICKY HEADER & NAVIGATION
   ==================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFFFF !important;
    z-index: 1000;
    width: 100%;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--grey-border);
}

header .container {
    max-width: 1232px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    position: relative;
}

header .logo img {
    display: block;
    width: 142px;
    height: auto;
}

header .buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

header .menu-holder {
    background: var(--grey-border);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
}

header .menu-holder ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: start;
    gap: 32px;
    margin: 0;
    padding: 0;
    width: 100%;
}

header .menu-holder ul li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 180%;
    color: var(--dark-text);
    text-transform: uppercase;
}

header .menu-holder ul li a:hover {
    color: var(--red-hover);
}

/* ====================================================
   MOBILE MENU DRAWER
   ==================================================== */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 1100;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark-text);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.hamburger.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #FFFFFF !important;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-drawer ul li a {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
}

.mobile-drawer .btn {
    width: 100%;
    margin-top: 10px;
}

/* ====================================================
   BUTTONS WITH SHAKE INTERACTIVE HOVER
   ==================================================== */
.btn {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 28px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--dark-text);
    background: var(--white);
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #E5F4FF;
}

.btn-dark {
    background: var(--dark-text);
    color: var(--white);
    border-color: var(--dark-text);
}

.btn-dark:hover {
    background: #00172B;
    border-color: #00172B;
}

.btn-red {
    color: var(--white);
    background: var(--red-main);
    border-color: var(--red-main);
}

.btn-red:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
}

.btn-red-big {
    display: flex;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: var(--red-main);
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    border-radius: 16px;
    border: 0;
    box-shadow: 8px 8px 0px 0px #D1DAE3;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-red-big:hover {
    transform: translate(3px, 3px);
    box-shadow: 5px 5px 0px 0px #D1DAE3;
    background: var(--red-hover);
}

.btn-red-big:active {
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px 0px #D1DAE3;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* ====================================================
   CARDS WITH LAYERED PREMIUM SHADOW
   ==================================================== */
.white-box-shadowed {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--grey-border);
    background: var(--white);
    box-shadow: var(--box-shadow-premium);
}

/* ====================================================
   HERO / FIRST SCREEN
   ==================================================== */
.first-screen {
    width: 100%;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    background: linear-gradient(180deg, #FFFFFF 0%, #ECF0F4 100%);
    overflow: hidden;
    padding-bottom: 24px;
}

.first-screen .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 80px;
    text-align: center;
}

.first-screen h1 {
    max-width: 900px;
    color: var(--dark-text);
    font-size: 54px;
    font-weight: 800;
    line-height: 120%;
    text-transform: uppercase;
}

.first-screen h1 span {
    color: var(--red-main);
}

.first-screen .subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    max-width: 700px;
    color: rgba(0, 36, 65, 0.9);
}

.first-screen-bg {
    width: 100%;
    max-width: 760px;
    height: auto;
    margin-top: 16px;
}

/* ====================================================
   COMMON BLOCKS
   ==================================================== */
.common-block {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.block-header {
    color: var(--dark-text);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

.block-header span {
    color: var(--red-main);
}

.block-description {
    color: var(--dark-text);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    max-width: 800px;
    margin: -32px auto 0 auto;
}

/* ====================================================
   HOW IT WORKS / STEPS
   ==================================================== */
.spend-screen .block-content {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.spend-screen .common-item {
    width: calc(25% - 12px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: transform 0.3s ease;
}

.spend-screen .common-item:hover {
    transform: translateY(-5px);
}

.spend-screen .spend-image {
    width: 100%;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--grey-border);
    background-color: #FAFBFC;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 16px;
}

.spend-screen .common-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px 24px;
}

.spend-screen .common-text-header {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    color: var(--dark-text);
}

.spend-screen .common-text-descr {
    font-size: 14px;
    line-height: 140%;
    color: rgba(0, 36, 65, 0.8);
}

/* ====================================================
   BENEFITS
   ==================================================== */
.benefits-screen .block-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefits-screen .common-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.benefits-screen .benefits-image i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--red-main);
    box-shadow: 8px 8px 0px 0px #D1DAE3;
    transition: transform 0.3s ease;
}

.benefits-screen .common-item:hover .benefits-image i {
    transform: scale(1.1);
}

.benefits-screen .benefits-image svg {
    width: 28px;
    height: 28px;
}

.benefits-screen .common-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.benefits-screen .common-text-header {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
}

.benefits-screen .common-text-descr {
    font-size: 14px;
    line-height: 140%;
    color: rgba(0, 36, 65, 0.8);
}

/* ====================================================
   ABOUT BLOCK
   ==================================================== */
.about-screen .cols2 {
    display: flex;
    align-items: center;
    gap: 48px;
}

.about-screen .col2-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-screen .col2-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-screen .about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-screen .about-image {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-screen .about-img {
    flex: 1;
    min-height: 225px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    margin-bottom: 16px;
}

.about-screen .about-items-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-screen .about-header {
    color: var(--red-main);
    font-size: 40px;
    font-weight: 800;
    line-height: 110%;
}

.about-screen .about-text-descr {
    font-size: 15px;
    line-height: 140%;
    color: rgba(0, 36, 65, 0.8);
}

.about-screen .common-text-descr {
    font-size: 17px;
    line-height: 150%;
}

/* ====================================================
   SPHERES OF CHECKS
   ==================================================== */
.how-screen.scores-how .block-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-screen.scores-how .common-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    transition: transform 0.3s ease;
}

.how-screen.scores-how .common-item:hover {
    transform: translateY(-5px);
}

.how-screen.scores-how .spend-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8F9FA;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-bottom: 2px solid var(--grey-border);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 24px;
}

.how-screen.scores-how .common-text {
    padding: 20px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.how-screen.scores-how .common-text-header {
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
}

.how-screen.scores-how .common-text-descr {
    font-size: 14px;
    line-height: 150%;
    color: rgba(0, 36, 65, 0.8);
    margin-bottom: 8px;
}

.how-screen.scores-how .common-text .btn {
    margin-top: auto;
    width: 100%;
    max-width: 180px;
}

/* ====================================================
   REVIEWS SLIDER
   ==================================================== */
.expert-screen {
    position: relative;
    width: 100%;
}

.expert-swiper-wrapper {
    position: relative;
    width: 100%;
}

.expert-swiper {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.expert-swiper::-webkit-scrollbar {
    display: none; /* Hide standard scrollbar */
}

.expert-swiper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.expert-swiper .swiper-wrapper {
    display: flex;
    gap: 24px;
}

.expert-swiper .swiper-slide {
    flex-shrink: 0;
    width: 500px;
    height: auto;
    scroll-snap-align: center;
}

.expert-swiper .swiper-slide > div {
    height: 100%;
}

.expert-swiper .news-item-descr {
    flex-grow: 1;
}

/* Shopper card layout improvements */
.expert-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
}

.expert-item-img.mini {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 2px solid var(--grey-border);
}

.expert-bio {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.expert-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 120%;
}

.expert-additional {
    font-size: 14px;
    color: rgba(0, 36, 65, 0.6);
}

.expert-additional-redcolor {
    font-size: 14px;
    color: var(--red-main);
    font-weight: 600;
}

.expert-earnings {
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 500;
    margin: 2px 0;
}

.expert-earnings span {
    color: #2E7D32; /* Rich premium green for income */
    font-weight: 700;
}

.expert-bio .modal-open {
    font-size: 12px;
    color: var(--red-main);
    background: rgba(230, 31, 65, 0.08); /* light red tint */
    border: 1px solid rgba(230, 31, 65, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 6px;
    display: inline-block;
    align-self: flex-start; /* don't span full width */
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.expert-bio .modal-open:hover {
    background: rgba(230, 31, 65, 0.12);
    border-color: rgba(230, 31, 65, 0.25);
}

.news-item-description {
    font-size: 14px;
    line-height: 150%;
    color: rgba(0, 36, 65, 0.85);
    font-style: italic;
    margin-top: 8px;
}

.expert-swiper .review-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.expert-swiper .review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expert-swiper .review-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.expert-swiper .review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.expert-swiper .review-name {
    font-size: 18px;
    font-weight: 700;
}

.expert-swiper .review-site {
    font-size: 14px;
    color: rgba(0, 36, 65, 0.6);
}

.expert-swiper .review-stars {
    display: flex;
    gap: 2px;
}

.expert-swiper .review-stars svg {
    width: 18px;
    height: 18px;
}

.expert-swiper .review-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
}

.expert-swiper .review-text {
    font-size: 14px;
    line-height: 150%;
    color: rgba(0, 36, 65, 0.85);
}

.expert-swiper .review-meta {
    margin-top: auto;
    font-size: 13px;
    color: rgba(0, 36, 65, 0.5);
    display: flex;
    justify-content: space-between;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.reviews-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--grey-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.reviews-arrow:hover {
    background: #E5F4FF;
    border-color: var(--dark-text);
}

.reviews-arrow svg {
    width: 18px;
    height: 18px;
}

/* ====================================================
   INFINITE BRANDS MARQUEE
   ==================================================== */
.brands-screen .block-content {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-screen .block-content::before,
.brands-screen .block-content::after {
    position: absolute;
    display: block;
    content: '';
    width: 80px;
    height: 100%;
    top: 0;
    bottom: 0;
    z-index: 2;
}

.brands-screen .block-content::before {
    background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(251, 252, 253, 0) 100%);
    left: 0;
}

.brands-screen .block-content::after {
    background: linear-gradient(270deg, var(--bg-secondary) 0%, rgba(251, 252, 253, 0) 100%);
    right: 0;
}

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    width: max-content;
}

.marquee-rtl ul {
    animation: marquee-rtl 25s linear infinite;
}

.marquee-ltr ul {
    animation: marquee-ltr 25s linear infinite;
}

.marquee ul li {
    width: 178px;
    height: 75px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    border: 1px solid var(--grey-border);
    background-color: var(--white);
    padding: 12px;
}

.marquee ul li img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes marquee-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ====================================================
   EXTERNAL REVIEWS / RATINGS
   ==================================================== */
.how-screen.reviews .block-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-screen.reviews .common-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    padding: 32px 24px;
}

.how-screen.reviews .common-item:hover {
    transform: translateY(-5px);
}

.how-screen.reviews .spend-image {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.how-screen.reviews .rating-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.how-screen.reviews .rating-score span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 36, 65, 0.6);
}

.how-screen.reviews .review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.how-screen.reviews .review-stars svg {
    width: 20px;
    height: 20px;
}

.how-screen.reviews .common-text-descr {
    font-size: 14px;
    color: rgba(0, 36, 65, 0.7);
}

/* ====================================================
   GREY BRAND VALUES BLOCK
   ==================================================== */
.grey {
    border-radius: 24px;
    border: 2px solid var(--grey-border);
    background: #ECF0F4;
    box-shadow: var(--box-shadow-premium);
}

.kindness-screen .common-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 32px 48px;
    gap: 48px;
}

.kindness-screen .kindness-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kindness-screen .kindness-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.kindness-screen .block-header {
    text-align: left;
}

.kindness-screen .block-content {
    font-size: 18px;
    line-height: 150%;
    color: rgba(0, 36, 65, 0.9);
}

/* ====================================================
   FAQ ACCORDION
   ==================================================== */
.faq-screen .block-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    cursor: pointer;
    align-items: stretch;
    width: 100%;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--red-main);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-text);
}

.faq-icon {
    font-size: 24px;
    color: var(--red-main);
    transition: transform 0.3s ease;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-panel p {
    margin-top: 12px;
    line-height: 160%;
    color: rgba(0, 36, 65, 0.8);
    font-size: 15px;
}

/* ====================================================
   WIZARD APPLY FORM
   ==================================================== */
.apply-section {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
}

.apply-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-progress-container {
    width: 100%;
    height: 6px;
    background: #ECF0F4;
    border-radius: 3px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    width: 33.3%;
    background: var(--red-main);
    transition: width 0.3s ease;
}

.step-labels {
    display: flex;
    justify-content: space-between;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 36, 65, 0.4);
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.step-label.active {
    color: var(--red-main);
    font-weight: 700;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid var(--grey-border);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--dark-text);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--dark-text);
}

.error-message {
    font-size: 13px;
    color: var(--red-main);
    font-weight: 600;
    display: none;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--grey-border);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.checkbox-card:hover {
    border-color: var(--dark-text);
}

.checkbox-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--red-main);
    cursor: pointer;
}

.checkbox-card span {
    font-size: 14px;
    font-weight: 600;
}

.consent-label {
    display: flex;
    gap: 12px;
    align-items: start;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--red-main);
    margin-top: 2px;
    flex-shrink: 0;
}

.consent-label span {
    font-size: 13px;
    line-height: 140%;
    color: rgba(0, 36, 65, 0.7);
}

.consent-label a {
    color: var(--red-main);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    gap: 16px;
}

.form-actions .btn {
    flex: 1;
}

#success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 16px;
}

#success-screen svg {
    width: 64px;
    height: 64px;
    color: #10B981;
}

#success-screen h3 {
    font-size: 24px;
    font-weight: 700;
}

#success-screen p {
    font-size: 16px;
    color: rgba(0, 36, 65, 0.8);
    max-width: 480px;
}

.ticket-badge {
    background: #E5F4FF;
    color: var(--dark-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 8px;
}

/* ====================================================
   CTA BOTTOM SECTION
   ==================================================== */
.first-screen.last-screen {
    border-radius: 32px;
    border: 1px solid var(--grey-border);
    background: var(--white);
    box-shadow: var(--box-shadow-premium);
    padding-bottom: 0;
}

.first-screen.last-screen .container {
    padding: 72px 16px 40px;
    gap: 16px;
}

.first-screen.last-screen h2 {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
}

.first-screen.last-screen span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 36, 65, 0.7);
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
    display: flex;
    flex-direction: column;
    width: 100%;
}

footer .container-fluid {
    background: #002342;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    padding-top: 48px;
    padding-bottom: 24px;
}

footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

footer .logo-holder {
    flex: 1;
}

footer .logo-holder .logo img {
    width: 140px;
}

footer .logo-holder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 16px;
    line-height: 140%;
}

footer .menu-holder {
    flex: 2;
}

footer .menu-holder ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

footer .menu-holder ul li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
}

footer .menu-holder ul li a:hover {
    opacity: 1;
    color: var(--red-main);
}

footer .socials-holder {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

footer .socials-holder span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

footer .socials {
    list-style: none;
    display: flex;
    gap: 12px;
}

footer .socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    transition: transform 0.3s ease;
}

footer .socials li a:hover {
    transform: translateY(-3px);
}

footer .socials li svg {
    width: 20px;
    height: 20px;
}

footer .law-menu {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .law-menu ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

footer .law-menu ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

footer .law-menu ul li a:hover {
    color: var(--white);
}

footer .copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ====================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ==================================================== */
@media screen and (max-width: 1199px) {
    .about-screen .cols2 {
        gap: 24px;
    }
}

@media screen and (max-width: 1099px) {
    main {
        gap: 64px;
        padding-bottom: 64px;
    }
    
    .first-screen h1 {
        font-size: 44px;
    }
    
    .about-screen .cols2 {
        flex-direction: column;
    }
    
    .about-screen .col2-image {
        width: 100%;
        max-width: 500px;
    }
}

@media screen and (max-width: 991px) {
    body {
        padding-top: 72px !important;
    }

    .hamburger {
        display: block;
    }
    
    header .menu-holder {
        display: none !important;
    }
    
    header .buttons .header-cta-btn {
        display: none;
    }
    
    .first-screen .container {
        padding-top: 60px;
    }
    
    .first-screen h1 {
        font-size: 36px;
    }
    
    .spend-screen .block-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .spend-screen .common-item {
        width: 100%;
    }
    
    .benefits-screen .block-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .how-screen.scores-how .block-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .how-screen.reviews .block-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .kindness-screen .common-block {
        flex-direction: column;
        padding: 32px 24px;
    }
    
    .kindness-screen .block-header {
        text-align: center;
    }
    
    .kindness-screen .block-content {
        text-align: center;
    }
    
    .expert-swiper .swiper-slide {
        width: 420px;
    }
    
    footer .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    footer .socials-holder {
        align-items: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .first-screen h1 {
        font-size: 28px;
    }
    
    .first-screen .subtitle {
        font-size: 16px;
    }
    
    .block-header {
        font-size: 24px;
    }
    
    .block-description {
        font-size: 16px;
    }
    
    .spend-screen .block-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-screen .block-content {
        grid-template-columns: 1fr;
    }
    
    .about-screen .about-list {
        grid-template-columns: 1fr;
    }
    
    .how-screen.scores-how .block-content {
        grid-template-columns: 1fr;
    }
    
    .how-screen.reviews .block-content {
        grid-template-columns: 1fr;
    }
    
    .expert-swiper .swiper-slide {
        width: 310px;
    }
    
    .expert-swiper .review-card {
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    footer .law-menu {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    footer .law-menu ul {
        flex-direction: column;
        gap: 8px;
    }
}

@media screen and (max-width: 575px) {
    .first-screen h1 {
        font-size: 24px;
    }
    
    .btn-red-big {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    footer .menu-holder ul {
        grid-template-columns: 1fr;
    }
}
