/* =========================================================
   ERINITE SOLUTIONS — ABOUT PAGE
   SECTION 01 — ABOUT HERO
   ========================================================= */


/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */

.about-hero {
    position: relative;
    overflow: hidden;
    background: #F8FAFC;
    padding: 100px 0 40px;
}


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.about-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 70px;
}


/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.about-hero-content {
    position: relative;
    z-index: 5;
}


/* Eyebrow */

.about-eyebrow {
    display: inline-flex;
    align-items: center;

    position: relative;

    margin-bottom: 6px;

    color: #2563EB;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* Small blue line underneath eyebrow */

.about-eyebrow::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -12px;

    width: 54px;
    height: 2px;

    background: #2563EB;
}


/* Main heading */

.about-hero h1 {
    max-width: 650px;

    margin: 0 0 28px;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 4.2vw, 60px);
    font-weight: 500;

    line-height: 1.1;
    letter-spacing: -0.035em;
}


/* Blue emphasis */

.about-hero h1 span {
    display: inline;
    color: #0B1F2A;
}


/* Description */

.about-hero-description {
    max-width: 610px;

    margin: 0 0 18px;

    color: #64748B;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight:500;
         
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.about-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 18px;
    padding: 15px 25px;

    background: #2563EB;
    color: #FFFFFF;

    border: 1px solid #2563EB;
    border-radius: 11px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


.about-hero-cta:hover {
    background: #1D4ED8;

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.18);
}


.cta-arrow {
    font-size: 21px;
    line-height: 1;

    transition: transform 0.25s ease;
}


