
 .hero-container {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 } 

 .hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(1, 119, 191, 0.12));
    padding: 80px 8%;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    left: auto;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 119, 191, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

 /* LEFT SIDE */

 .hero-content {
     flex: 1;
 }

 .hero-tag {
     display: inline-block;

     color: #2B7CFF;    /* #0177BF; */ 
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 20px;
     letter-spacing: 1px;
 }

 .hero-content h1 {
     /* font-size: 68px;
            line-height: 1.1;
            color: #fff;
            font-weight: 800; */
     margin-bottom: 25px;
 }


 .outline-text {

     font-size: 90px;
     font-weight: 900;
     color: transparent;
     -webkit-text-stroke: 2px #000;
 }

 .outline-orange {
     font-size: 90px;
     font-weight: 900;
     color: transparent;
     -webkit-text-stroke: 2px #c5141b;
 }

 .filled-black {
     font-size: 72px;
     font-weight: 900;
     color: #000;
 }

 .filled-orange {
     font-size: 72px;
     font-weight: 900;
     color: #2B7CFF;  /* #0177BF;*/

 }

 .hero-desc {
     
         max-width: 700px; /* 500px */
     color: #666;
     font-size: 18px;
     margin-top: 20px;
 }



 .hero-btn {
     display: inline-block;
     padding: 16px 34px;
    /* background: var(--blue);
    color: #fff; */
     background: linear-gradient(
        135deg,
        #1b6fff,
        #3b89ff
    ); 
     box-shadow:
        0 0 20px rgba(59,137,255,.55);
     color: white;
     text-decoration: none;
     border-radius: 30px;
     font-weight: 600;
     transition: 0.3s ease; 
      
 }

 .hero-btn:hover {
       transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(59, 137, 255, 0.7);
        filter: brightness(1.1); 
 }
 

 /* RIGHT SIDE */

 .hero-image {
     flex: 1;
     display: flex;
     justify-content: center;


     opacity: 0;
     transform: translate3d(0, 80px, 0) scale(0.96);

     animation: heroFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
     animation-delay: 0.3s;
 }

 .hero-image img {
     width: 100%;
     max-width: 950px;
     object-fit: contain;
 }

 @keyframes heroFadeUp {
     0% {
         opacity: 0;
         transform: translate3d(0, 80px, 0) scale(0.96);
     }

     100% {
         opacity: 1;
         transform: translate3d(0, 0, 0) scale(1);
     }
 }

 /* ================= RESPONSIVE ================= */

 @media (max-width: 1400px) {

     .outline-text,
     .outline-orange {
         font-size: 80px;
     }

     .filled-black,
     .filled-orange {
         font-size: 64px;
     }

     .hero-image img {
         max-width: 800px;
     }
 }

 @media (max-width: 1200px) {

    .hero {
        padding: 80px 6%;
    }

     .outline-text,
     .outline-orange {
         font-size: 70px;
     }

     .filled-black,
     .filled-orange {
         font-size: 58px;
     }

     .hero-image img {
         max-width: 650px;
     }

     .hero-container {
         gap: 40px;
     }

      .hero-tag {
        font-size: 18px;
    }

    .hero-desc {
        font-size: 16px;
        max-width: 100%;
    }

 }

 @media (max-width: 992px) {

     .hero {
        padding: 70px 5%;
        min-height: auto;
    }

     .hero-container {
         flex-direction: column;
        /* text-align: center;*/
        gap: 30px;
        text-align: left;
     }


    .hero-content {
        width: 100%;
    }

    /*
     .hero-content h1 {
         font-size: 52px;
     } */

     .outline-text,
     .outline-orange {
         font-size: 60px;
     }

     .filled-black,
     .filled-orange {
         font-size: 52px;
     }

.hero-tag {
        font-size: 16px;
        margin-bottom: 15px;
    }

     .hero-image {
         order: 1;
     }

     .hero-desc {
         max-width: 100%;
       /*  margin: 20px auto; */

        font-size: 16px;
        margin-top: 15px;
     }

/*
     .hero-content p {
         margin: auto auto 35px;
     } */

     .hero-image img {
         max-width: 500px;
           width: 100%;
     }
 }

 @media (max-width: 768px) {

    .hero {
        padding: 60px 5%;
    }

    .hero-container {
        gap: 25px;
    }

    .outline-text,
    .outline-orange {
        font-size: 55px;
    }

    .filled-black,
    .filled-orange {
        font-size: 44px;
    }

    .hero-tag {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 15px;
        margin-top: 12px;
    }

    .hero-btn {
        padding: 13px 26px;
        font-size: 14px;
    }

    .outline-text {
        -webkit-text-stroke: 1.5px #000;
    }

    .outline-orange {
        -webkit-text-stroke: 1.5px #c5141b;
    }
}

