/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 11 2026 | 17:54:14 */
/* ============================================================
   DESIGN TOKENS
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Nunito',sans-serif;
}

body{
    font-family:'Nunito',sans-serif;
    font-size:18px;
    line-height:1.8;
    color:#444;
    overflow-x:hidden;
}

h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
}

h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:20px;
}

h3{
    font-size:32px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:15px;
}

h4{
    font-size:24px;
    line-height:1.4;
    font-weight:700;
    margin-bottom:15px;
}

p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

.hero-section,
.mentor-section,
.about-program,
.journey-section,
.skills-journey,
.comparison-strip{
    padding:40px 5%;
}

.section-header,
.journey-header,
.comparison-header{
    text-align:center;
    max-width:1000px;
    margin:0 auto 60px;
}

.section-header span,
.journey-header span,
.comparison-header span,
.mentor-tag{
    display:inline-block;
    color:var(--red);
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hero-container,
.mentor-container,
.journey-wrapper,
.comparison-wrapper{
    max-width:1400px;
    margin:0 auto;
}

.feature-card,
.journey-card,
.stat-box,
.hero-form-wrapper{
    border-radius:24px;
    transition:all .3s ease;
}

@media(max-width:768px){

    h1{
        font-size:42px;
    }

    h2{
        font-size:34px;
    }

    h3{
        font-size:24px;
    }

    h4{
        font-size:20px;
    }

    p{
        font-size:16px;
    }

    .hero-section,
    .mentor-section,
    .about-program,
    .journey-section,
    .skills-journey,
    .comparison-strip{
        padding:70px 20px;
    }
}

:root {
    --red:  #bf0b30;
    --blue: #002768;

    --text-dark:   #111827;
    --text-mid:    #444444;
    --text-muted:  #666666;
    --text-subtle: #64748b;

    --bg-white:  #ffffff;
    --bg-light:  #f8f9fc;

    --border-light: rgba(0, 39, 104, 0.08);
    --border-mid:   rgba(0, 39, 104, 0.12);

    --shadow-sm: 0 10px 30px rgba(0, 39, 104, 0.25);
    --shadow-md: 0 20px 40px rgba(0, 39, 104, 0.15);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);

    --radius-sm:  10px;
    --radius-md:  14px;
    --radius-lg:  18px;
    --radius-xl:  24px;
    --radius-2xl: 30px;
    --radius-pill: 50px;

    --transition: 0.3s ease;
    --transition-slow: 0.4s ease;
}

/* ============================================================
   MARQUEE SECTION
   ============================================================ */

.marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
    background: var(--bg-white);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    margin-right: 20px;
    padding: 12px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.highlight-item:hover {
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-color: var(--red);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-sm);
}

.highlight-item .icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 11, 48, 0.08);
    color: var(--red);
    border-radius: var(--radius-sm);
    font-size: 18px;
    transition: all var(--transition);
}

.highlight-item:hover .icon {
    background: #fff;
    color: var(--red);
}

.highlight-item .label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
    transition: all var(--transition);
}

.highlight-item .value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    margin-top: 2px;
    transition: all var(--transition);
}

.highlight-item:hover .label,
.highlight-item:hover .value {
    color: #fff;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 39, 104, 0.92), rgba(0, 39, 104, 0.80)),
        url("https://lightblue-kudu-431142.hostingersite.com/wp-content/uploads/2026/06/hero-founders-Cc7xMTYY.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

/* — Left column — */

.hero-content {
    color: #fff;
}

.application-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fff;
    border-radius: var(--radius-pill);
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 30px;
}

.application-badge::before {
    content: "✦";
    color: var(--red);
}

.hero-content h1 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.founder-text {
    color: #fff;
    position: relative;
}

.founder-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 6px;
    background: var(--red);
    border-radius: 20px;
}

.hero-content h2 {
    font-size: 26px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
}

/* — Buttons — */

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #9b0927;
    color: #fff;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #fff;
    color: var(--blue);
    text-decoration: none;
    padding: 16px 35px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #f3f4f6;
}

/* — Stats grid — */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hero-stats .stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.hero-stats .stat-card h3 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 5px;
}

.hero-stats .stat-card span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

/* — Right column: form — */

.hero-form-wrapper {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.20);
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    margin: 0;
}