.about-hero-cta:hover .cta-arrow {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   RIGHT VISUAL
--------------------------------------------------------- */

.about-hero-visual {
    position: relative;

    min-height: 610px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Main image wrapper */

.about-hero-image-wrap {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 720px;
}


/* Main image */

.about-hero-image {
    display: block;

    width: 100%;
    height: 610px;

    object-fit: cover;

    border-radius: 20px;

    position: relative;
    z-index: 2;

    box-shadow:
        0 20px 50px rgba(11, 31, 42, 0.10);
}


/* ---------------------------------------------------------
   VISUAL CARDS
   These are decorative only
--------------------------------------------------------- */

.about-visual-card {
    position: absolute;
    z-index: 4;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(226, 232, 240, 0.95);

    border-radius: 13px;

    box-shadow:
        0 12px 35px rgba(11, 31, 42, 0.12);

    backdrop-filter: blur(8px);

    font-family: "Inter", sans-serif;

       transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-visual-card:hover {
    transform: translateY(-5px) scale(1.02);

    box-shadow:
        0 18px 40px rgba(11, 31, 42, 0.16);
}

/* Performance card */

.about-performance-card {
    top:40px;
    right: 22px;

    width: 140px;

    padding: 10px 10px;
     background: rgba(255, 255, 255, 0.868);
border: 1px solid rgba(255, 255, 255, 0.35);

backdrop-filter: none;
-webkit-backdrop-filter: none;
    
}

.visual-card-title {
    display: block;

    margin-bottom: 8px;

    color: #0B1F2A;
   width: 125px;
    font-size: 10px;
    font-weight: 450;
}


.performance-graph {
    width: 100%;
    height: 48px;
    margin: 4px 0 8px;
}

.performance-graph svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.performance-graph polyline {
    fill: none;
    stroke: #2563EB;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.performance-graph .graph-arrow {
    stroke-width: 2.4;
}


.about-performance-card strong {
    display: block;

    color: #2563EB;

    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
}


.about-performance-card small {
    color: #64748B;

    font-size: 11px;
}


/* ---------------------------------------------------------
OUR FOCUS CARD
--------------------------------------------------------- */

.about-focus-card {
    top: 200px;
    right: 22px;

    width: 140px;

    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.868);
border: 1px solid rgba(255, 255, 255, 0.35);

backdrop-filter: none;
-webkit-backdrop-filter: none;
}

.about-focus-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.about-focus-card li {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #334155;

    font-size: 10px;
    font-weight: 500;
}

.focus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    flex: 0 0 23px;

    border-radius: 50%;

    background: rgba(239, 246, 255, 0.971);
    color: #2563EB;

    font-size: 10px;
    font-weight: 600;
}

/* ---------------------------------------------------------
BUSINESS FOCUSED CARD
This one is separate + interactive
--------------------------------------------------------- */

.about-business-card {
    position: absolute;
    z-index: 6;

    left: 22px;
    bottom: 10px;

    width: min(320px, 68%);

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 18px;

    background: #FFFFFF;

    border: 1px solid #E2E8F0;
    border-radius: 15px;

    box-shadow:
        0 12px 30px rgba(11, 31, 42, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.about-business-card:hover {
    transform: translateY(-5px);

    border-color: rgba(37, 99, 235, 0.35);

    box-shadow:
        0 18px 36px rgba(11, 31, 42, 0.14);
}

/* Icon */

.business-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 50%;

    background: #2563EB;

    color: #FFFFFF;

    font-size: 28px;
    font-weight: 300;
}

.business-card-content {
    position: relative;
    z-index: 2;
}

.business-card-content h2 {
    margin: 0 0 4px;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;

    line-height: 1.3;
}

.business-card-content p {
    margin: 0;

    color: #64748B;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;

    line-height: 1.45;
}


/* ---------------------------------------------------------
   BACKGROUND GLOW
--------------------------------------------------------- */

.about-hero-glow {
    position: absolute;
    z-index: 0;

    width: 430px;
    height: 430px;

    top: 40px;
    right: 0;

    background: rgba(56, 189, 248, 0.14);

    filter: blur(90px);

    border-radius: 50%;

    pointer-events: none;
}


/* ---------------------------------------------------------
   DOT PATTERNS
--------------------------------------------------------- */

.about-dot-pattern {
    position: absolute;
    z-index: 1;

    width: 80px;
    height: 80px;

    background-image: radial-gradient(
        #38BDF8 1.2px,
        transparent 1.2px
    );

    background-size: 10px 10px;

    opacity: 0.65;

    pointer-events: none;
}


.about-dot-pattern-top {
    top: 20px;
    right: -5px;
}




/* ---------------------------------------------------------
   SUBTLE WAVE
--------------------------------------------------------- */

.about-wave-pattern {
    position: absolute;
    z-index: 0;

    left: -90px;
    bottom: -80px;

    width: 430px;
    height: 150px;

    border-top: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 50%;

    transform: rotate(5deg);

    pointer-events: none;
}


.about-wave-pattern::before,
.about-wave-pattern::after {
    content: "";

    position: absolute;

    left: 0;

    width: 100%;
    height: 100%;

    border-top: 1px solid rgba(37, 99, 235, 0.12);

    border-radius: 50%;
}


.about-wave-pattern::before {
    top: 18px;
}


.about-wave-pattern::after {
    top: 36px;
}


/* =========================================================
   TABLET
   768px — 1199px
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .about-hero {
        padding: 20px 0 20px;
    }

    .about-container {
        gap: 45px;
    }

    .about-hero h1 {
        font-size: clamp(38px, 5vw, 52px);
    }

    .about-hero-visual {
        min-height: 540px;
    }

    .about-hero-image {
        height: 540px;
    }


    /* Performance Card */

    .about-performance-card {
        top: 65px;
        right: 12px;

        width: 130px;
        padding: 13px 14px;
    }


    /* Focus Card */

    .about-focus-card {
        top: 220px;
        right: 12px;

        width: 130px;
        padding: 13px 14px;
    }

    .about-focus-card ul {
        gap: 9px;
    }

    .about-focus-card li {
        font-size: 9px;
        gap: 7px;
    }

    .focus-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;

        font-size: 9px;
    }


    /* Performance typography */

    .visual-card-title {
        font-size: 10px;
    }


    /* Business Focus Card */

    .about-business-card {
        left: 10px;
        bottom: 5px;

        width: 280px;

        padding: 14px 16px;

        gap: 12px;
    }

    .business-card-icon {
        width: 48px;
        height: 48px;

        flex: 0 0 48px;

        font-size: 25px;
    }

    .business-card-content h2 {
        font-size: 16px;
    }

    .business-card-content p {
        font-size: 12px;
    }
}
/* =========================================================
   MOBILE
   Below 768px
========================================================= */

