/* ============================================================================
   ABOUT V2 — AtlasGroup-style About page. Self-contained; every class is
   namespaced .abtx-* so it cannot collide with legacy/homepage/services styles.
   Loaded alongside home-v2.css (only for the floating overlay navbar).
   ============================================================================ */

.abtx-page {
    --ab-deep: #0b5159;
    --ab-deep-2: #0b3b40;
    --ab-mint: #d3efe9;
    --ab-mint-soft: #ecf6f4;
    --ab-line: #e6eaec;
    --ab-ink: #1c2329;
    --ab-body: #586470;
    --ab-accent: #09747f;
    --ab-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------------------
   Shared primitives
   --------------------------------------------------------------------------- */
.abtx-sec {
    padding: 50px 0;
}

.abtx-head--center {
    max-width: 760px;
    margin: 0 auto clamp(36px, 4.5vw, 58px);
    text-align: center;
}

/* uniform section heading — matches site-wide client rule (weight 500, clamp 28–38px) */
.abtx-page .abtx-h2 {
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: normal;
    letter-spacing: -0.5px;
    margin: 16px 0 0;
}

.abtx-page .abtx-h2--light,
.abtx-page .abtx-h2--light * {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.abtx-sub {
    color: var(--ab-body);
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.7;
    margin: 15px 0 0;
}

.abtx-sub--light {
    color: rgba(255, 255, 255, 0.82);
}

.abtx-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.abtx-pill--deep {
    background: var(--ab-deep);
    color: #fff;
}

.abtx-pill--mint {
    background: var(--ab-mint);
    color: var(--ab-deep-2);
}

.abtx-pill--dot::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.abtx-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.25s var(--ab-ease), color 0.25s var(--ab-ease),
        transform 0.25s var(--ab-ease), box-shadow 0.25s var(--ab-ease);
}

.abtx-btn:hover {
    transform: translateY(-2px);
}

.abtx-btn svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.abtx-btn--deep {
    background: var(--ab-deep);
    color: #fff;
}

.abtx-btn--deep:hover {
    background: var(--ab-deep-2);
    color: #fff;
    box-shadow: 0 14px 28px rgba(11, 70, 76, 0.28);
}

.abtx-btn--mint {
    background: var(--ab-mint);
    color: var(--ab-deep-2);
}

.abtx-btn--mint:hover {
    background: #b9e6df;
    color: var(--ab-deep-2);
}

.abtx-btn--white {
    background: #fff;
    color: var(--ab-deep-2);
}

.abtx-btn--white:hover {
    background: var(--ab-mint-soft);
    color: var(--ab-deep-2);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

/* check list rendered as divider rows */
.abtx-check {
    list-style: none;
    margin: 0;
    padding: 0;
}

.abtx-check li {
    position: relative;
    padding: 15px 0 15px 34px;
    border-bottom: 1px solid var(--ab-line);
    color: var(--ab-ink);
    font-size: 15.5px;
    line-height: 1.5;
}

.abtx-check li:first-child {
    padding-top: 0;
}

.abtx-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230e4034' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
}

.abtx-check li:first-child::before {
    top: -1px;
}

/* ---------------------------------------------------------------------------
   1. HERO — full-bleed background image + scrim (matches the site-wide page
      header used on Services and other pages)
   --------------------------------------------------------------------------- */
.abtx-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(520px, 60vw, 700px);
    padding: clamp(150px, 20vw, 220px) 0 clamp(46px, 6vw, 74px);
    overflow: hidden;
    isolation: isolate;
}

.abtx-hero-bg,
.abtx-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.abtx-hero-bg img {
    filter: brightness(0.78) saturate(1.05);
}

.abtx-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(6, 32, 35, 0.35) 0%, rgba(6, 32, 35, 0.4) 45%, rgba(6, 32, 35, 0.5) 62%, rgba(6, 32, 35, 0.8) 100%),
        linear-gradient(90deg, rgba(6, 32, 35, 0.5) 0%, rgba(6, 32, 35, 0.2) 72%, rgba(6, 32, 35, 0.1) 100%);
}

.abtx-hero-inner {
    position: relative;
    width: 100%;
}

.abtx-page .abtx-hero-title {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-weight: 700;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.06;
    letter-spacing: -1px;
    margin: 0;
    max-width: 820px;
    text-shadow: 0 2px 30px rgba(5, 24, 26, 0.55), 0 1px 4px rgba(5, 24, 26, 0.55);
}

.abtx-hero-foot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(18px, 2.2vw, 28px);
    margin-top: clamp(22px, 2.6vw, 34px);
}

.abtx-hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
    text-shadow: 0 1px 12px rgba(5, 24, 26, 0.5);
}

/* breadcrumb pill sits after (below) the description, bottom-left */
.abtx-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 999px;
}