.hero-form-wrapper input,
.hero-form-wrapper textarea,
.hero-form-wrapper select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.hero-form-wrapper input[type="submit"],
.hero-form-wrapper button {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.hero-form-wrapper input[type="submit"]:hover {
    background: var(--blue);
}

/* — Hero responsive — */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: auto;
    }

    .hero-content h1 { font-size: 56px; }
    .hero-content h2 { font-size: 24px; }

    .hero-form-wrapper {
        max-width: 700px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        padding: 80px 20px;
    }

    .hero-content h1 { font-size: 42px; }
    .hero-content h2 { font-size: 20px; }
    .hero-content p  { font-size: 16px; }

    .application-badge {
        font-size: 13px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats .stat-card {
        text-align: center;
    }

    .hero-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-content h1 { font-size: 36px; }
}

/* ============================================================
   MENTOR / ABOUT SECTION
   ============================================================ */

.mentor-section {
    padding: 100px 5%;
    background: var(--bg-white);
}

.mentor-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 70px;
    align-items: center;
}

.mentor-image {
    position: relative;
}

.mentor-image::before {
    content: "";
    position: absolute;
    inset: -15px;
    border: 3px solid var(--red);
    border-radius: 30px;
    z-index: 0;
}

.mentor-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
}

.mentor-tag {
    display: block;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.mentor-content h2 {
    font-size: 64px;
    line-height: 1.1;
    color: var(--blue);
    margin-bottom: 15px;
}

.mentor-role {
    color: var(--red);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.mentor-content p {
    font-size: 22px;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.mentor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.stat-box h3 {
    font-size: 36px;
    color: var(--blue);
    margin-bottom: 8px;
}

.stat-box span {
    font-size: 14px;
    color: var(--text-muted);
}

.mentor-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.mentor-btn:hover {
    transform: translateY(-3px);
}

/* — Mentor responsive — */

@media (max-width: 1024px) {
    .mentor-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mentor-image {
        max-width: 550px;
        margin: auto;
    }

    .mentor-content {
        text-align: center;
    }

    .mentor-content h2 { font-size: 48px; }
}

@media (max-width: 767px) {
    .mentor-section {
        padding: 70px 20px;
    }

    .mentor-content h2 { font-size: 38px; }
    .mentor-role       { font-size: 18px; }

    .mentor-content p {
        font-size: 17px;
        line-height: 1.8;
    }

    .mentor-stats {
        grid-template-columns: 1fr;
    }

    .stat-box h3 { font-size: 28px; }
}

/* ============================================================
   ABOUT / PROGRAM FEATURES SECTION
   ============================================================ */

.about-program {
    padding: 40px 5%;
    background: var(--bg-white);
}

.section-header {
    max-width: 1000px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 25px;
}

.section-header p {
    font-size: 20px;
    line-height: 1.9;
    color: #555;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    padding: 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-slow);
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--red), var(--blue));
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: rgba(191, 11, 48, 0.08);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 20px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-muted);
}

.feature-card:hover {
    background: linear-gradient(135deg, #002768, #001b4d);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #fff;
}

.feature-card:hover .feature-icon {
    background: #fff;
}

/* — About program responsive — */

@media (max-width: 991px) {
    .about-program {
        padding: 80px 5%;
    }

    .section-header h2 { font-size: 42px; }
    .section-header p  { font-size: 18px; }
    .feature-card h3   { font-size: 24px; }
}

@media (max-width: 767px) {
    .about-program {
        padding: 60px 20px;
    }

    .section-tag { font-size: 12px; letter-spacing: 3px; }

    .section-header h2 { font-size: 32px; }
    .section-header p  { font-size: 16px; line-height: 1.8; }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3 { font-size: 22px; }
    .feature-card p  { font-size: 15px; }
}

/* ============================================================
   JOURNEY / TIMELINE CARDS SECTION
   ============================================================ */

.journey-section {
    padding: 40px 5%;
    background: var(--bg-light);

}

.journey-section .journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-section .journey-header span {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.journey-section .journey-header h2 {
    font-size: 48px;
    color: var(--blue);
    margin-top: 10px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.journey-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 35px;
    min-height: 100px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--red), var(--blue));
}

.journey-card .month {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 72px;
    font-weight: 800;
    color: rgba(0, 39, 104, 0.08);
}