@media (max-width: 767px) {

    .about-hero {
        padding: 65px 0 80px;
    }

    .about-container {
        width: min(100% - 40px, 560px);

        grid-template-columns: 1fr;

        gap: 55px;
    }


    /* Content */

    .about-hero-content {
        text-align: left;
    }

    .about-eyebrow {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .about-hero h1 {
        margin-bottom: 22px;

        font-size: clamp(36px, 10vw, 46px);

        line-height: 1.12;
    }

    .about-hero-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-hero-cta {
        margin-top: 12px;
    }


    /* Visual */

    .about-hero-visual {
        min-height: auto;

        display: block;

        padding-bottom: 85px;
    }


    .about-hero-image-wrap {
        width: 100%;
    }


    .about-hero-image {
        width: 100%;
        height: 430px;

        border-radius: 16px;
    }


    /* Decorative Cards — Mobile */

.about-performance-card {
    top: 20px;
    right: 10px;

    width: 145px;
    padding: 13px;
}


.about-focus-card {
    display: block;

    top: 185px;
    right: 10px;

    width: 145px;
    padding: 13px;
}


.about-focus-card ul {
    gap: 8px;
}


.about-focus-card li {
    font-size: 9px;
    gap: 6px;
}


.focus-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;

    font-size: 9px;
}

    /* Business card */

    .about-business-card {
        left: 15px;
        bottom: 0;

        width: calc(100% - 30px);

        padding: 16px 18px;

        gap: 15px;

        border-radius: 14px;
    }


    .business-card-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        font-size: 28px;
    }


    .business-card-content h2 {
        font-size: 17px;
    }


    .business-card-content p {
        font-size: 13px;
    }


    /* Simplify decorative elements */

    .about-hero-glow {
        width: 300px;
        height: 300px;

        right: -100px;

        filter: blur(70px);
    }


    .about-dot-pattern-top {
        right: -25px;
        top: 5px;
    }


    .about-dot-pattern-bottom {
        display: none;
    }


    .about-wave-pattern {
        left: -150px;
        bottom: -60px;

        opacity: 0.65;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-hero {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .about-hero-image {
        height: 350px;
    }

   .about-performance-card {
    top: 15px;
    right: 8px;

    width: 130px;
    padding: 11px;
}

.about-focus-card {
    top: 170px;
    right: 8px;

    width: 130px;
    padding: 11px;
}

.about-focus-card li {
    font-size: 8px;
}

.focus-icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
}
    .about-business-card {
        left: 10px;
        width: calc(100% - 20px);
    }

    .business-card-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    .business-card-content h2 {
        font-size: 16px;
    }

    .business-card-content p {
        font-size: 12px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-hero-cta,
    .about-hero-cta .cta-arrow,
    .about-business-card {
        transition: none;
    }

}



/* =========================================================
   SECTION 02 — OUR EXPERTISE
========================================================= */

.about-expertise {
    position: relative;
    padding: 10px 0 40px;

    background: #F8FAFC;

    overflow: hidden;
}


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.about-expertise-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
--------------------------------------------------------- */

.about-expertise-header {
    max-width: 850px;
    margin: 0 auto 5px;

    text-align: center;
}


/* Eyebrow */

.about-expertise-header .about-eyebrow {
    margin-bottom: 22px;

    color: #2563EB;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* Eyebrow line */

.about-expertise-header .about-eyebrow::after {
    left: 50%;
    transform: translateX(-50%);

    bottom: -12px;

    width: 54px;
    height: 2px;

    background: #2563EB;
}


/* Main heading */

.about-expertise-header h2 {
    max-width: 820px;

    margin: 0 auto 5px;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;
    font-size: clamp(40px, 4.2vw, 60px);
    font-weight: 500;

    line-height: 1.1;
    letter-spacing: -0.035em;
}


/* Heading second line */

.about-expertise-header h2 span {
    display: block;

    color: #0B1F2A;
}


/* Intro */

.about-expertise-intro {
    max-width: 650px;

    margin: 0 auto;

    color: #64748B;

    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   EXPERTISE GRID
--------------------------------------------------------- */

.expertise-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* ---------------------------------------------------------
   EXPERTISE CARD
--------------------------------------------------------- */

.expertise-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 465px;

    padding: 10px 10px 0;

    background: #FFFFFF;

    border: 1px solid #E2E8F0;
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 24px rgba(11, 31, 42, 0.035);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Card hover */

.expertise-card:hover {
    transform: translateY(-6px);

    border-color: rgba(37, 99, 235, 0.20);

    box-shadow:
        0 18px 38px rgba(11, 31, 42, 0.08);
}


/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 92px;
    height: 92px;

    margin-bottom: 18px;

    flex: 0 0 92px;

    border-radius: 50%;

    background: #EFF6FF;

    color: #2563EB;

    font-family: "Inter", sans-serif;
    font-size: 35px;
    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.expertise-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* Icon hover */

.expertise-card:hover .expertise-icon {
    transform: translateY(-3px);

    background: #E8F1FF;
}


/* ---------------------------------------------------------
   CARD NUMBER
--------------------------------------------------------- */

.expertise-number {
    display: block;

    margin-bottom: 6px;

    color: #2563EB;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;

    line-height: 1;
}


/* ---------------------------------------------------------
   CARD HEADING
--------------------------------------------------------- */

.expertise-card h3 {
    min-height: 58px;

    margin: 0;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;

    line-height: 1.35;
    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   SMALL BLUE DIVIDER
--------------------------------------------------------- */

.expertise-line {
    display: block;

    width: 36px;
    height: 1.5px;

    margin: 3px 0 3px;

    background: #2563EB;
}


/* ---------------------------------------------------------
   CARD DESCRIPTION
--------------------------------------------------------- */

.expertise-card p {
    margin: 0;

    color: #475569;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 1.65;
}


/* ---------------------------------------------------------
   CARD IMAGE
--------------------------------------------------------- */

.expertise-image {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    width: 100%;

    height: 185px;

    margin-top: 4px;

    padding-top: 2x;

    overflow: hidden;
}


.expertise-image img {
    display: block;

    width: 100%;
    max-width: 270px;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    transition:
        transform 0.4s ease;
}


/* Image hover */

.expertise-card:hover .expertise-image img {
    transform: translateY(-4px);
}


/* =========================================================
   TABLET
   768px — 1199px
========================================================= */

@media (max-width: 1199px) {

    .about-expertise {
        padding: 90px 0 100px;
    }


    .about-expertise-container {
        width: min(100% - 40px, 900px);
    }


    .about-expertise-header {
        margin-bottom: 45px;
    }


    .about-expertise-header h2 {
        font-size: clamp(38px, 5vw, 52px);
    }


    .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .expertise-card {
        min-height: 520px;

        padding: 28px 30px 0;
    }


    .expertise-icon {
        width: 82px;
        height: 82px;

        flex-basis: 82px;

        font-size: 31px;
    }


    .expertise-card h3 {
        font-size: 20px;
    }


    .expertise-image {
        height: 175px;
    }

}


/* =========================================================
   MOBILE
   Below 768px
========================================================= */

@media (max-width: 767px) {

    .about-expertise {
        padding: 72px 0 80px;
    }


    .about-expertise-container {
        width: min(100% - 40px, 560px);
    }


    .about-expertise-header {
        margin-bottom: 38px;

        text-align: center;
    }


    .about-expertise-header h2 {
        margin-bottom: 18px;

        font-size: clamp(34px, 9vw, 44px);

        line-height: 1.12;
    }


    .about-expertise-header h2 span {
        display: inline;
    }


    .about-expertise-intro {
        font-size: 16px;

        line-height: 1.65;
    }


    /* Cards */

    .expertise-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .expertise-card {
        min-height: 0;

        padding: 28px 26px 0;

        border-radius: 16px;
    }


    .expertise-icon {
        width: 76px;
        height: 76px;

        flex-basis: 76px;

        margin-bottom: 18px;

        font-size: 29px;
    }


    .expertise-number {
        font-size: 18px;
    }


    .expertise-card h3 {
        min-height: 0;

        font-size: 20px;
    }


    .expertise-line {
        margin: 15px 0 16px;
    }


    .expertise-card p {
        font-size: 15px;

        line-height: 1.65;
    }


    .expertise-image {
        height: 170px;

        margin-top: 25px;
    }


    .expertise-image img {
        max-width: 280px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-expertise {
        padding: 60px 0 70px;
    }


    .about-expertise-container {
        width: calc(100% - 32px);
    }


    .about-expertise-header {
        margin-bottom: 32px;
    }


    .about-expertise-header h2 {
        font-size: 34px;
    }


    .about-expertise-intro {
        font-size: 15px;
    }


    .expertise-card {
        padding: 24px 22px 0;

        border-radius: 15px;
    }


    .expertise-icon {
        width: 70px;
        height: 70px;

        flex-basis: 70px;

        font-size: 27px;
    }


    .expertise-card h3 {
        font-size: 19px;
    }


    .expertise-card p {
        font-size: 14px;
    }


    .expertise-image {
        height: 155px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .expertise-card,
    .expertise-icon,
    .expertise-image img {
        transition: none;
    }

}

/* =========================================================
   SECTION 3 — WHY ERINITE SOLUTIONS
   DESKTOP
========================================================= */


/* ---------------------------------------------------------
   MAIN SECTION
--------------------------------------------------------- */

.why-section {
    position: relative;

    width: 100%;

    padding: 20px 0 10px;

    overflow: hidden;

    background: #F8FAFC;
}


/* ---------------------------------------------------------
   MAIN CONTAINER
--------------------------------------------------------- */

.why-container {
    width: min(1200px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 70px;
}


/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.why-content {
    position: relative;

    z-index: 2;
}


/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.why-eyebrow {
    display: inline-flex;

    position: relative;

    margin-bottom: 28px;

    color: #2563EB;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


/* Blue line */

.why-eyebrow::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -12px;

    width: 52px;

    height: 2px;

    background: #2563EB;
}


/* ---------------------------------------------------------
   MAIN HEADING
--------------------------------------------------------- */

.why-title {
    max-width: 650px;

    margin: 0 0 8px;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;

    font-size: clamp(42px, 4.2vw, 60px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -0.035em;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.why-description {
    max-width: 620px;

    margin: 0 0 5px;

    color: #475569;

    font-family: "Inter", sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   APPROACH LIST
--------------------------------------------------------- */

.why-approach-list {
    display: flex;

    flex-direction: column;

    gap: 8px;

    max-width: 590px;
}


/* ---------------------------------------------------------
   APPROACH ITEM
--------------------------------------------------------- */

.why-approach-item {
    display: grid;

    grid-template-columns: 110px minmax(0, 1fr);

    align-items: center;

    column-gap: 20px;

    min-height: 95px;
}


/* ---------------------------------------------------------
   APPROACH ICON
--------------------------------------------------------- */

.why-approach-icon {
    position: relative;

    width: 88px;

    height: 88px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #EFF6FF;

    flex-shrink: 0;
}


.why-approach-icon img {
    width: 88px;

    height: 88px;

    object-fit: contain;

    display: block;
}


/* Vertical connector */

.why-approach-item:not(:last-child)
.why-approach-icon::after {
    content: "";

    position: absolute;

    top: 100%;

    left: 50%;

    width: 1px;

    height: 48px;

    background: #DBEAFE;

    transform: translateX(-50%);
}


/* ---------------------------------------------------------
   APPROACH CONTENT
--------------------------------------------------------- */

.why-approach-content {
    position: relative;

    padding-left: 8px;
}


.why-approach-content::before {
    content: "";

    position: absolute;

    left: -20px;

    top: 50%;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #DBEAFE;

    transform: translateY(-50%);
}


.why-approach-content h3 {
    margin: 0 0 6px;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.3;
}


.why-approach-content p {
    max-width: 300px;

    margin: 0;

    color: #475569;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   RIGHT BUSINESS CARD
========================================================= */

.why-business-card {
    position: relative;

    padding: 36px 40px;

    border: 1px solid #DBEAFE;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);

    z-index: 2;
}


/* ---------------------------------------------------------
   CARD HEADER
--------------------------------------------------------- */

.why-card-header {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-bottom: 10px;
}


.why-card-main-icon {
    width: 84px;

    height: 84px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #EFF6FF;
}


.why-card-main-icon img {
    width: 84px;

    height: 84px;

    object-fit: contain;

    display: block;
}


.why-card-heading {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.why-card-heading h2 {
    margin: 0;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;

    font-size: 25px;

    font-weight: 600;

    line-height: 1.25;
}


.why-card-line {
    display: block;

    width: 48px;

    height: 2px;

    margin-top: 14px;

    background: #2563EB;
}


/* =========================================================
   BENEFITS
========================================================= */

.why-benefits {
    display: flex;

    flex-direction: column;
}


/* ---------------------------------------------------------
   SINGLE BENEFIT
--------------------------------------------------------- */

.why-benefit {
    display: grid;

    grid-template-columns: 54px minmax(0, 1fr);

    align-items: center;

    gap: 18px;

    padding: 15px 0;

    border-bottom: 1px solid #E2E8F0;
}


.why-benefit:first-child {
    padding-top: 0;
}


.why-benefit:last-child {
    padding-bottom: 0;

    border-bottom: none;
}


/* ---------------------------------------------------------
   CHECK ICON
--------------------------------------------------------- */

.why-benefit-icon {
    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #F1F7FF;

    flex-shrink: 0;
}


.why-benefit-icon span {
    color: #2563EB;

    font-family: Arial, sans-serif;

    font-size: 25px;

    font-weight: 400;

    line-height: 1;
}


/* ---------------------------------------------------------
   BENEFIT TEXT
--------------------------------------------------------- */

.why-benefit-content h3 {
    margin: 0 0 5px;

    color: #0B1F2A;

    font-family: "Poppins", sans-serif;

    font-size: 17px;
    
    font-weight: 600;

    line-height: 1.35;
}


.why-benefit-content p {
    margin: 0;

    color: #475569;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   FULL WIDTH CTA
========================================================= */

.why-cta {
    width: min(1200px, calc(100% - 48px));

    min-height: 180px;

    margin: 55px auto 0;

    padding: 30px 70px;

    display: grid;

    grid-template-columns: 110px minmax(0, 1fr) auto;

    align-items: center;

    gap: 30px;

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #061B36;

    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}


/* ---------------------------------------------------------
   CTA ICON
--------------------------------------------------------- */

.why-cta-icon {
    width: 96px;

    height: 96px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(37, 99, 235, 0.55);

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.08);

    flex-shrink: 0;
}


.why-cta-icon img {
    width: 96px;

    height: 96px;

    object-fit: contain;

    display: block;
}


/* ---------------------------------------------------------
   CTA CONTENT
--------------------------------------------------------- */

.why-cta-content {
    position: relative;

    z-index: 2;
}


.why-cta-content h2 {
    margin: 0 0 8px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.3;
}


.why-cta-content p {
    max-width: 620px;

    margin: 0;

    color: #E2E8F0;

    font-family: "Inter", sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   CTA BUTTON
--------------------------------------------------------- */

.why-cta-button {
    min-width: 310px;

    min-height: 64px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    border-radius: 10px;

    background: #2563EB;

    color: #FFFFFF;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 600;

    line-height: 1;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.why-cta-button:hover {
    transform: translateY(-2px);

    background: #1D4ED8;
}


.why-cta-arrow {
    font-size: 26px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   TABLET
   768px — 1199px
========================================================= */

@media (max-width: 1199px) {

    .why-section {
        padding: 80px 0 80px;
    }


    .why-container {
        width: min(100% - 48px, 1000px);

        gap: 45px;
    }


    .why-title {
        font-size: clamp(38px, 5vw, 52px);
    }


    .why-description {
        font-size: 17px;
    }


    .why-approach-item {
        grid-template-columns: 85px minmax(0, 1fr);

        column-gap: 18px;
    }


    .why-approach-icon {
        width: 72px;

        height: 72px;
    }


    .why-approach-icon img {
        width: 48px;

        height: 48px;
    }


    .why-approach-content h3 {
        font-size: 18px;
    }


    .why-approach-content p {
        font-size: 14px;
    }


    .why-business-card {
        padding: 30px;
    }


    .why-card-header {
        gap: 20px;
    }


    .why-card-main-icon {
        width: 72px;

        height: 72px;
    }


    .why-card-main-icon img {
        width: 46px;

        height: 46px;
    }


    .why-card-heading h2 {
        font-size: 23px;
    }


    .why-benefit {
        grid-template-columns: 46px minmax(0, 1fr);

        gap: 15px;

        padding: 17px 0;
    }


    .why-benefit-icon {
        width: 46px;

        height: 46px;
    }


    .why-benefit-content h3 {
        font-size: 16px;
    }


    .why-benefit-content p {
        font-size: 14px;
    }


    .why-cta {
        width: min(100% - 48px, 1000px);

        padding: 28px 40px;

        grid-template-columns: 85px minmax(0, 1fr) auto;

        gap: 22px;
    }


    .why-cta-icon {
        width: 76px;

        height: 76px;
    }


    .why-cta-icon img {
        width: 48px;

        height: 48px;
    }


    .why-cta-content h2 {
        font-size: 25px;
    }


    .why-cta-content p {
        font-size: 15px;
    }


    .why-cta-button {
        min-width: 240px;

        min-height: 58px;

        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
   BELOW 768px
========================================================= */

@media (max-width: 767px) {

    .why-section {
        padding: 65px 0 70px;
    }


    /* Main container */

    .why-container {
        width: min(100% - 40px, 560px);

        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* Content */

    .why-eyebrow {
        font-size: 12px;

        margin-bottom: 22px;
    }


    .why-title {
        margin-bottom: 20px;

        font-size: clamp(36px, 10vw, 46px);

        line-height: 1.12;
    }


    .why-description {
        margin-bottom: 28px;

        font-size: 16px;

        line-height: 1.65;
    }


    /* Approach */

    .why-approach-list {
        gap: 14px;
    }


    .why-approach-item {
        grid-template-columns: 68px minmax(0, 1fr);

        column-gap: 16px;

        min-height: 82px;
    }


    .why-approach-icon {
        width: 62px;

        height: 62px;
    }


    .why-approach-icon img {
        width: 42px;

        height: 42px;
    }


    .why-approach-item:not(:last-child)
    .why-approach-icon::after {
        height: 35px;
    }


    .why-approach-content {
        padding-left: 0;
    }


    .why-approach-content::before {
        display: none;
    }


    .why-approach-content h3 {
        font-size: 17px;

        margin-bottom: 4px;
    }


    .why-approach-content p {
        font-size: 14px;

        line-height: 1.5;
    }


    /* Right card */

    .why-business-card {
        width: 100%;

        padding: 26px 22px;

        border-radius: 17px;
    }


    .why-card-header {
        gap: 17px;

        margin-bottom: 22px;
    }


    .why-card-main-icon {
        width: 64px;

        height: 64px;
    }


    .why-card-main-icon img {
        width: 42px;

        height: 42px;
    }


    .why-card-heading h2 {
        font-size: 21px;
    }


    .why-card-line {
        width: 42px;

        margin-top: 10px;
    }


    .why-benefit {
        grid-template-columns: 44px minmax(0, 1fr);

        gap: 13px;

        padding: 16px 0;
    }


    .why-benefit-icon {
        width: 44px;

        height: 44px;
    }


    .why-benefit-icon span {
        font-size: 21px;
    }


    .why-benefit-content h3 {
        font-size: 16px;

        margin-bottom: 4px;
    }


    .why-benefit-content p {
        font-size: 13px;

        line-height: 1.5;
    }


    /* CTA */

    .why-cta {
        width: min(100% - 40px, 560px);

        margin-top: 45px;

        padding: 28px 24px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        border-radius: 16px;
    }


    .why-cta-icon {
        width: 68px;

        height: 68px;
    }


    .why-cta-icon img {
        width: 43px;

        height: 43px;
    }


    .why-cta-content h2 {
        font-size: 23px;

        line-height: 1.3;
    }


    .why-cta-content p {
        font-size: 14px;

        line-height: 1.6;
    }


    .why-cta-button {
        width: 100%;

        min-width: 0;

        min-height: 56px;

        font-size: 15px;

        gap: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   BELOW 480px
========================================================= */

@media (max-width: 480px) {

    .why-section {
        padding-top: 55px;

        padding-bottom: 60px;
    }


    .why-container {
        width: min(100% - 30px, 560px);

        gap: 38px;
    }


    .why-title {
        font-size: clamp(34px, 10vw, 42px);
    }


    .why-description {
        font-size: 15px;
    }


    .why-approach-item {
        grid-template-columns: 58px minmax(0, 1fr);

        gap: 13px;
    }


    .why-approach-icon {
        width: 54px;

        height: 54px;
    }


    .why-approach-icon img {
        width: 37px;

        height: 37px;
    }


    .why-approach-content h3 {
        font-size: 16px;
    }


    .why-approach-content p {
        font-size: 13px;
    }


    .why-business-card {
        padding: 22px 18px;
    }


    .why-card-header {
        gap: 14px;
    }


    .why-card-main-icon {
        width: 56px;

        height: 56px;
    }


    .why-card-main-icon img {
        width: 37px;

        height: 37px;
    }


    .why-card-heading h2 {
        font-size: 19px;
    }


    .why-benefit {
        grid-template-columns: 40px minmax(0, 1fr);

        gap: 11px;
    }


    .why-benefit-icon {
        width: 40px;

        height: 40px;
    }


    .why-benefit-content h3 {
        font-size: 15px;
    }


    .why-benefit-content p {
        font-size: 12.5px;
    }


    .why-cta {
        width: min(100% - 30px, 560px);

        padding: 24px 20px;
    }


    .why-cta-content h2 {
        font-size: 21px;
    }


    .why-cta-content p {
        font-size: 13px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .why-cta-button {
        transition: none;
    }

}