.abtx-breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
}

.abtx-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s var(--ab-ease);
}

.abtx-breadcrumb a:hover {
    color: #fff;
}

.abtx-breadcrumb li:last-child span {
    color: #fff;
    font-weight: 600;
}

/* ---------------------------------------------------------------------------
   2. ABOUT statement (heading + text/checklist + image + stat bar)
   --------------------------------------------------------------------------- */
.abtx-about-head {
    max-width: 760px;
    margin-bottom: clamp(32px, 4vw, 52px);
}

.abtx-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 70px);
    align-items: start;
}

.abtx-about-copy p {
    color: var(--ab-body);
    font-size: clamp(15px, 1.15vw, 16.5px);
    line-height: 1.75;
    margin: 0 0 18px;
}

.abtx-about-copy .abtx-btn {
    margin-top: 14px;
}

/* image + overlapping stat/mission bar */
.abtx-about-media {
    position: relative;
    margin-top: clamp(40px, 5vw, 72px);
    border-radius: 20px;
    overflow: hidden;
    min-height: clamp(320px, 34vw, 460px);
}

.abtx-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abtx-about-bar {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(20px, 3vw, 48px);
    margin-top: -1px;
    background: var(--ab-deep);
    border-radius: 0 0 20px 20px;
    padding: clamp(26px, 3vw, 44px) clamp(26px, 3vw, 48px);
}

.abtx-about-stat {
    display: flex;
    align-items: center;
    gap: 22px;
}

.abtx-about-num {
    color: var(--ab-mint);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

.abtx-about-stat p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 150px;
}

.abtx-about-cert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: clamp(16px, 2vw, 30px);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.abtx-about-cert-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-mint);
    flex: 0 0 auto;
}

.abtx-about-cert-ring svg {
    width: 24px;
    height: 24px;
}

.abtx-about-cert span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 600;
}

.abtx-about-mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: clamp(20px, 3vw, 48px);
}

.abtx-page .abtx-about-mission h3 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.abtx-about-mission h3::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ab-mint);
}

.abtx-about-mission p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* ---------------------------------------------------------------------------
   3. TIMELINE
   --------------------------------------------------------------------------- */
.abtx-timeline {
    position: relative;
    padding: 50px 0;
}

.abtx-timeline .abtx-head--center {
    margin-bottom: clamp(34px, 4vw, 54px);
}

/* journey cards on a dashed track */
.abtx-tl2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 2vw, 30px);
    position: relative;
}

/* dashed connecting track running through the dots */
.abtx-tl2-grid::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 5px;
    border-top: 2px dashed var(--ab-line);
    z-index: 0;
}

.abtx-tl2-item {
    position: relative;
    z-index: 1;
    padding-top: 34px;
}

/* dot marker seated on the dashed track */
.abtx-tl2-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ab-deep);
    box-shadow: 0 0 0 6px var(--ab-mint-soft);
}

.abtx-tl2-card {
    background: #fff;
    border: 1px solid var(--ab-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(6, 26, 29, 0.07);
    transition: box-shadow 0.28s var(--ab-ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.abtx-tl2-card:hover {
    box-shadow: 0 20px 46px rgba(6, 26, 29, 0.12);
}

.abtx-tl2-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.abtx-tl2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abtx-tl2-year {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ab-deep);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    border-radius: 999px;
}

.abtx-tl2-body {
    padding: 20px 22px 24px;
    flex: 1 1 auto;
}

.abtx-page .abtx-tl2-body h4 {
    color: var(--ab-deep) !important;
    -webkit-text-fill-color: var(--ab-deep) !important;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}

.abtx-tl2-body p {
    color: var(--ab-body);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* ---------------------------------------------------------------------------
   4. WHY CHOOSE (image + accordion)
   --------------------------------------------------------------------------- */
.abtx-why-head {
    max-width: 640px;
    margin-bottom: clamp(32px, 4vw, 52px);
}

.abtx-why-head .abtx-h2 {
    margin-top: 18px;
}

.abtx-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

.abtx-why-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
}

.abtx-why-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abtx-why-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s var(--ab-ease), transform 0.25s var(--ab-ease);
}

.abtx-why-play:hover {
    background: var(--ab-deep);
    transform: translate(-50%, -50%) scale(1.05);
}

.abtx-why-play svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.abtx-why-intro {
    color: var(--ab-body);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.75;
    margin: 0 0 clamp(22px, 2.6vw, 32px);
    padding-left: 22px;
    border-left: 2px solid var(--ab-deep);
}

/* accordion */
.abtx-acc {
    border-top: 1px solid var(--ab-line);
}

.abtx-acc-item {
    border-bottom: 1px solid var(--ab-line);
}

.abtx-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 20px 0;
    color: var(--ab-deep);
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 600;
}