@media (max-width: 576px) {

    .hero {
        padding: 50px 4%;
    }

    .hero-container {
        gap: 20px;
    }

    .outline-text,
    .outline-orange {
        font-size: 44px;
    }

    .filled-black,
    .filled-orange {
        font-size: 36px;
    }

    .hero-tag {
        font-size: 13px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .hero-desc {
        font-size: 14px;
        margin-top: 10px;
        line-height: 1.6;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 15px;
    }

    .outline-text {
        -webkit-text-stroke: 1.5px #000;
    }

    .outline-orange {
        -webkit-text-stroke: 1.5px #c5141b;
    }
}

/* Small phones (max 430px) */
@media (max-width: 430px) {

    .hero {
        padding: 40px 4%;
    }

    .outline-text,
    .outline-orange {
        font-size: 36px;
    }

    .filled-black,
    .filled-orange {
        font-size: 30px;
    }

    .hero-tag {
        font-size: 12px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-btn {
        padding: 11px 22px;
        font-size: 13px;
        border-radius: 25px;
    }

    .outline-text {
        -webkit-text-stroke: 1px #000;
    }

    .outline-orange {
        -webkit-text-stroke: 1px #c5141b;
    }
}

/* Very small phones (max 360px) */
@media (max-width: 360px) {

    .hero {
        padding: 35px 3%;
    }

    .outline-text,
    .outline-orange {
        font-size: 30px;
    }

    .filled-black,
    .filled-orange {
        font-size: 26px;
    }

    .hero-tag {
        font-size: 11px;
    }

    .hero-desc {
        font-size: 12px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .outline-text {
        -webkit-text-stroke: 1px #000;
    }

    .outline-orange {
        -webkit-text-stroke: 1px #c5141b;
    }
}


/* ================= WHAT SECTION ================= */
.what-section {
    padding: 90px 0;
    background: #FAFAFA;
}

.section-badge {
     display: inline-block;
     color: #2B7CFF;   
     font-size: 20px;
     font-weight: 700;
     letter-spacing: 1px;
     margin-bottom: 20px; 
 }
 .section-title{

     /* font-size: 2.6rem;
    font-weight: 700; */
    line-height: 1.4;
    margin-bottom: 12px;
    font-size: 55px;
    font-weight: 900;
 }

 .text-black {
  color: #1a1a1a;
}
.text-red {
    color: transparent;
    -webkit-text-stroke: 2px #c5141b;
}
.text-blue {
    color: #2B7CFF ;
}
/* == process-content-heading  animation == */
.infosection-content-heading {
    opacity: 0;
   /* transform: translate3d(-80px, 0, 0) scale(0.95);*/
   transform: translate3d(-120px, 0, 0) scale(0.9);
    filter: blur(10px);
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.infosection-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.what-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6; /* 1.8 */
    margin-bottom: 16px;
}

.what-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.what-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.what-highlight-item i {
    color: #2B7CFF; 
    font-size: 1rem;
    flex-shrink: 0;
}

/* COMPARE TABLE */
.what-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
}

/*===== animation  =====*/
/*
.info-fade-up {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.info-fade-up.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
} */

.info-fade-up {
    opacity: 0;
    transform: translate3d(0, 80px, 0) scale(0.96);
}

.info-fade-up.active {
    animation: infoFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/*
@keyframes infoFadeUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 80px, 0) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
} */
@keyframes infoFadeUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.what-box strong {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.compare-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.88rem;
    color: #555;
    align-items: center;
}

.compare-row2 {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.88rem;
    color: #555;
    align-items: center;
}

.compare-row3 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.88rem;
    color: #555;
    align-items: center;
}

.compare-row:last-child { border-bottom: none; }

.compare-row.header {
    font-size: 0.85rem;
    color: #999;
    padding-bottom: 8px;
}

.compare-col { padding: 0 8px; }
.compare-col:first-child { padding-left: 0; }



/* ================= FACTORS SECTION ================= */

.factors-section {
    padding: 90px 0;
    background: #FAFAFA;
}

 .section-factors-title{

    line-height: 1.4;
    margin-bottom: 12px;
    font-size: 55px;
    font-weight: 900;
 }

/* == process-content-heading  animation == */
.key-content-heading {
    opacity: 0;
   /* transform: translate3d(-80px, 0, 0) scale(0.95);*/
   transform: translate3d(120px, 0, 0) scale(0.9);
    filter: blur(10px);
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.key-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

 .section-desc{
    color: #666;
    font-size: 1.05rem;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: 1.4;
 }

.factors-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.factor-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
}

.factor-item.active {
    border-color: #2B7CFF;
    box-shadow: 0 4px 20px rgba(1, 119, 191, 0.08);
}

.factor-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
}

.factor-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(1, 119, 191, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B7CFF;
    font-size: 1rem;
    transition: 0.3s;
}

.factor-item.active .factor-icon {
    background: #2B7CFF;
    color: #fff;
}

.factor-header strong {
    font-size: 0.97rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.factor-arrow {
    font-size: 0.9rem;
    color: #aaa;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.factor-item.active .factor-arrow {
    transform: rotate(180deg);
    color: #2B7CFF;
}

.factor-body {
    display: none;
    padding: 0 20px 20px 74px;
}

.factor-item.active .factor-body {
    display: block;
}

.factor-body p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 14px;
}

.factor-body ul {
    padding-left: 18px;
    margin: 0;
}

.factor-body ul li {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
}

/* SUMMARY BOX */
.factors-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
}

.factors-summary div  {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1rem;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #444;
}

.summary-list li i {
    color: #2B7CFF;
    font-size: 1rem;
    flex-shrink: 0;
}

.summary-cta {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.summary-cta p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 12px;
}

.key-btn {
    /* display: inline-block; */
        display: block;
    width: fit-content;
    margin: 0 auto;
     padding: 16px 34px;
     background: linear-gradient(
        135deg,
        #1b6fff,
        #3b89ff
    ); 
    
     box-shadow:
        0 0 20px rgba(59,137,255,.55);
     color: white;
     text-decoration: none;
     border-radius: 30px;
     font-weight: 600;
     transition: 0.3s ease; 
      
 }

  .key-btn:hover {
       transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(59, 137, 255, 0.7);
        filter: brightness(1.1); 
 }
 

 /* ================= SHOW MORE / SHOW LESS ================= */

