.ab-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 78vh;
}

.ab-hero-left {
    background: #1a2e2d;
    padding: 120px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ab-hero-left::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 189, 181, .18), transparent 70%);
}

.ab-hero-left::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 70px;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(58, 189, 181, .3);
    border-radius: 50%;
}

.ab-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
}

.ab-tag span {
    width: 34px;
    height: 2px;
    background: #3abdb5;
}

.ab-tag p {
    font-size: 11px;
    letter-spacing: 4px;
    color: #3abdb5;
    text-transform: uppercase;
}

.ab-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
    position: relative;
}

.ab-hero-title em {
    font-style: italic;
    color: #3abdb5;
}

.ab-hero-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, .55);
    max-width: 420px;
    position: relative;
}

.ab-hero-right {
    position: relative;
    overflow: hidden;
    background: #3abdb5;
}

.ab-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: .85;
}

.ab-hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 189, 181, .3), transparent 60%);
}

.ab-hero-float {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #fff;
    padding: 22px 28px;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.ab-hero-float-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: #1a2e2d;
    line-height: 1;
}

.ab-hero-float-l {
    font-size: 10px;
    letter-spacing: 2px;
    color: #3abdb5;
    text-transform: uppercase;
    margin-top: 4px;
}

/* MARQUEE strip */
.ab-strip {
    background: #1a2e2d;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(58, 189, 181, .15);
    border-bottom: 1px solid rgba(58, 189, 181, .15);
}

.ab-strip-inner {
    display: flex;
    width: max-content;
    animation: abstrip 24s linear infinite;
}

.ab-strip-item {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 36px;
}

.ab-strip-item::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3abdb5;
    margin-left: 72px;
}

@keyframes abstrip {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* STORY — vertical cards */
.ab-story {
    padding: 100px 80px;
    background: #fff;
}

.ab-story-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.ab-shl {
    font-size: 11px;
    letter-spacing: 5px;
    color: #3abdb5;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ab-sht {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: #1a2e2d;
    line-height: 1.15;
}

.ab-sht em {
    font-style: italic;
    color: #3abdb5;
}

.ab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ab-scard {
    background: #fff;
    border: 1px solid #e8f4f3;
    border-radius: 6px;
    overflow: hidden;
    transition: all .4s;
}

.ab-scard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(58, 189, 181, .13);
    border-color: transparent;
}

.ab-scard-img {
    position: relative;
    aspect-ratio: 1.3;
    overflow: hidden;
}

.ab-scard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.ab-scard:hover .ab-scard-img img {
    transform: scale(1.06);
}

.ab-scard-num {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    background: #3abdb5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    border-radius: 50%;
}

.ab-scard-body {
    padding: 28px 26px 32px;
}

.ab-scard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a2e2d;
    margin-bottom: 12px;
}

.ab-scard-text {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.85;
    color: #6b9996;
}

/* STATS — vibrant cards */
.ab-stats {
    padding: 90px 80px;
    background: #1a2e2d;
    position: relative;
    overflow: hidden;
}

.ab-stats::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 189, 181, .1), transparent 70%);
}

.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.ab-stat {
    background: rgba(58, 189, 181, .06);
    border: 1px solid rgba(58, 189, 181, .15);
    padding: 38px 28px;
    text-align: center;
    transition: all .4s;
}

.ab-stat:hover {
    background: rgba(58, 189, 181, .12);
    transform: translateY(-6px);
}

.ab-stat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 54px);
    font-weight: 300;
    color: #3abdb5;
    line-height: 1;
}

.ab-stat-l {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    margin-top: 10px;
}

/* VALUES — alternating colored */
.ab-values {
    padding: 100px 80px;
    background: #f0fafa;
}

.ab-vhead {
    text-align: center;
    margin-bottom: 60px;
}

.ab-vgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-vcard {
    padding: 46px 34px;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    border-radius: 4px;
}

.ab-vcard:nth-child(2) {
    background: #1a2e2d;
}

.ab-vcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(58, 189, 181, .15);
}

.ab-vcard-num {
    position: absolute;
    top: 20px;
    right: 26px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    color: #eef8f7;
    font-weight: 300;
}

.ab-vcard:nth-child(2) .ab-vcard-num {
    color: rgba(58, 189, 181, .2);
}