.abtx-acc-num {
    color: var(--ab-accent);
    font-weight: 700;
}

.abtx-acc-icon {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ab-mint-soft);
    color: var(--ab-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ab-ease), background 0.3s var(--ab-ease), color 0.3s var(--ab-ease);
}

.abtx-acc-icon svg {
    width: 16px;
    height: 16px;
}

.abtx-acc-item.is-open .abtx-acc-icon {
    transform: rotate(180deg);
    background: var(--ab-deep);
    color: #fff;
}

.abtx-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ab-ease);
}

.abtx-acc-body p {
    color: var(--ab-body);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
    padding: 0 0 22px 26px;
    max-width: 520px;
}

.abtx-why-content > .abtx-btn {
    margin-top: clamp(26px, 3vw, 38px);
}

/* ---------------------------------------------------------------------------
   5. STATS
   --------------------------------------------------------------------------- */
.abtx-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 56px);
}

.abtx-stat {
    padding: 0 clamp(8px, 1.6vw, 28px);
    border-left: 1px solid var(--ab-line);
}

.abtx-stat:first-child {
    border-left: none;
    padding-left: 0;
}

/* counting numbers — softened per client (was weight 700 / up to 64px) to
   match the homepage stat scale */
.abtx-stat-num {
    display: block;
    color: var(--ab-deep) !important;
    -webkit-text-fill-color: var(--ab-deep);
    font-size: clamp(34px, 3.2vw, 44px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.abtx-stat-label {
    display: block;
    color: var(--ab-ink);
    font-weight: 600;
    font-size: clamp(15px, 1.2vw, 18px);
    margin: 16px 0 10px;
}

.abtx-stat p {
    color: var(--ab-body);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    max-width: 300px;
}

/* ---------------------------------------------------------------------------
   6. DUO CTA (mint | image | deep)
   --------------------------------------------------------------------------- */
.abtx-duo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 30px);
    align-items: stretch;
}

.abtx-duo-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    padding: clamp(28px, 3vw, 48px);
    min-height: clamp(360px, 32vw, 460px);
}

.abtx-duo-card--mint {
    background: var(--ab-mint);
}

.abtx-duo-card--deep {
    background: var(--ab-deep);
}

.abtx-duo-badge {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: clamp(20px, 2.4vw, 36px);
}

.abtx-duo-card--mint .abtx-duo-badge {
    background: var(--ab-deep);
    color: #fff;
}

.abtx-duo-card--deep .abtx-duo-badge {
    background: var(--ab-mint);
    color: var(--ab-deep-2);
}

.abtx-page .abtx-duo-card h3 {
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    max-width: 340px;
}

.abtx-page .abtx-duo-card--mint h3 {
    color: #0b3b40 !important;
    -webkit-text-fill-color: #0b3b40 !important;
}

.abtx-page .abtx-duo-card--deep h3 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.abtx-duo-divider {
    width: 100%;
    height: 1px;
    background: rgba(11, 55, 60, 0.18);
    margin: clamp(22px, 2.2vw, 34px) 0;
}

.abtx-duo-card .abtx-btn {
    margin-top: clamp(22px, 2.4vw, 34px);
}

.abtx-duo-card p {
    margin: auto 0 0;
    padding-top: 24px;
    line-height: 1.7;
    font-size: 14.5px;
    max-width: 320px;
}

.abtx-duo-card--mint p {
    color: #3f4a44;
}

.abtx-duo-card--deep p {
    color: rgba(255, 255, 255, 0.9);
}

.abtx-duo-media {
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
}

.abtx-duo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------------------------------------------------------------------------
   7. TEAM / leadership
   --------------------------------------------------------------------------- */
.abtx-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: clamp(22px, 2.4vw, 34px);
    margin-bottom: 0;
}

/* clean solid card — photo on top, always-visible info + bio below */
.abtx-team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ab-line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 32, 35, 0.06);
    transition: box-shadow 0.3s var(--ab-ease), border-color 0.3s var(--ab-ease);
}

.abtx-team-card:hover {
    box-shadow: 0 22px 46px rgba(6, 32, 35, 0.14);
    border-color: #b9e6df;
}

.abtx-team-card img {
    width: 100%;
    height: clamp(300px, 26vw, 380px);
    object-fit: cover;
    object-position: top center;
    display: block;
}

.abtx-team-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px clamp(18px, 1.6vw, 24px) 24px;
}

/* solid name plate */
.abtx-team-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.abtx-team-meta {
    min-width: 0;
    border-left: 3px solid var(--ab-accent);
    padding-left: 14px;
}