.factor-item.factor-hidden {
    display: none;
}

.factors-toggle {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#toggleFactorsBtn {
    display: none;
    min-width: 180px;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #1b6fff, #3b89ff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(43,124,255,.30);
}

#toggleFactorsBtn:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(43,124,255,.45);
}

#toggleFactorsBtn:focus{
    outline:none;
}


/* ================= PROCESS TIMELINE ================= */
.process-section {
    padding: 90px 0;
    background: #FAFAFA;
}
.process-section-title {
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 70px;
    font-weight: 900;
}
.process-text-red {
    color: transparent;
    -webkit-text-stroke: 2px #c5141b !important;
}
.process-text-blue {
    color: #2B7CFF !important;
}
/* == process-content-heading  animation == */
.process-content-heading {
    opacity: 0;
    transform: translate3d(0, 70px, 0) scale(0.95);
    filter: blur(10px);
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}
.process-section-desc {
    color: #666;
    font-size: 1.05rem;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: 1.4;
}
.timeline-wrapper {
    position: relative;
    padding: 40px 0 20px;
}
.timeline-line {
    position: absolute;
    top: 62px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right, #2B7CFF , rgba(1, 119, 191, 0.15));
    z-index: 0;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 4px 8px;
}
.timeline-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #2B7CFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
    flex-shrink: 0;
}
.timeline-dot span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2B7CFF;
    transition: 0.3s;
}
.timeline-step:hover .timeline-dot,
.timeline-dot.active {
    background: #2B7CFF;
    box-shadow: 0 0 0 6px rgba(1, 119, 191, 0.15);
}
.timeline-step:hover .timeline-dot span,
.timeline-dot.active span {
    color: #fff;
}
.timeline-content strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.timeline-content p {
    margin-top: 4px !important;
    font-size: 0.82rem;
    color: #888;
    line-height: 1.55;
    margin: 0;
}
/* ================= PROCESS TIMELINE ANIMATION ================= */
/* Initial hidden state */
.timeline-step {
    opacity: 0;
    transform: scale(0.6);
    transition: none;
}
/* Bouncy pop state */
.timeline-step.pop-in {
    animation: timelinePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes timelinePop {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.08);
    }
    80% {
        transform: scale(0.96);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* Dot pulse after pop */
.timeline-step.pop-in .timeline-dot {
    animation: dotPulse 0.4s ease forwards;
    animation-delay: var(--dot-delay, 0s);
}
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0px rgba(1, 119, 191, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(1, 119, 191, 0.15);
    }
    100% {
        box-shadow: 0 0 0 6px rgba(1, 119, 191, 0.0);
    }
}
/* Line draw animation */
.timeline-line {
    width: 0%;
    transition: width 1s ease;
}
.timeline-line.line-drawn {
    width: calc(100% - 16%);
}
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .timeline-step {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .timeline-line {
        width: calc(100% - 16%);
        transition: none;
    }
}
/* ================= PROCESS TIMELINE RESPONSIVE ================= */
/* --- Tablet Landscape (max 991px) --- */
@media (max-width: 991px) {
    .process-section {
        padding: 70px 0;
    }
    .process-section-title {
        font-size: 48px;
    }
    .process-section-desc {
        font-size: 1rem;
        margin: 0 auto 40px;
    }
    .timeline-line {
        display: none;
    }
    .timeline-dot {
        width: 46px;
        height: 46px;
    }
    .timeline-dot span {
        font-size: 0.8rem;
    }
    .timeline-content strong {
        font-size: 0.9rem;
    }
    .timeline-content p {
        font-size: 0.78rem;
    }
}
/* --- Tablet Portrait (max 767px) --- */
@media (max-width: 767px) {
    .process-section {
        padding: 60px 0;
    }
    .process-section-title {
        font-size: 36px;
        line-height: 1.3;
    }
    .process-section-desc {
        font-size: 0.95rem;
        margin: 0 auto 32px;
    }
    /* Hide horizontal line — steps go into 2-column grid */
    .timeline-line {
        display: none;
    }
    .timeline-wrapper {
        padding: 20px 0;
    }
    .timeline-step {
        padding: 0 12px 30px;
    }
    .timeline-dot {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
    .timeline-dot span {
        font-size: 0.78rem;
    }
    .timeline-content strong {
        font-size: 0.88rem;
    }
    .timeline-content p {
        font-size: 0.76rem;
    }
}
/* --- Mobile (max 575px) --- */
@media (max-width: 575px) {
    .process-section {
        padding: 50px 0;
    }
    .process-section-title {
        font-size: 28px;
        line-height: 1.25;
    }
    .process-section-desc {
        font-size: 0.9rem;
        margin: 0 auto 28px;
    }
    .timeline-line {
        display: none;
    }
    .timeline-wrapper {
        padding: 16px 0;
    }
    .timeline-step {
        padding: 0 8px 24px;
    }
    .timeline-dot {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        border-width: 2px;
    }
    .timeline-dot span {
        font-size: 0.75rem;
    }
    .timeline-step:hover .timeline-dot,
    .timeline-dot.active {
        box-shadow: 0 0 0 4px rgba(1, 119, 191, 0.15);
    }
    .timeline-content strong {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }
    .timeline-content p {
        font-size: 0.72rem;
        line-height: 1.5;
    }
}
/* --- Small Mobile (max 375px) --- */
@media (max-width: 375px) {
    .process-section {
        padding: 40px 0;
    }
    .process-section-title {
        font-size: 22px;
    }
    .process-section-desc {
        font-size: 0.85rem;
        margin: 0 auto 22px;
    }
    .timeline-step {
        padding: 0 6px 20px;
    }
    .timeline-dot {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }
    .timeline-dot span {
        font-size: 0.7rem;
    }
    .timeline-content strong {
        font-size: 0.78rem;
    }
    .timeline-content p {
        font-size: 0.68rem;
        line-height: 1.45;
    }
}
/* --- Extra Small (max 320px) --- */
@media (max-width: 320px) {
    .process-section {
        padding: 30px 0;
    }
    .process-section-title {
        font-size: 18px;
        line-height: 1.2;
    }
    .process-section-desc {
        font-size: 0.78rem;
        margin: 0 auto 18px;
        line-height: 1.4;
    }
    .timeline-wrapper {
        padding: 10px 0;
    }
    .timeline-step {
        padding: 0 4px 16px;
    }
    .timeline-dot {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
        border-width: 2px;
    }
    .timeline-dot span {
        font-size: 0.65rem;
    }
    .timeline-content strong {
        font-size: 0.72rem;
        margin-bottom: 2px;
    }
    .timeline-content p {
        font-size: 0.62rem;
        line-height: 1.4;
    }
}
/* --- Accessibility: Reduce Motion --- */
@media (prefers-reduced-motion: reduce) {
    .timeline-dot {
        transition: none;
    }
    .timeline-dot span {
        transition: none;
    }
}



/* ================= APPLE FAQ SECTION ================= */
.apple-faq-section {
    background: #FAFAFA; 
    padding: 80px 7% 120px 7%;
}
.apple-faq-top {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 80px;
}
.apple-faq-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2B7CFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px
}
.apple-faq-title {
    font-size: 80px;
    line-height: 0.95;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 35px;
}
.faq-text-red {
    color: transparent;
    -webkit-text-stroke: 2px var(--red);
}
.faq-text-blue {
    color: #2B7CFF !important;
}
.faq-left,
.faq-right {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-left {
    transform: translateX(-80px);
}
.faq-right {
    transform: translateX(80px);
}
.faq-left.active,
.faq-right.active {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}
/* ================= DESCRIPTION ================= */
.apple-faq-description {
    font-size: 20px;
    line-height: 1.2;
    color: #666;
    max-width: 760px;
    margin: auto;
}
.apple-faq-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}
.apple-faq-item {
    border-top: 1px solid #d2d2d7;
    padding: 35px 0;
    transition: 0.35s ease;
}
.apple-faq-item:last-child {
    border-bottom: 1px solid #d2d2d7;
}
.apple-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    cursor: pointer;
}
.faq-number {
    min-width: 55px;
    color: #2c2c2e;
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
}
.apple-faq-question strong {
    flex: 1;
    color: #1d1d1f;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -1px;
}
.faq-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #d2d2d7 !important;
    background: #fff !important;
    color: #1d1d1f !important;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.35s ease;
}
.active-faq .faq-icon {
    background: #2B7CFF !important;
    border-color: #2B7CFF !important;
    color: #fff !important;
    transform: rotate(45deg);
}
.apple-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 85px;
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        margin-top 0.35s ease;
}
.active-faq .apple-faq-answer {
    max-height: 500px; 
    opacity: 1;
    margin-top: 20px;  
}
.apple-faq-answer p {
    max-width: 850px;
    color: #6e6e73;
    font-size: 19px;
    line-height: 1.5;
}
.apple-faq-item:hover {
    padding-left: 10px;
}
/* ================= RESPONSIVE ================= */
@media(max-width:1200px) {
    .apple-faq-title {
        font-size: 68px;
    }
    .apple-faq-question strong {
        font-size: 30px;
    }
}
@media (max-width: 992px) {
    .apple-faq-section {
        padding: 90px 5%;
    }
    .apple-faq-title {
        font-size: 60px;
    }
    .apple-faq-question strong {
        font-size: 26px;
    }
    .apple-faq-answer {
        margin-left: 70px;
    }
}
@media (max-width: 768px) {
    .apple-faq-section {
        padding: 80px 5%;
    }
    .apple-faq-top {
        margin-bottom: 60px;
    }
    .apple-faq-tag {
        font-size: 16px;
    }
    .apple-faq-title {
        font-size: 48px;
        line-height: 1.05;
    }
    .apple-faq-description {
        font-size: 18px;
    }
    .apple-faq-question {
        gap: 20px;
    }
    .apple-faq-question strong {
        font-size: 22px;
        line-height: 1.4;
    }
    .faq-number {
        min-width: 40px;
        font-size: 16px;
    }
    .faq-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    .apple-faq-answer {
        margin-left: 60px;
    }
    .apple-faq-answer p {
        font-size: 17px;
    }
    .apple-faq-item:hover {
        padding-left: 0;
    }
}
@media (max-width: 576px) {
    .apple-faq-section {
        padding: 70px 20px;
    }
    .apple-faq-top {
        margin-bottom: 50px;
    }
    .apple-faq-title {
        font-size: 38px;
        line-height: 1.1;
    }
    .apple-faq-description {
        font-size: 16px;
    }
    .apple-faq-item {
        padding: 25px 0;
    }
    .apple-faq-question {
        gap: 15px;
    }
    .faq-number {
        min-width: 32px;
        font-size: 15px;
        margin-top: 2px;
    }
    .apple-faq-question strong {
        font-size: 19px;
        line-height: 1.5;
    }
    .faq-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .apple-faq-answer {
        margin-left: 47px;
    }
    .apple-faq-answer p {
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width: 480px) {
    .apple-faq-title {
        font-size: 32px;
    }
    .apple-faq-tag {
        font-size: 14px;
    }
    .apple-faq-description {
        font-size: 15px;
    }
    .apple-faq-question strong {
        font-size: 18px;
    }
    .faq-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .apple-faq-answer {
        margin-left: 0;
        margin-top: 15px;
    }
    .active-faq .apple-faq-answer {
        margin-top: 15px;
    }
    .apple-faq-answer p {
        font-size: 14px;
    }
}
@media (max-width: 360px) {
    .apple-faq-section {
        padding: 60px 16px;
    }
    .apple-faq-title {
        font-size: 28px;
        line-height: 1.15;
    }
    .apple-faq-tag {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    .apple-faq-description {
        font-size: 14px;
    }
    .apple-faq-question {
        gap: 10px;
    }
    .faq-number {
        min-width: 26px;
        font-size: 13px;
    }
    .apple-faq-question strong {
        font-size: 16px;
        line-height: 1.5;
    }
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .apple-faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }
}





/* =====================================================
   FINAL CTA SECTION
===================================================== */

.final-cta-section{
    padding:50px 0;
    background:#FAFAFA;

}

.final-cta-box{
    position:relative;
    overflow:hidden;
    padding:70px 40px;
    border-radius:30px;
    background:
    linear-gradient(
        135deg,
        #0F172A,
        #1D4ED8
    );
    text-align:center;
    box-shadow:
    0 20px 50px rgba(15,23,42,.18);

}

/* Background Glow */

.final-cta-box::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:
    rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    left:-100px;

}

