:root {
    --navy: #0B2447;
    --dark-navy: #06172F;
    --red: #D71920;
    --dark-red: #B51218;
    --black: #111111;
    --white: #FFFFFF;
    --light: #F5F7FA;
    --grey: #667085;
    --border: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--black);
    background: var(--white);
}

button,
input,
select,
textarea {
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(92%, 1280px);
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 18px rgba(0,0,0,0.04);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 250px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.main-nav a {
    position: relative;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    padding: 35px 0 32px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 0;
    height: 3px;
    background: var(--red);
    border-radius: 3px;
    transition: 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-button {
    font-size: 14px;
    font-weight: 800;
}

.apply-button {
    min-width: 120px;
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 900;
}


/* =========================================================
   RANDOM SLIDER
========================================================= */

.tax-slider-section {
    width: 100%;
    background: #06172F;
}

.tax-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #06172F;
}

.tax-slider-track {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #06172F;
}

.tax-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.tax-slide.active {
    opacity: 1;
    visibility: visible;
}

.tax-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(6,23,47,0.84);
    color: white;

    font-size: 22px;
    font-weight: 900;

    cursor: pointer;

    transition: 0.2s ease;
}

.slider-arrow:hover {
    background: var(--red);
}

.slider-prev {
    left: 22px;
}

.slider-next {
    right: 22px;
}

.no-slides {
    height: 720px;
}


/* =========================================================
   COMMON
========================================================= */

.section-label {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}


/* =========================================================
   TAX TOUCHES EVERYONE
========================================================= */

.tax-touches-section {
    background: #ffffff;
    padding: 100px 0;
}

.tax-touches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tax-touches-content h1 {
    color: var(--navy);
    font-size: clamp(42px,4.3vw,62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
}

.tax-touches-content h1 span {
    display: block;
    color: var(--red);
}

.tax-touches-content p {
    color: #536174;
    font-size: 18px;
    line-height: 1.85;
}

.tax-touches-image {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f7;
}

.tax-touches-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   READ MORE
========================================================= */

.read-more-button {
    margin-top: 32px;

    min-width: 150px;
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;
    border-radius: 5px;

    background: var(--red);
    color: #ffffff;

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    transition: 0.2s ease;
}

.read-more-button:hover {
    background: var(--dark-red);
}

.read-more-arrow {
    font-size: 18px;
}

.home-more-content {
    display: none;
}

.home-more-content.open {
    display: block;
}


/* =========================================================
   CHALLENGES
========================================================= */

.challenges-section {
    background: #F5F7FA;
    padding: 105px 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 75px;
    align-items: start;
}

.challenges-content h2 {
    color: var(--navy);
    font-size: clamp(40px,4vw,58px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.3px;
    margin-bottom: 26px;
}

.challenges-content h2 span {
    color: var(--red);
}

.challenge-intro {
    color: #536174;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.challenge-item {
    padding: 22px 0;
    border-top: 1px solid #DDE3EA;
}

.challenge-item h3 {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
    margin-bottom: 9px;
}

.challenge-item p {
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}

.challenge-conclusion {
    margin-top: 28px;
    padding: 25px 28px;
    background: var(--navy);
    border-left: 5px solid var(--red);
    border-radius: 6px;
}

.challenge-conclusion p {
    color: #E2E8F0;
    font-size: 15px;
    line-height: 1.8;
}

.challenges-image {
    width: 100%;
    height: 690px;
    position: sticky;
    top: 120px;
    overflow: hidden;
    border-radius: 10px;
    background: #E8EDF3;
}

.challenges-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   SOLUTION
========================================================= */

.solution-section {
    background: #ffffff;
    padding: 110px 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.solution-image {
    width: 100%;
    height: 720px;
    overflow: hidden;
    border-radius: 10px;
    position: sticky;
    top: 120px;
    background: #eef2f7;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-content h2 {
    color: var(--navy);
    font-size: clamp(40px,4vw,58px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.3px;
    margin-bottom: 25px;
}

.solution-content h2 span {
    color: var(--red);
}

.solution-content > p {
    color: #5a6677;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.solution-content .solution-intro {
    color: #26364b;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.75;
}

.solution-pillars {
    margin: 36px 0;
}

.solution-pillar {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid #e1e6ec;
}

.solution-pillar:last-child {
    border-bottom: 1px solid #e1e6ec;
}

.pillar-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: white;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
}

.solution-pillar h3 {
    color: var(--navy);
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 8px;
}

.solution-pillar p {
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
}

.solution-final-text {
    margin-top: 30px;
}

.solution-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.solution-primary-button,
.solution-secondary-button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 900;
}

.solution-primary-button {
    background: var(--red);
    color: white;
}

.solution-primary-button:hover {
    background: var(--dark-red);
}

.solution-secondary-button {
    background: var(--navy);
    color: white;
}

.solution-secondary-button:hover {
    background: var(--dark-navy);
}

.solution-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e6ec;
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
    font-style: italic;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--dark-navy);
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-content h4 {
    margin-bottom: 15px;
}

.footer-content p,
.footer-content a {
    color: #CBD5E1;
}

.footer-content a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    padding: 20px;
    color: #94A3B8;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        display: none;
    }

    .tax-slider-track {
        height: 560px;
    }

    .tax-touches-grid,
    .challenges-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .challenges-image,
    .solution-image {
        position: relative;
        top: auto;
        height: 500px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .header-inner {
        min-height: 78px;
    }

    .logo img {
        width: 180px;
    }

    .login-button {
        display: none;
    }

    .apply-button {
        min-height: 43px;
        padding: 0 16px;
    }

    .tax-slider-track {
        height: 380px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .tax-touches-section,
    .challenges-section,
    .solution-section {
        padding: 70px 0;
    }

    .tax-touches-content h1,
    .challenges-content h2,
    .solution-content h2 {
        font-size: 40px;
    }

    .tax-touches-content p,
    .challenge-intro,
    .solution-content .solution-intro {
        font-size: 16px;
    }

    .tax-touches-image,
    .challenges-image,
    .solution-image {
        height: 340px;
    }

    .solution-pillar {
        grid-template-columns: 1fr;
    }

    .solution-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   REMOVE RED LINE INSIDE DROPDOWN MENUS
========================================================= */

.kt-dropdown-menu::before,
.kt-dropdown-menu::after,
.kt-dropdown-menu a::before,
.kt-dropdown-menu a::after {
    content: none !important;
    display: none !important;
}

.kt-dropdown-menu a {
    border-top: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}