.abtx-page .abtx-team-meta strong {
    display: block;
    color: var(--ab-ink) !important;
    -webkit-text-fill-color: var(--ab-ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.abtx-team-meta span {
    display: block;
    margin-top: 4px;
    font-size: 13.5px;
    color: var(--ab-body);
}

.abtx-team-plus {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #b9e6df;
    color: var(--ab-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ab-ease);
}

.abtx-team-plus svg {
    width: 20px;
    height: 20px;
}

.abtx-team-plus:hover {
    background: #a3ddd2;
}

/* always-visible bio */
.abtx-team-desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--ab-line);
}

.abtx-team-desc p {
    margin: 0;
    color: var(--ab-body);
    font-size: 14.5px;
    line-height: 1.65;
}

.abtx-team-foot {
    text-align: center;
    margin-top: clamp(34px, 4vw, 52px);
}

/* ---------------------------------------------------------------------------
   8. TESTIMONIAL + CLIENTS
   --------------------------------------------------------------------------- */
.abtx-tst-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(30px, 4vw, 64px);
    align-items: center;
}

.abtx-tst-person {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.abtx-tst-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

.abtx-tst-person-meta {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 14px 18px;
}

.abtx-page .abtx-tst-person-meta strong {
    display: block;
    color: var(--ab-deep) !important;
    -webkit-text-fill-color: var(--ab-deep);
    font-size: 16px;
    font-weight: 700;
}

.abtx-tst-stars {
    color: #f5a623;
    letter-spacing: 2px;
    font-size: 14px;
}

.abtx-tst-quotemark {
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 0.5;
    color: var(--ab-mint);
    height: 40px;
    display: block;
}

.abtx-page .abtx-tst-quote {
    color: var(--ab-ink) !important;
    -webkit-text-fill-color: var(--ab-ink);
    font-size: clamp(18px, 1.7vw, 26px);
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 clamp(24px, 3vw, 36px);
}

.abtx-tst-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.abtx-tst-dots {
    display: inline-flex;
    gap: 8px;
}

.abtx-tst-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ab-line);
}

.abtx-tst-dots span.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--ab-deep);
}

/* clients strip */
.abtx-clients {
    margin-top: clamp(44px, 5vw, 76px);
    padding-top: clamp(34px, 4vw, 52px);
    border-top: 1px solid var(--ab-line);
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: clamp(24px, 3vw, 48px);
    align-items: center;
}

.abtx-page .abtx-clients h4 {
    color: var(--ab-deep) !important;
    -webkit-text-fill-color: var(--ab-deep);
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

.abtx-clients-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 44px);
}

.abtx-clients-logos span {
    color: #9aa4a0;
    font-size: clamp(16px, 1.4vw, 21px);
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ---------------------------------------------------------------------------
   9. CTA
   --------------------------------------------------------------------------- */
.abtx-cta {
    background: #fff;
}

/* contained panel — replaces the old full-bleed banner CTA */
.abtx-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 4vw, 60px);
    flex-wrap: wrap;
    background: linear-gradient(120deg, var(--ab-mint-soft) 0%, var(--ab-mint) 100%);
    border: 1px solid var(--ab-line);
    border-radius: 26px;
    padding: clamp(34px, 5vw, 64px) clamp(28px, 5vw, 68px);
}

.abtx-cta-copy {
    flex: 1 1 440px;
}

.abtx-page .abtx-cta h2 {
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
    margin: 0;
    max-width: 620px;
}

.abtx-cta p {
    color: var(--ab-deep);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    margin: 14px 0 0;
    max-width: 560px;
}

.abtx-cta-btn {
    flex: 0 0 auto;
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .abtx-tl2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .abtx-tl2-grid::before {
        display: none;
    }
    .abtx-tl2-item {
        padding-top: 0;
    }
    .abtx-tl2-dot {
        display: none;
    }
    .abtx-duo-grid,
    .abtx-team-grid {
        grid-template-columns: 1fr;
    }
    .abtx-team-grid {
        gap: 26px;
        max-width: 460px;
        margin-inline: auto;
    }
    .abtx-duo-media {
        min-height: 260px;
    }
}

@media (max-width: 900px) {
    .abtx-about-grid,
    .abtx-why-grid,
    .abtx-tst-grid,
    .abtx-clients {
        grid-template-columns: 1fr;
    }
    .abtx-about-bar {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .abtx-about-mission {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-left: 0;
        padding-top: 22px;
    }
    .abtx-stats-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .abtx-stat {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--ab-line);
        padding-top: 22px;
    }
    .abtx-stat:first-child {
        border-top: none;
        padding-top: 0;
    }
}

@media (max-width: 620px) {
    .abtx-tl2-grid {
        grid-template-columns: 1fr;
    }
    .abtx-about-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .abtx-clients-logos {
        justify-content: flex-start;
        gap: 20px;
    }
}