.final-cta-box::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:
    rgba(43,124,255,.25);
    border-radius:50%;
    bottom:-150px;
    right:-80px;
}

.final-cta-content{
    position:relative;
    z-index:2;

}

/* Tag */

.final-cta-tag{
    display:inline-block;
    color:#FFFFFF;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
    opacity:.9;

}

/* Title */

.final-cta-title{
    color:#FFFFFF;
    display:block;
    font-size:50px;
    line-height:1.2;
    font-weight:900;
    margin-bottom:25px;

}

.final-cta-title span{
    color:#60A5FA;

}

/* Description */


.final-cta-description{
    max-width:850px;
    margin:0 auto 35px;
    color:#E5E7EB;
    font-size:18px;
    line-height:1.7;

}

/* Buttons */


.final-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.cta-primary,
.cta-secondary{
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
}

.cta-primary{
    background:#FFFFFF;
    color:#1D4ED8;

}

.cta-primary:hover{
    transform:translateY(-5px);
    background:#EFF6FF;
    color:#1D4ED8;

}

.cta-secondary{
    border:2px solid rgba(255,255,255,.6);
    color:#FFFFFF;

}

.cta-secondary:hover{
    background:#FFFFFF;
    color:#1D4ED8;
    transform:translateY(-5px);

}