.ab-vicon {
    width: 56px;
    height: 56px;
    background: #f0fafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #3abdb5;
    position: relative;
}

.ab-vcard:nth-child(2) .ab-vicon {
    background: rgba(58, 189, 181, .15);
}

.ab-vtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    color: #1a2e2d;
    margin-bottom: 12px;
    position: relative;
}

.ab-vcard:nth-child(2) .ab-vtitle {
    color: #fff;
}

.ab-vtext {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
    color: #6b9996;
    position: relative;
}

.ab-vcard:nth-child(2) .ab-vtext {
    color: rgba(255, 255, 255, .5);
}

/* JOURNEY — horizontal cards */
.ab-journey {
    padding: 100px 80px;
    background: #fff;
}

.ab-jhead {
    text-align: center;
    margin-bottom: 64px;
}

.ab-jscroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.ab-jcard {
    position: relative;
    padding-top: 30px;
}

.ab-jcard::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0f4f3;
}

.ab-jcard::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3abdb5;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #e0f4f3;
}

.ab-jcard.active::after {
    background: #1a2e2d;
    box-shadow: 0 0 0 2px #3abdb5;
}

.ab-jyear {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    color: #3abdb5;
    line-height: 1;
    margin-bottom: 10px;
}

.ab-jtitle {
    font-size: 13px;
    font-weight: 600;
    color: #1a2e2d;
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.ab-jdesc {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7;
    color: #6b9996;
}

/* CERTS — pill row */
.ab-certs {
    padding: 90px 80px;
    background: #f0fafa;
    text-align: center;
}

.ab-chead {
    margin-bottom: 48px;
}

.ab-cpills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.ab-pill {
    padding: 16px 30px;
    background: #fff;
    border: 1px solid #e8f4f3;
    border-radius: 40px;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-pill:hover {
    border-color: #3abdb5;
    background: #3abdb5;
}

.ab-pill:hover .ab-pill-n,
.ab-pill:hover .ab-pill-d {
    color: #fff;
}

.ab-pill-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: #1a2e2d;
    font-weight: 500;
    transition: color .3s;
}

.ab-pill-d {
    font-size: 11px;
    letter-spacing: 1px;
    color: #8aadaa;
    text-transform: uppercase;
    transition: color .3s;
}

/* CTA — bold gradient */
.ab-cta {
    padding: 110px 80px;
    background: linear-gradient(135deg, #1a2e2d 0%, #2e6b66 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ab-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 189, 181, .2), transparent 70%);
}

.ab-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px solid rgba(58, 189, 181, .15);
}

.ab-ctl {
    font-size: 11px;
    letter-spacing: 5px;
    color: #3abdb5;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
}

.ab-ctt {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 32px;
    position: relative;
}

.ab-ctt em {
    font-style: italic;
    color: #3abdb5;
}

.ab-ctbtns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.ab-cb1 {
    padding: 15px 40px;
    background: #fff;
    color: #1a2e2d;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s;
}

.ab-cb1:hover {
    background: #3abdb5;
    color: #fff;
    transform: translateY(-2px);
}

.ab-cb2 {
    padding: 15px 40px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

.ab-cb2:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

@media(max-width:1024px) {
    .ab-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ab-hero-left {
        padding: 80px 40px;
    }

    .ab-hero-right {
        min-height: 400px;
    }

    .ab-story,
    .ab-stats,
    .ab-values,
    .ab-journey,
    .ab-certs,
    .ab-cta {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ab-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ab-row.flip .ab-row-img {
        order: 0;
    }

    .ab-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ab-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-vgrid {
        grid-template-columns: 1fr;
    }

    .ab-jscroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }
}

@media(max-width:600px) {
    .ab-hero-left {
        padding: 60px 24px;
    }

    .ab-story,
    .ab-stats,
    .ab-values,
    .ab-journey,
    .ab-certs,
    .ab-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ab-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ab-jscroll {
        grid-template-columns: 1fr;
    }

    .ab-strip-item {
        font-size: 16px;
    }

    .ab-cb1,
    .ab-cb2 {
        width: 100%;
        text-align: center;
    }

    .ab-hero-float {
        right: 20px;
        bottom: 20px;
        padding: 16px 20px;
    }
}