.journey-card h4 {
    color: var(--red);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.journey-card h3 {
    font-size: 24px;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
}

.journey-card:hover {
    background: linear-gradient(135deg, #002768, #001d50);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.journey-card:hover h3,
.journey-card:hover h4 {
    color: #fff;
}

.journey-card:hover .month {
    color: rgba(255, 255, 255, 0.12);
}

.final-card {
    background: linear-gradient(135deg, var(--red), #d1143f);
}

.final-card h3,
.final-card h4 {
    color: #fff;
}

.final-card .month {
    color: rgba(255, 255, 255, 0.15);
}

/* — Journey cards responsive — */

@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-section .journey-header h2 { font-size: 36px; }
}

/* ============================================================
   SKILLS / VERTICAL TIMELINE SECTION
   ============================================================ */

.skills-journey {
    padding: 100px 5%;
    background: var(--bg-white);
}

.journey-wrapper {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}

.journey-image {
    position: sticky;
    top: 100px;
}

.journey-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

/* — Skills header — */

.skills-journey .journey-header {
    margin-bottom: 40px;
}

.skills-journey .journey-header span {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.skills-journey .journey-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--blue);
    margin: 15px 0;
}

.skills-journey .journey-header p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 700px;
}

/* — Vertical timeline — */

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--red), var(--blue));
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: timeline-fade-up 0.6s ease forwards;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }

@keyframes timeline-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
    animation: icon-pulse 2s infinite;
}

@keyframes icon-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(191, 11, 48, 0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(191, 11, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(191, 11, 48, 0); }
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    transition: var(--transition);
}

.timeline-content {
    padding-top: 4px;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 6px;
    transition: var(--transition);
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.timeline-item:hover .timeline-content h3 {
    color: var(--red);
}

/* — Skills journey responsive — */

@media (max-width: 1024px) {
    .journey-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journey-image {
        position: relative;
        top: auto;
        max-width: 650px;
        margin: auto;
    }

    .journey-content {
        max-width: 800px;
        margin: auto;
    }

    .skills-journey .journey-header {
        text-align: center;
    }

    .skills-journey .journey-header h2 { font-size: 40px; }
}

@media (max-width: 767px) {
    .skills-journey {
        padding: 70px 20px;
    }

    .journey-wrapper {
        gap: 40px;
    }

    .skills-journey .journey-header h2 { font-size: 30px; }
    .skills-journey .journey-header p  { font-size: 15px; }

    .journey-image img {
        border-radius: 20px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
    }

    .timeline-content h3 { font-size: 18px; }
    .timeline-content p  { font-size: 14px; }
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */

.comparison-strip {
    padding: 40px 5%;
    background: var(--bg-white);
}

.comparison-wrapper {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
}

.comparison-image {
    position: sticky;
    top: 100px;
}

.comparison-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.comparison-header {
    margin-bottom: 40px;
}

.comparison-header span {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.comparison-header h2 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--blue);
    margin: 15px 0;
}

.comparison-header p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-subtle);
}

.comparison-list {
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: var(--transition-slow);
}

.comparison-row:hover {
    transform: translateX(10px);
}

.left-side {
    text-align: right;
    padding-right: 25px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-subtle);
    transition: var(--transition-slow);
}

.right-side {
    text-align: left;
    padding-left: 25px;
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    transition: var(--transition-slow);
}

.comparison-row:hover .right-side {
    color: var(--red);
}

.comparison-row:hover .left-side {
    opacity: 0.6;
}

/* — Arrow — */

.middle-arrow {
    position: relative;
    height: 3px;
    background: #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.middle-arrow::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    transition: var(--transition-slow);
}

.comparison-row:hover .middle-arrow {
    background: linear-gradient(90deg, var(--red), var(--blue));
}

.comparison-row:hover .middle-arrow::before {
    right: -18px;
}

/* — Comparison responsive — */

@media (max-width: 1024px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .comparison-image {
        position: relative;
        top: auto;
        max-width: 650px;
        margin: auto;
    }

    .comparison-header {
        text-align: center;
    }

    .comparison-header h2 { font-size: 38px; }

    .comparison-row {
        grid-template-columns: 1fr 100px 1fr;
    }

    .left-side,
    .right-side {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .comparison-strip {
        padding: 70px 20px;
    }

    .comparison-header h2 { font-size: 30px; }
    .comparison-header p  { font-size: 15px; }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0;
        text-align: center;
    }

    .left-side,
    .right-side {
        text-align: center;
        padding: 0;
        font-size: 18px;
    }

    .middle-arrow {
        width: 100px;
        margin: auto;
    }

    .comparison-image img {
        border-radius: 20px;
    }
}