/* =====================================================
   FINAL CTA RESPONSIVE DESIGN
===================================================== */


/* Large Tablets / Small Laptops */
@media (max-width: 992px){

    .final-cta-box{
        padding:60px 35px;
        border-radius:25px;
    }


    .final-cta-title{
        font-size:42px;
    }


    .final-cta-description{
        max-width:700px;
        font-size:17px;
    }


    .cta-primary,
    .cta-secondary{
        padding:14px 30px;
        font-size:15px;
    }


    .final-cta-box::before{
        width:280px;
        height:280px;
    }


    .final-cta-box::after{
        width:240px;
        height:240px;
    }

}



/* Tablets */
@media (max-width: 768px){

    .final-cta-section{
        padding:40px 0;
    }


    .final-cta-box{
        padding:50px 25px;
        border-radius:22px;
    }


    .final-cta-tag{
        font-size:14px;
        margin-bottom:20px;
    }


    .final-cta-title{
        font-size:34px;
        line-height:1.25;
        margin-bottom:20px;
    }


    .final-cta-description{
        font-size:16px;
        line-height:1.6;
        margin-bottom:30px;
    }


    .final-cta-buttons{
        gap:15px;
    }


    .cta-primary,
    .cta-secondary{
        padding:13px 28px;
    }


}



/* Mobile Phones */
@media (max-width: 576px){

    .final-cta-section{
        padding:35px 0;
    }


    .final-cta-box{
        padding:45px 20px;
        border-radius:20px;
    }


    .final-cta-tag{
        font-size:13px;
        letter-spacing:.8px;
    }


    .final-cta-title{
        font-size:28px;
        line-height:1.3;
    }


    .final-cta-description{
        font-size:15px;
        line-height:1.6;
    }


    .final-cta-buttons{
        flex-direction:column;
        align-items:center;
    }


    .cta-primary,
    .cta-secondary{
        width:100%;
        max-width:260px;
        text-align:center;
        padding:13px 20px;
    }


    .final-cta-box::before{
        width:200px;
        height:200px;
        top:-100px;
        left:-80px;
    }


    .final-cta-box::after{
        width:180px;
        height:180px;
        bottom:-90px;
        right:-60px;
    }

}

/* Small Mobile Devices */
@media (max-width: 360px){

    .final-cta-box{
        padding:40px 15px;
    }


    .final-cta-title{
        font-size:25px;
    }


    .final-cta-description{
        font-size:14px;
    }


    .final-cta-tag{
        font-size:12px;
    }


    .cta-primary,
    .cta-secondary{
        max-width:230px;
        font-size:14px;
    }

}


/* =====================================================
   WHY business CHOOSE US 
   Tech Digital Labs
===================================================== */


.why-choose-section{
    padding:50px 0;
    background:#FAFAFA;

}

.why-tag{
    display:inline-block;
    color:#2B7CFF;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px; 
}

.why-title{
   font-size:55px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:25px; 

}
.why-black{
    color:#1a1a1a;

}
.why-outline{
    color:transparent;
    -webkit-text-stroke:2px #ED1B24;
    letter-spacing:1.5px;

}
.why-blue{
    color:#2B7CFF;
}
.why-description{
    max-width:950px;
    margin:auto;
    color: #666;
    font-size:18px;
    line-height:1.6;

}

.why-choose-section .row{
    row-gap:5px;
}

.why-card{

    height:100%;
    padding:40px 30px;
    background:#fff;
    border-radius:20px;
    border:1px solid #E5E7EB;
    box-shadow:
    0 10px 30px rgba(15,23,42,.06);
    position:relative;
    overflow:hidden;
    transition:.35s ease;

}

/* Top Gradient Line */

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(
        90deg,
        #2B7CFF,
        #3B89FF
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s ease;

}

.why-card:hover::before{
    transform:scaleX(1);
}


.why-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(43,124,255,.15);
    border-color:#D6E5FF;


}


.why-card strong{
    display:block;
    color:#1a1a1a;
    font-size:19px;
    font-weight:700;
    line-height:1.5;
    margin-bottom:15px;

}
.why-card p{
    margin:0;
    color:#6B7280;
    color: #777;
    font-size: 0.92rem; 
    line-height:1.6;
}

.why-card{
    opacity:0;
    transform:translateY(40px);
    animation:whyFade .8s ease forwards;


}

.why-card:nth-child(1){
    animation-delay:.1s;

}

.why-card:nth-child(2){
    animation-delay:.2s;

}

.why-card:nth-child(3){
    animation-delay:.3s;

}

.why-card:nth-child(4){
    animation-delay:.4s;

}


.why-card:nth-child(5){
    animation-delay:.5s;

}

.why-card:nth-child(6){
    animation-delay:.6s;

}

@keyframes whyFade{


    from{

        opacity:0;

        transform:translateY(40px);

    }


    to{


        opacity:1;

        transform:translateY(0);

    }


}


/* ============================= */
/* Responsive Small Screens */
/* ============================= */


/* Tablets & Small Laptops */
@media (max-width: 991px){

    .why-title{
        font-size:42px;
    }

    .why-description{
        font-size:16px;
        max-width:750px;
    }

    .why-card{
        padding:35px 25px;
    }

}


/* Tablets & Large Mobile */
@media (max-width: 768px){

    .why-choose-section{
        padding:45px 0;
    }

    .why-tag{
        font-size:14px;
        margin-bottom:20px;
    }

    .why-title{
        font-size:36px;
        line-height:1.2;
    }

    .why-description{
        font-size:15px;
        padding:0 15px;
    }

    .why-card{
        padding:30px 25px;
        border-radius:18px;
    }

    .why-card strong{
        font-size:18px;
    }

}


/* Mobile Phones */
@media (max-width: 576px){

    .why-choose-section{
        padding:35px 0;
    }

    .why-tag{
        font-size:13px;
        letter-spacing:.8px;
        margin-bottom:18px;
    }

    .why-title{
        font-size:30px;
        line-height:1.25;
        margin-bottom:20px;
    }

    .why-outline{
        -webkit-text-stroke:1.5px #ED1B24;
    }

    .why-description{
        font-size:14px;
        line-height:1.6;
        padding:0 10px;
    }

    .why-card{
        padding:25px 20px;
        border-radius:15px;
    }

    .why-card strong{
        font-size:17px;
    }

    .why-card p{
        font-size:14px;
    }

}


/* Extra Small Mobile Devices */
@media (max-width: 375px){

    .why-choose-section{
        padding:30px 0;
    }

    .why-tag{
        font-size:12px;
    }

    .why-title{
        font-size:26px;
    }

    .why-description{
        font-size:13px;
    }

    .why-card{
        padding:22px 18px;
    }

    .why-card strong{
        font-size:16px;
    }

    .why-card p{
        font-size:13px;
    }

}


/* Very Small Screens */
@media (max-width: 320px){

    .why-title{
        font-size:23px;
    }

    .why-tag{
        font-size:11px;
    }

    .why-card{
        padding:20px 15px;
    }

}

/* =====================================================
    PLANS SECTION 
===================================================== */

.plans-section { padding:60px 0; background:#FAFAFA; }
.plans-title{
    font-size:55px;
    line-height:1;
    font-weight:900;
    margin-bottom:50px; }
.plans-filled-black { color:#1a1a1a; }
.plans-outline-orange {
    color:transparent;
    letter-spacing:1.5px;
    -webkit-text-stroke:2px #ED1B24; }
.plans-filled-orange { color:#2B7CFF; }
.plan-card {
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    transition:.3s ease; }
.plan-card:hover { transform:translateY(-10px);}
.plan-card strong { display:block; font-size:26px; font-weight:800; color:#111827; margin-bottom:15px; }
.plan-card > span:not(.badge){  display:block; font-size:32px; font-weight:800; color:#2B7CFF; margin-bottom:20px; }
.plan-card ul { padding:0; list-style:none; margin:25px 0; }
.plan-card ul li { padding:10px 0;  border-bottom:1px solid #eee; color:#555; font-size:16px; }
.plan-card .plan-btn {
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#1b6fff,#3b89ff);
    box-shadow:0 0 20px rgba(59,137,255,.35);
    color:white;
    border:none;
    border-radius:50px;
    padding:12px 35px;
    text-decoration:none;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease; }
.plan-card .plan-btn:hover { transform:translateY(-3px); box-shadow: 0 10px 25px rgba(59,137,255,.7); filter:brightness(1.1); }
.plan-card.popular { border:3px solid #2B7CFF; }
.plan-card .badge {
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#2B7CFF;
    color:#fff;
    padding:8px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;}
@media (max-width:1024px){
    .plans-section { padding:50px 0; }
    .plans-title { font-size:48px; line-height:1.1; margin-bottom:40px; }
    .plans-outline-orange{
        -webkit-text-stroke:1.6px #ED1B24;
        letter-spacing:1px;
    }
    .plan-card { padding:35px 25px; border-radius:18px; }
    .plan-card ul li { font-size:15px; }
    .plan-card .plan-btn{ padding:12px 30px; font-size:15px; } }
@media (max-width:992px){
    .plans-section { padding:45px 0; }
    .plans-title { font-size:44px; }
    .plan-card { padding:30px 20px;}
    .plan-card ul { margin:20px 0; }
    .plan-card ul li { padding:9px 0; font-size:15px; }
    .plan-card .badge { padding:7px 22px; font-size:14px; } }
@media (max-width:768px){
    .plans-section { padding:40px 0; }
    .plans-title{ font-size:36px;line-height:1.15; margin-bottom:35px;}
    .plans-outline-orange{
        -webkit-text-stroke:1.3px #ED1B24;
        letter-spacing:.8px;
    }
    .plan-card { margin-bottom:25px; padding:35px 25px; }
    .plan-card:hover { transform:translateY(-5px); }
    .plan-card ul li{ font-size:15px; }
    .plan-card .plan-btn { padding:12px 28px; }
    .plan-card .badge { top:-14px; } }
@media (max-width:480px){
    .plans-section { padding:35px 0; }
    .plans-title {font-size:30px; line-height:1.2;  margin-bottom:30px; }
    .plans-outline-orange{
        -webkit-text-stroke:1px #ED1B24;
        letter-spacing:.5px; }
    .plan-card { padding:30px 20px; border-radius:16px; }
    .plan-card ul { margin:20px 0; }
    .plan-card ul li { padding:8px 0; font-size:14px; }
    .plan-card .plan-btn { padding:12px 25px; font-size:14px; }
    .plan-card .badge { font-size:13px; padding:7px 20px; } }
@media (max-width:360px){
    .plans-section { padding:30px 0; }
    .plans-title { font-size:26px; }
    .plan-card { padding:25px 15px; }
    .plan-card ul li { font-size:13px; }
    .plan-card .plan-btn { padding:11px 22px; font-size:13px;  }
    .plan-card .badge { font-size:12px; padding:6px 18px; }
}


/* =========================================
   paragraph section
   ========================================= */

.paragraph {
    width: 100%;
    padding: 40px 20px;
    background: #FAFAFA;
    box-sizing: border-box;
}


.paragraph .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.paragraph-title {
    width: 100%;
    margin-bottom: 35px;
    text-align: center;

    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    
}

.paragraph-filled-black {
    color: #1a1a1a;
}

.paragraph-filled-orange {
    color: #2B7CFF;
}

.paragraph-outline-orange {
    color: transparent;
    letter-spacing: 1px;
    -webkit-text-stroke: 1.5px #ED1B24;
}


.paragraph-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.paragraph-content p {
    margin: 0 0 22px;
    color: #666;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.paragraph-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {

    .paragraph {
        padding: 40px 25px;
    }

    .paragraph .container {
        max-width: 900px;
    }

    .paragraph-title {
        font-size: 44px;
        margin-bottom: 32px;
    }

    .paragraph-content {
        max-width: 850px;
    }

    .paragraph-content p {
        font-size: 17px;
        line-height: 1.65;
    }
}

@media (max-width: 768px) {
    .paragraph {
        padding: 35px 20px;
    }

    .paragraph .container {
        max-width: 100%;
    }

    .paragraph-title {
        font-size: 38px;
        line-height: 1.25;
        margin-bottom: 28px;
    }

    .paragraph-outline-orange {
        -webkit-text-stroke: 1.3px #ED1B24;
    }

    .paragraph-content {
        max-width: 100%;
        background:#fff;
        border-radius:20px;
        text-align:center;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .paragraph-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .paragraph {
        padding: 32px 18px;
    }

    .paragraph-title {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .paragraph-outline-orange {
        letter-spacing: 0.7px;
        -webkit-text-stroke: 1.2px #ED1B24;
    }

    .paragraph-content p {
        font-size: 15.5px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .paragraph {
        padding: 30px 15px;
    }

    .paragraph-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .paragraph-outline-orange {
        letter-spacing: 0.5px;
        -webkit-text-stroke: 1px #ED1B24;
    }

    .paragraph-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }

    .paragraph-content p:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 375px) {

    .paragraph {
        padding: 28px 14px;
    }

    .paragraph-title {
        font-size: 27px;
        line-height: 1.3;
        margin-bottom: 22px;
    }

    .paragraph-outline-orange {
        letter-spacing: 0.3px;
        -webkit-text-stroke: 0.9px #ED1B24;
    }

    .paragraph-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 320px) {

    .paragraph {
        padding: 25px 12px;
    }

    .paragraph-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .paragraph-outline-orange {
        letter-spacing: 0;
        -webkit-text-stroke: 0.8px #ED1B24;
    }

    .paragraph-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }
}

/* =========================================
   HARO TYPES SECTION
========================================= */

.challenge-section {
    padding: 80px 0 90px;
    background: #FAFAFA;
    overflow: hidden;
}

/* Header */
.challenge-header {
    max-width: 900px;
    margin: 0 auto 55px;
}

.challenge-tag {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 20px;
    font-weight: 700;
    color: #2B7CFF;
}

.challenge-heading {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0;
}

.challenge-heading span {
    display: inline;
}

.challenge-heading-text-black {
    color: #1a1a1a;
}

.challenge-heading-text-red {
    color: transparent;
    -webkit-text-stroke: 2px #c5141b;
}

.challenge-heading-text-blue {
    color: #2B7CFF;
}


/* =========================================
   CARD GRID
========================================= */

.challenge-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
}


/* Individual Card */
.challenge-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 28px 30px;

    background: #ffffff;
    border: 1px solid rgba(43, 124, 255, 0.14);
    border-radius: 16px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    overflow: hidden;
}


/* Small blue accent on left */
.challenge-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;

    background: #2B7CFF;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform 0.35s ease;
}


/* Icon */
.challenge-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(43, 124, 255, 0.08);
    border: 1px solid rgba(43, 124, 255, 0.16);
    border-radius: 50%;

    transition: 0.35s ease;
}

.challenge-icon i {
    font-size: 24px;
    color: #2B7CFF;
    transition: 0.35s ease;
}


/* Content */
.challenge-content {
    flex: 1;
}

.challenge-item span {
    display: block;
    margin-bottom: 8px;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;

    color: #1a1a1a;
}

.challenge-item p {
    margin: 0;
    padding: 0;

    font-size: 16px;
    line-height: 1.65;

    color: #666;
}


/* =========================================
   HOVER
========================================= */

.challenge-item:hover {
    transform: translateY(-5px);

    border-color: rgba(43, 124, 255, 0.35);

    box-shadow: 0 15px 35px rgba(20, 40, 80, 0.08);
}

.challenge-item:hover::before {
    transform: scaleY(1);
}

.challenge-item:hover .challenge-icon {
    background: #2B7CFF;
    border-color: #2B7CFF;
    transform: scale(1.05);
}

.challenge-item:hover .challenge-icon i {
    color: #ffffff;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1200px) {

    .challenge-section {
        padding: 70px 0 75px;
    }

    .challenge-heading {
        font-size: 52px;
    }

    .challenge-list {
        max-width: 1000px;
    }

    .challenge-item {
        padding: 25px;
    }

    .challenge-item span {
        font-size: 20px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .challenge-section {
        padding: 70px 0 65px;
    }

    .challenge-header {
        margin-bottom: 40px;
    }

    .challenge-heading {
        font-size: 44px;
        line-height: 1.15;
    }

    .challenge-tag {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .challenge-list {
        gap: 18px;
    }

    .challenge-item {
        padding: 22px;
        gap: 15px;
    }

    .challenge-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
    }

    .challenge-icon i {
        font-size: 22px;
    }

    .challenge-item span {
        font-size: 18px;
    }

    .challenge-item p {
        font-size: 15px;
        line-height: 1.6;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .challenge-section {
        padding: 60px 20px 50px;
    }

    .challenge-header {
        margin-bottom: 35px;
    }

    .challenge-heading {
        font-size: 38px;
        line-height: 1.2;
    }

    .challenge-tag {
        font-size: 16px;
    }

    .challenge-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .challenge-item {
        padding: 20px;
    }

    .challenge-item span {
        font-size: 17px;
    }

    .challenge-item p {
        font-size: 15px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 576px) {

    .challenge-section {
        padding: 55px 15px 45px;
    }

    .challenge-heading {
        font-size: 32px;
        line-height: 1.25;
    }

    .challenge-tag {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .challenge-item {
        padding: 18px;
        gap: 13px;
        border-radius: 14px;
    }

    .challenge-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
    }

    .challenge-icon i {
        font-size: 20px;
    }

    .challenge-item span {
        font-size: 16px;
        line-height: 1.4;
    }

    .challenge-item p {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 480px) {

    .challenge-section {
        padding: 45px 12px 40px;
    }

    .challenge-heading {
        font-size: 28px;
    }

    .challenge-item {
        padding: 16px;
    }

    .challenge-item span {
        font-size: 15px;
    }

    .challenge-item p {
        font-size: 13.5px;
    }
}


@media (max-width: 360px) {

    .challenge-section {
        padding: 40px 10px 35px;
    }

    .challenge-heading {
        font-size: 25px;
    }

    .challenge-tag {
        font-size: 13px;
    }

    .challenge-item span {
        font-size: 14px;
    }

    .challenge-item p {
        font-size: 12.5px;
    }
}


@media (max-width: 320px) {

    .challenge-heading {
        font-size: 22px;
    }

    .challenge-item span {
        font-size: 13px;
    }

    .challenge-item p {
        font-size: 12px;
    }
}
