
:root {
    --bg: #060d19;
    --bg-soft: #0b1425;
    --panel: #111b2d;
    --panel-dark: #09111f;
    --border: rgba(121, 148, 188, 0.18);
    --text: #edf1f7;
    --muted: #9ba8ba;
    --orange: #ff9900;
    --orange-soft: #ffb13b;
    --green: #48c99a;
    --line: rgba(120, 145, 180, 0.15);
    --max-width: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(rgba(72, 97, 137, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72, 97, 137, 0.07) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(31, 57, 95, 0.18), transparent 40%),
        var(--bg);
    background-size: 72px 72px, 72px 72px, auto, auto;
    color: var(--text);
    font-family: "Inter", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
}


/* =====================================================
   NAVIGATION
===================================================== */

.navbar {
    height: 78px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 11, 21, 0.88);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-box {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--orange-soft), #ff6f1a);
    box-shadow: 0 0 22px rgba(255, 145, 0, 0.28);
}

.logo-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo-text span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: #b8c1cf;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 28px;
    background: var(--orange);
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-cta {
    background: linear-gradient(135deg, #ffae19, #f18400);
    color: #111;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 25px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 145, 0, 0.18);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    padding: 48px 0 36px;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    gap: 70px;
    align-items: center;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    color: #f3b84f;
    border: 1px solid rgba(255, 153, 0, 0.36);
    background: rgba(255, 153, 0, 0.06);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    max-width: 560px;
    margin: 18px 0 14px;
}

.hero h1 span,
.system-heading span,
.final-cta h2 span {
    color: var(--orange-soft);
}

.hero-description {
    max-width: 490px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
}

.benefits {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.benefit {
    color: #c6ced9;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit span {
    color: #08111d;
    background: var(--orange);
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    color: #15100a;
    background: linear-gradient(135deg, #ffb01b, #ff8500);
    box-shadow: 0 0 24px rgba(255, 145, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 145, 0, 0.3);
}

.btn-secondary {
    color: #c6cfdb;
    border: 1px solid var(--border);
    background: rgba(18, 28, 46, 0.8);
}

.hero-stats {
    margin-top: 22px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 0 14px;
    border-right: 1px solid var(--border);
}

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

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;
    color: var(--orange-soft);
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    margin-bottom: 4px;
}

.stat span {
    color: #8592a4;
    font-size: 10px;
    line-height: 1.3;
}


/* =====================================================
   CALCULATOR
===================================================== */

.calculator-card {
    background: linear-gradient(145deg, rgba(23, 35, 56, 0.98), rgba(11, 20, 35, 0.98));
    border: 1px solid rgba(255, 153, 0, 0.5);
    border-radius: 16px;
    padding: 24px;
    box-shadow:
        0 0 34px rgba(255, 145, 0, 0.08),
        inset 0 1px rgba(255,255,255,0.025);
}

.calculator-title {
    color: var(--orange-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.calculator-divider {
    height: 1px;
    background: var(--border);
    margin: 14px 0 18px;
}

.slider-group {
    margin-bottom: 21px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
}

.slider-header label {
    color: #d2d8e0;
    font-size: 13px;
}

.slider-header strong {
    color: var(--orange-soft);
    font-size: 13px;
}

input[type="range"] {
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 10px;
    outline: none;
    background: linear-gradient(to right, var(--orange) 0%, var(--orange) 30%, #3c475c 30%, #3c475c 100%);
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(255, 153, 0, 0.6);
}

.calculator-results {
    background: rgba(4, 10, 19, 0.75);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 17px;
}

.result-top {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 18px;
}

.result-label,
.revenue-result span {
    display: block;
    color: #8d99aa;
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}

.result-top strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
}

.orange {
    color: var(--orange-soft);
}

.result-separator {
    background: var(--border);
}

.revenue-result {
    border-top: 1px solid var(--border);
    margin-top: 15px;
    padding-top: 14px;
}

.revenue-result strong {
    color: var(--green);
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
}

.calculator-cta {
    display: block;
    text-align: center;
    margin-top: 14px;
    padding: 14px;
    border-radius: 9px;
    background: linear-gradient(135deg, #ffb01b, #ff8500);
    color: #1b1206;
    font-size: 13px;
    font-weight: 800;
}


/* =====================================================
   SYSTEM
===================================================== */

.system-section {
    padding: 34px 0 30px;
    border-bottom: 1px solid var(--line);
}

.system-section .container {
    text-align: center;
}

.system-heading {
    font-family: "Space Grotesk", sans-serif;
    max-width: 760px;
    margin: 15px auto 22px;
    font-size: clamp(26px, 2.5vw, 34px);
    line-height: 1.18;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    text-align: left;
}

.process-card {
    position: relative;
    min-height: 185px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(23, 35, 54, 0.9), rgba(12, 21, 35, 0.92));
}

.step-number {
    color: var(--orange-soft);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 17px;
}

.process-icon {
    color: var(--orange);
    font-size: 25px;
    margin: 8px 0;
}

.process-card h3 {
    margin: 0 0 7px;
    font-size: 14px;
}

.process-card p {
    margin: 0;
    color: #a9b4c3;
    font-size: 12px;
    line-height: 1.5;
}


/* =====================================================
   ADVANTAGE / RESULTS
===================================================== */

.advantage-section {
    padding: 40px 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 65px;
    align-items: start;
}

.left-label {
    margin-bottom: 14px;
}

.advantage-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 14px;
}

.advantage-content p {
    max-width: 430px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--orange-soft);
    font-size: 13px;
    font-weight: 700;
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.client-card {
    min-height: 135px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(22, 34, 53, 0.92), rgba(10, 18, 31, 0.92));
}

.client-icon {
    color: var(--orange);
    font-size: 19px;
    margin-bottom: 8px;
}

.client-card h3 {
    margin: 0 0 3px;
    font-size: 12px;
}

.client-card span {
    color: #8e9aac;
    font-size: 11px;
}

.client-card strong {
    display: block;
    color: var(--green);
    margin-top: 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    padding: 40px 0 55px;
}

.cta-panel {
    text-align: center;
    padding: 45px 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(255, 145, 0, 0.08), transparent 50%),
        rgba(12, 21, 35, 0.8);
}

.final-cta h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 35px;
    margin: 16px 0 10px;
}

.final-cta p {
    max-width: 520px;
    margin: 0 auto 20px;
    color: var(--muted);
    font-size: 14px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner p,
.copyright {
    color: #7e8999;
    font-size: 11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .hero-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 650px;
    }

    .calculator-card {
        max-width: 650px;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-links {
        gap: 18px;
    }
}

@media (max-width: 760px) {

    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .nav-inner {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        overflow-x: auto;
    }

    .nav-links a {
        white-space: nowrap;
        font-size: 12px;
    }

    .nav-links a.active::after {
        display: none;
    }

    .hero {
        padding-top: 35px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat {
        padding: 0 10px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-cards {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {

    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .nav-cta {
        padding: 11px 16px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .result-top {
        gap: 10px;
    }

    .revenue-result strong {
        font-size: 20px;
    }
}


/* =========================================================
   ADTRIX REAL LOGO
   ========================================================= */

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.adtrix-logo-image {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .adtrix-logo-image {
        width: 46px;
        height: 46px;
    }
}

/* ADTRIX FOOTER WITH REAL LOGO */


/* =========================================================
   ADTRIX FOOTER WITH REAL LOGO
   ========================================================= */

.site-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 11, 22, 0.92);
    padding: 28px 0;
}

.footer-container {
    width: min(92%, 1160px);
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.footer-logo-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
}

.footer-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.footer-text {
    margin: 0;
    max-width: none !important;
    font-size: 13px !important;
    line-height: 1.5;
    color: rgba(220, 228, 240, 0.58);
}

.footer-right {
    margin: 0 0 0 auto;
    max-width: none !important;
    white-space: nowrap;
    font-size: 12px !important;
    color: rgba(220, 228, 240, 0.5);
}


/* Tablet */
@media (max-width: 900px) {

    .footer-container {
        gap: 20px;
    }

    .footer-logo-image {
        width: 70px;
        height: 70px;
    }

    .footer-right {
        font-size: 11px !important;
    }
}


/* Mobile */
@media (max-width: 650px) {

    .site-footer {
        padding: 32px 0;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }

    .footer-logo-image {
        width: 76px;
        height: 76px;
    }

    .footer-divider {
        width: 70px;
        height: 1px;
    }

    .footer-text {
        max-width: 320px !important;
    }

    .footer-right {
        margin: 0;
        white-space: normal;
    }
}

/* ADTRIX LIVE BOOKING CALENDAR */


/* =========================================================
   ADTRIX LIVE BOOKING CALENDAR
   ========================================================= */

.booking-section {
    position: relative;
}

.booking-card {
    width: 100%;
    max-width: 1100px;
    margin: 42px auto 0;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 31, 50, 0.96),
            rgba(9, 16, 29, 0.98)
        );

    border: 1px solid rgba(255, 153, 0, 0.22);
    border-radius: 22px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.32);
}

.booking-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.booking-label {
    display: block;
    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;

    color: var(--orange-soft);
}

.booking-card h3 {
    margin: 0;
    font-size: 28px !important;
}

.booking-status {
    padding: 9px 14px;

    border: 1px solid rgba(255, 153, 0, 0.28);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;

    color: var(--orange-soft);
    white-space: nowrap;
}

.booking-divider {
    height: 1px;
    margin: 22px 0;

    background: rgba(255, 255, 255, 0.08);
}

.adtrix-booking-calendar {
    display: block;

    width: 100%;
    min-height: 720px;

    border: none;
    border-radius: 14px;

    background: #ffffff;
}


/* Tablet */
@media (max-width: 900px) {

    .booking-card {
        padding: 20px;
    }

    .adtrix-booking-calendar {
        min-height: 760px;
    }

}


/* Mobile */
@media (max-width: 650px) {

    .booking-card {
        margin-top: 28px;
        padding: 14px;

        border-radius: 16px;
    }

    .booking-card-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .booking-card h3 {
        font-size: 23px !important;
    }

    .booking-status {
        font-size: 10px;
    }

    .adtrix-booking-calendar {
        min-height: 820px;
        border-radius: 10px;
    }

}


/* ADTRIX TWO-PERSON VIDEO TEAM PAGE */


/* =========================================================
   ADTRIX TWO-PERSON VIDEO TEAM PAGE
   ========================================================= */

.team-hero {
    padding-bottom: 45px !important;
}

.team-hero-content {
    max-width: 650px;
}

.team-hero-content h1 {
    margin: 14px 0 16px;
}

.team-hero-content p {
    max-width: 560px !important;
}


/* TEAM MEMBERS */

.team-members-section {
    padding-top: 35px !important;
}

.team-member-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 64px;
    align-items: center;

    padding: 42px 0;
}

.team-member-card + .team-member-card {
    margin-top: 35px;
    padding-top: 78px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-member-reverse .team-member-info {
    order: 1;
}

.team-member-reverse .team-video-wrap {
    order: 2;
}


/* VIDEO */

.team-video-wrap {
    position: relative;

    padding: 10px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 153, 0, 0.24),
            rgba(255, 153, 0, 0.03) 45%,
            rgba(255, 255, 255, 0.06)
        );

    border: 1px solid rgba(255, 153, 0, 0.16);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}

.team-intro-video {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    object-fit: cover;

    border-radius: 13px;

    background: #050a12;
}

.team-video-badge {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 2;

    padding: 7px 11px;

    border-radius: 999px;

    background: rgba(7, 12, 24, 0.78);

    border: 1px solid rgba(255, 153, 0, 0.35);

    backdrop-filter: blur(10px);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;

    color: var(--orange-soft);

    pointer-events: none;
}


/* MEMBER INFO */

.team-member-info {
    max-width: 520px;
}

.team-member-number {
    margin-bottom: 16px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.18em;

    color: rgba(255, 255, 255, 0.28);
}

.team-role {
    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.14em;

    color: var(--orange-soft);
}

.team-member-info h2 {
    margin: 0 0 18px;

    max-width: 460px !important;

    font-size: clamp(34px, 3vw, 46px) !important;

    line-height: 1.05 !important;
}

.team-member-info p {
    margin: 0;

    max-width: 500px !important;

    font-size: 15px !important;

    line-height: 1.7 !important;

    color: rgba(220, 228, 240, 0.68);
}


/* FOCUS TAGS */

.team-focus {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 24px;
}

.team-focus span {
    padding: 8px 11px;

    border-radius: 999px;

    background: rgba(255, 153, 0, 0.06);

    border: 1px solid rgba(255, 153, 0, 0.18);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.09em;

    color: rgba(255, 184, 92, 0.88);
}


/* CTA */

.team-cta {
    padding-top: 55px !important;
}

.team-cta-box {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 40px;

    padding: 42px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 153, 0, 0.12),
            rgba(13, 22, 38, 0.9)
        );

    border: 1px solid rgba(255, 153, 0, 0.18);
}

.team-cta-box h2 {
    margin: 12px 0;

    max-width: 560px !important;
}

.team-cta-box p {
    margin: 0;

    max-width: 540px !important;
}

.team-cta-box .btn {
    flex-shrink: 0;
}


/* TABLET */

@media (max-width: 900px) {

    .team-member-card,
    .team-member-reverse {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .team-member-reverse .team-member-info,
    .team-member-reverse .team-video-wrap {
        order: initial;
    }

    .team-member-reverse .team-member-info {
        order: 2;
    }

    .team-member-reverse .team-video-wrap {
        order: 1;
    }

    .team-member-info {
        max-width: 100%;
    }

    .team-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .team-member-card {
        gap: 26px;

        padding: 28px 0;
    }

    .team-member-card + .team-member-card {
        margin-top: 15px;
        padding-top: 55px;
    }

    .team-video-wrap {
        padding: 7px;

        border-radius: 15px;
    }

    .team-intro-video {
        border-radius: 10px;
    }

    .team-video-badge {
        top: 16px;
        left: 16px;

        font-size: 8px;
    }

    .team-member-info h2 {
        font-size: 34px !important;
    }

    .team-member-info p {
        font-size: 14px !important;
    }

    .team-cta-box {
        padding: 26px;
    }

}


/* ADTRIX TEAM PAGE NAVBAR SPACING FIX */


/* =========================================================
   ADTRIX TEAM PAGE NAVBAR SPACING FIX
   ========================================================= */

.team-hero {
    padding-top: 145px !important;
    padding-bottom: 70px !important;
}

.team-hero-content {
    margin-top: 0 !important;
}

.team-members-section {
    padding-top: 30px !important;
}

/* Keep navbar above all team page content */
header,
nav,
.navbar {
    position: relative;
    z-index: 1000;
}

/* Mobile spacing */
@media (max-width: 768px) {

    .team-hero {
        padding-top: 115px !important;
        padding-bottom: 50px !important;
    }

}


/* ADTRIX VERIFIED CAMPAIGN PROOF SECTION */


/* ADTRIX VERIFIED CAMPAIGN PROOF SECTION */

.results-proof-section {
    padding: 85px 0;
}

.results-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
    gap: 70px;
    align-items: center;

    padding: 55px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 153, 0, 0.07),
            rgba(13, 22, 38, 0.9) 42%,
            rgba(13, 22, 38, 0.98)
        );

    border: 1px solid rgba(255, 153, 0, 0.18);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.28);
}

.results-proof-content h2 {
    margin: 15px 0 20px;

    max-width: 560px !important;

    font-size: clamp(36px, 4vw, 58px) !important;

    line-height: 1.08 !important;
}

.results-proof-number {
    color: #ff9900;
}

.results-proof-main-text {
    max-width: 550px;

    font-size: 16px !important;

    line-height: 1.75 !important;

    color: rgba(220, 228, 240, 0.72);
}

/* STATS */

.results-proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;
}

.proof-stat-card {
    padding: 17px 14px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-stat-card strong {
    display: block;

    margin-bottom: 6px;

    font-size: 20px;

    color: #ffb84d;
}

.proof-stat-card span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.05em;

    color: rgba(220, 228, 240, 0.52);
}

.results-proof-note {
    margin-top: 22px !important;

    font-size: 12px !important;

    color: rgba(220, 228, 240, 0.42);
}

/* SCREENSHOT */

.results-proof-image-wrap {
    position: relative;

    padding: 10px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 153, 0, 0.25),
            rgba(255, 153, 0, 0.03),
            rgba(255, 255, 255, 0.06)
        );

    border: 1px solid rgba(255, 153, 0, 0.22);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}

.results-proof-image {
    display: block;

    width: 100%;

    max-height: 650px;

    object-fit: contain;

    border-radius: 13px;

    background: #0b1018;
}

.proof-image-label {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 2;

    padding: 7px 11px;

    border-radius: 999px;

    background: rgba(8, 13, 24, 0.86);

    border: 1px solid rgba(255, 153, 0, 0.38);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.12em;

    color: #ffb84d;

    pointer-events: none;
}

/* TABLET */

@media (max-width: 950px) {

    .results-proof-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 38px;
    }

}

/* MOBILE */

@media (max-width: 650px) {

    .results-proof-section {
        padding: 55px 0;
    }

    .results-proof-grid {
        padding: 25px;

        border-radius: 18px;
    }

    .results-proof-content h2 {
        font-size: 35px !important;
    }

    .results-proof-stats {
        grid-template-columns: 1fr;
    }

    .proof-image-label {
        top: 17px;
        left: 17px;

        font-size: 8px;
    }

}


/* ADTRIX CLIENT CASE STUDIES CSS */


/* ADTRIX CLIENT CASE STUDIES CSS */

.client-case-studies {
    padding: 95px 0 80px;
}

.case-studies-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.case-studies-heading h2 {
    margin: 14px 0 17px;

    font-size: clamp(38px, 4vw, 58px) !important;

    line-height: 1.08 !important;
}

.case-studies-heading p {
    max-width: 620px;

    font-size: 15px !important;

    line-height: 1.75 !important;

    color: rgba(220, 228, 240, 0.65);
}


/* CASE STUDY CARD */

.client-case-card {
    position: relative;

    display: grid;

    grid-template-columns: 65px minmax(0, 1fr);

    gap: 25px;

    padding: 38px 42px;

    margin-bottom: 22px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 153, 0, 0.055),
            rgba(12, 20, 34, 0.96)
        );

    border: 1px solid rgba(255, 255, 255, 0.075);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.client-case-card:hover {

    transform: translateY(-3px);

    border-color: rgba(255, 153, 0, 0.22);

    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.24);
}


/* NUMBER */

.case-number {

    display: flex;

    justify-content: center;
    align-items: flex-start;

    padding-top: 4px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.12em;

    color: rgba(255, 153, 0, 0.75);
}


/* HEADER */

.case-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 20px;
}

.case-label {

    margin-bottom: 7px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.15em;

    color: rgba(220, 228, 240, 0.38);
}

.case-header h3 {

    margin: 0;

    font-size: 30px !important;

    line-height: 1.1 !important;
}


/* HIGHLIGHT */

.case-highlight {

    flex-shrink: 0;

    text-align: right;

    font-size: 27px;

    font-weight: 800;

    line-height: 1;

    color: #ffad32;
}

.case-highlight span {

    display: block;

    margin-top: 7px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.12em;

    color: rgba(220, 228, 240, 0.38);
}


/* DESCRIPTION */

.case-description {

    max-width: 850px;

    margin: 0;

    font-size: 14px !important;

    line-height: 1.75 !important;

    color: rgba(220, 228, 240, 0.67);
}


/* METRICS */

.case-metrics {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 10px;

    margin-top: 27px;
}

.case-metrics > div {

    padding: 14px;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.055);
}

.case-metrics strong {

    display: block;

    margin-bottom: 5px;

    font-size: 18px;

    color: #ffb84d;
}

.case-metrics span {

    display: block;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.04em;

    color: rgba(220, 228, 240, 0.42);
}


/* DISCLAIMER */

.case-study-disclaimer {

    margin-top: 24px;

    text-align: center;

    font-size: 10px;

    line-height: 1.6;

    color: rgba(220, 228, 240, 0.3);
}


/* TABLET */

@media (max-width: 850px) {

    .client-case-card {

        grid-template-columns: 45px minmax(0, 1fr);

        padding: 30px;
    }

    .case-metrics {

        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .client-case-studies {

        padding: 65px 0 55px;
    }

    .case-studies-heading {

        margin-bottom: 35px;
    }

    .client-case-card {

        grid-template-columns: 1fr;

        gap: 8px;

        padding: 25px;

        border-radius: 16px;
    }

    .case-number {

        justify-content: flex-start;

        padding-top: 0;
    }

    .case-header {

        flex-direction: column;

        gap: 16px;
    }

    .case-highlight {

        text-align: left;

        font-size: 24px;
    }

    .case-metrics {

        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }

    .case-metrics > div {

        padding: 12px;
    }

}


/* ADTRIX SMOOTH CASE STUDY SCROLL */

html {
    scroll-behavior: smooth;
}

#client-case-studies {
    scroll-margin-top: 110px;
}


















/* ADTRIX HOME PAGE ROOFING BACKGROUND START */

/* =========================================================
   IMPORTANT:
   Everything below applies ONLY to index.html
   because index.html has: class="home-page"
========================================================= */

body.home-page .hero {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    isolation: isolate;
    display: flex;
    align-items: center;
}

/* Real roofing workers image */
body.home-page .hero::before {
    content: "";
    position: absolute !important;

    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;

    z-index: -3;

    background-image: url("assets/roofing-workers-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* Clear + cinematic look */
    filter:
        brightness(0.82)
        contrast(1.15)
        saturate(0.95);

    /* Dynamic slow movement */
    animation: adtrixHomeRoofMove 18s ease-in-out infinite alternate;

    will-change: transform;
}

/* Dark overlay for professional look */
body.home-page .hero::after {
    content: "";
    position: absolute !important;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 19, 0.92) 0%,
            rgba(4, 10, 19, 0.82) 30%,
            rgba(4, 10, 19, 0.55) 55%,
            rgba(4, 10, 19, 0.30) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 10, 19, 0.15) 0%,
            rgba(4, 10, 19, 0.65) 100%
        );
}

/* Keep home content above the image */
body.home-page .hero > * {
    position: relative !important;
    z-index: 5;
}

/* Cinematic zoom and movement */
@keyframes adtrixHomeRoofMove {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.05) translate3d(-1%, -0.5%, 0);
    }

    100% {
        transform: scale(1.09) translate3d(-2%, -1.5%, 0);
    }
}

/* Mobile home page only */
@media (max-width: 768px) {

    body.home-page .hero {
        min-height: 100svh !important;
    }

    body.home-page .hero::before {
        top: -5%;
        left: -25%;
        width: 150%;
        height: 110%;
        background-position: 68% center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    body.home-page .hero::before {
        animation: none !important;
    }
}

/* ADTRIX HOME PAGE ROOFING BACKGROUND END */





/* ADTRIX CLIENT STORIES CSS START */

.adtrix-client-stories {
    width: 100%;
    padding: 20px 24px 110px;
}

.adtrix-client-stories-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* MAIN STORY CARD */

.adtrix-story-card {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;

    padding: 50px 0;
    margin-bottom: 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.adtrix-story-card:last-of-type {
    margin-bottom: 0;
}


/* ALTERNATING LAYOUT */

.adtrix-story-reverse .adtrix-story-text {
    order: 2;
}

.adtrix-story-reverse .adtrix-story-video {
    order: 1;
}


/* STORY TEXT */

.adtrix-story-top {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 22px;
}

.adtrix-story-number {
    color: #e7ad52;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.adtrix-story-label {
    color: #8994a3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.adtrix-story-text h3 {
    max-width: 580px;

    margin: 0 0 24px;

    color: #f1f3f5;

    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.15;
}

.adtrix-story-text h3 span {
    color: #e7ad52;
}

.adtrix-story-text p {
    max-width: 590px;

    margin: 0 0 17px;

    color: #9ca8b7;

    font-size: 15px;
    line-height: 1.75;
}


/* RESULTS STATS */

.adtrix-story-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.adtrix-story-stats div {
    min-width: 120px;

    padding: 14px 16px;

    border: 1px solid rgba(231, 173, 82, 0.18);
    border-radius: 10px;

    background: rgba(231, 173, 82, 0.035);
}

.adtrix-story-stats strong {
    display: block;

    margin-bottom: 5px;

    color: #e7ad52;

    font-size: 21px;
    font-weight: 800;
}

.adtrix-story-stats span {
    color: #7e8998;

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* VIDEO */

.adtrix-story-video {
    width: 100%;

    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(12, 21, 35, 0.75);
}

.adtrix-story-video-label {
    padding: 5px 5px 11px;

    color: #e7ad52;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.adtrix-story-video video {
    display: block;

    width: 100%;
    height: auto;

    max-height: 320px;

    border-radius: 9px;

    background: #03070c;

    object-fit: contain;
}


/* MORE STORIES */

.adtrix-next-story {
    padding: 55px 20px 15px;

    text-align: center;
}

.adtrix-next-story span {
    display: block;

    margin-bottom: 12px;

    color: #e7ad52;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.adtrix-next-story p {
    max-width: 520px;

    margin: 0 auto;

    color: #7f8a98;

    font-size: 14px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 850px) {

    .adtrix-story-card {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 40px 0;
    }

    .adtrix-story-reverse .adtrix-story-text {
        order: 1;
    }

    .adtrix-story-reverse .adtrix-story-video {
        order: 2;
    }

    .adtrix-story-video {
        max-width: 620px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .adtrix-client-stories {
        padding: 10px 18px 70px;
    }

    .adtrix-story-card {
        gap: 28px;

        padding: 35px 0;
        margin-bottom: 20px;
    }

    .adtrix-story-text h3 {
        font-size: 30px;
    }

    .adtrix-story-text p {
        font-size: 14px;
    }

    .adtrix-story-stats {
        gap: 8px;
    }

    .adtrix-story-stats div {
        min-width: calc(33.333% - 6px);

        padding: 12px 9px;
    }

    .adtrix-story-stats strong {
        font-size: 18px;
    }

    .adtrix-story-stats span {
        font-size: 8px;
    }

    .adtrix-story-video {
        padding: 7px;
    }

    .adtrix-story-video video {
        max-height: 280px;
    }

}

/* ADTRIX CLIENT STORIES CSS END */




/* =========================================================
   MORE RESULTS SECTION
========================================================= */

.more-results-section {
    max-width: 920px;
    margin: 80px auto 55px;
    padding: 55px 45px;
    text-align: center;
    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(25, 35, 50, 0.72),
            rgba(10, 18, 30, 0.92)
        );

    border: 1px solid rgba(245, 181, 68, 0.20);
    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}

.more-results-label {
    display: inline-block;

    margin-bottom: 22px;
    padding: 8px 17px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;

    color: #f5b544;

    border: 1px solid rgba(245, 181, 68, 0.35);
    border-radius: 30px;
}

.more-results-section h2 {
    margin: 0 0 25px;

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;

    color: #f4f4f4;
}

.more-results-section h2 span {
    color: #f5b544;
}

.more-results-section p {
    max-width: 730px;

    margin: 0 auto 17px;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(235, 240, 247, 0.68);
}

.more-results-highlight {
    display: inline-block;

    margin: 30px auto 20px;
    padding: 13px 24px;

    font-size: 18px;
    font-weight: 800;

    color: #f5b544;

    border-left: 2px solid #f5b544;
    border-right: 2px solid #f5b544;
}

.more-results-coming {
    margin-top: 20px !important;

    font-size: 13px !important;
    letter-spacing: 0.5px;

    color: rgba(235, 240, 247, 0.48) !important;
}

.more-results-line {
    width: 80px;
    height: 2px;

    margin: 0 auto 35px;

    background: linear-gradient(
        90deg,
        transparent,
        #f5b544,
        transparent
    );
}

.bottom-line {
    margin: 35px auto 0;
}


/* MOBILE RESPONSIVE */

@media (max-width: 700px) {

    .more-results-section {
        margin: 55px 18px 40px;
        padding: 40px 22px;
    }

    .more-results-section h2 {
        font-size: 30px;
    }

    .more-results-section p {
        font-size: 14px;
        line-height: 1.7;
    }

    .more-results-highlight {
        font-size: 16px;
        padding: 12px 16px;
    }

}



/* =========================================================
   RESULTS → TESTIMONIALS CTA
========================================================= */

.testimonials-cta {
    margin-top: 35px;
    text-align: center;
}

.testimonials-cta-text {
    margin-bottom: 16px !important;
    font-size: 15px !important;
    color: rgba(235, 240, 247, 0.58) !important;
}

.testimonials-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 24px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;

    color: #111827;
    background: #f5b544;

    border: 1px solid #f5b544;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(245, 181, 68, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.testimonials-cta-button:hover {
    transform: translateY(-3px);

    background: #ffc45d;

    box-shadow:
        0 15px 40px rgba(245, 181, 68, 0.28);
}

.testimonials-cta-button span {
    font-size: 18px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.testimonials-cta-button:hover span {
    transform: translateX(5px);
}


/* MOBILE */

@media (max-width: 600px) {

    .testimonials-cta {
        margin-top: 28px;
    }

    .testimonials-cta-text {
        font-size: 13px !important;
    }

    .testimonials-cta-button {
        width: 100%;
        max-width: 300px;
        padding: 14px 18px;
    }

}




/* =========================================================
   ADTRIX — BOOK A CALL PROFESSIONAL LAYOUT UPGRADE
========================================================= */

.adtrix-contact-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;

    margin-top: 38px;
    padding-top: 30px;

    max-width: 590px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.adtrix-contact-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 17px 18px;

    background: rgba(20, 31, 48, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.adtrix-contact-step:hover {
    transform: translateX(6px);

    background: rgba(25, 38, 58, 0.85);

    border-color: rgba(245, 166, 35, 0.45);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);
}


.adtrix-step-number {
    min-width: 36px;

    color: #f5a623;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;

    padding-top: 2px;
}


.adtrix-step-content {
    flex: 1;
}


.adtrix-step-content h4 {
    margin: 0 0 6px;

    color: #f3f5f8;

    font-size: 15px;
    font-weight: 700;
}


.adtrix-step-content p {
    margin: 0;

    color: #98a4b6;

    font-size: 13px;
    line-height: 1.6;
}


/* Better spacing for the contact page hero */

.contact-hero,
.contact-hero-section,
.contact-hero-content {
    padding-bottom: 45px;
}


.contact-hero-content h1 {
    margin-bottom: 22px;
    line-height: 1.12;
}


.contact-hero-content > p {
    margin-bottom: 28px;
    max-width: 600px;
    line-height: 1.7;
}


/* Better button spacing */

.contact-actions,
.hero-actions,
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 28px;
    margin-bottom: 8px;
}


/* Mobile */

@media (max-width: 768px) {

    .adtrix-contact-steps {
        margin-top: 30px;
        padding-top: 24px;
    }

    .adtrix-contact-step {
        gap: 14px;
        padding: 15px;
    }

    .adtrix-step-number {
        min-width: 30px;
    }

    .contact-actions,
    .hero-actions,
    .contact-buttons {
        gap: 12px;
    }
}





/* ADTRIX HOME PAGE ROOFING BACKGROUND START */

/* =========================================================
   IMPORTANT:
   Everything below applies ONLY to index.html
   because index.html has: class="home-page"
========================================================= */

body.home-page .hero {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    isolation: isolate;
    display: flex;
    align-items: center;
}

/* Real roofing workers image */
body.home-page .hero::before {
    content: "";
    position: absolute !important;

    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;

    z-index: -3;

    background-image: url("assets/roofing-workers-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* Clear + cinematic look */
    filter:
        brightness(0.82)
        contrast(1.15)
        saturate(0.95);

    /* Dynamic slow movement */
    animation: adtrixHomeRoofMove 18s ease-in-out infinite alternate;

    will-change: transform;
}

/* Dark overlay for professional look */
body.home-page .hero::after {
    content: "";
    position: absolute !important;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 19, 0.92) 0%,
            rgba(4, 10, 19, 0.82) 30%,
            rgba(4, 10, 19, 0.55) 55%,
            rgba(4, 10, 19, 0.30) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 10, 19, 0.15) 0%,
            rgba(4, 10, 19, 0.65) 100%
        );
}

/* Keep home content above the image */
body.home-page .hero > * {
    position: relative !important;
    z-index: 5;
}

/* Cinematic zoom and movement */
@keyframes adtrixHomeRoofMove {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.05) translate3d(-1%, -0.5%, 0);
    }

    100% {
        transform: scale(1.09) translate3d(-2%, -1.5%, 0);
    }
}

/* Mobile home page only */
@media (max-width: 768px) {

    body.home-page .hero {
        min-height: 100svh !important;
    }

    body.home-page .hero::before {
        top: -5%;
        left: -25%;
        width: 150%;
        height: 110%;
        background-position: 68% center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    body.home-page .hero::before {
        animation: none !important;
    }
}

/* ADTRIX HOME PAGE ROOFING BACKGROUND END */



/* =========================================================
   ADTRIX — PROFESSIONAL CLIENT TESTIMONIAL CARDS
========================================================= */

.adtrix-client-testimonials {
    width: 100%;
    max-width: 1180px;

    margin: 80px auto 70px;
    padding: 20px 24px;
}


.adtrix-testimonials-heading {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}


.adtrix-section-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 16px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;

    color: #f5b544;

    border: 1px solid rgba(245,181,68,.3);

    border-radius: 30px;
}


.adtrix-testimonials-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.12;

    color: #f4f4f4;
}


.adtrix-testimonials-heading h2 span {
    color: #f5b544;
}


.adtrix-testimonials-heading p {
    margin: 0 auto;

    max-width: 620px;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(235,240,247,.62);
}


.adtrix-client-testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


.adtrix-client-testimonial-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 390px;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(25,36,52,.92),
            rgba(11,19,31,.96)
        );

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    box-shadow:
        0 18px 50px rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.adtrix-client-testimonial-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(245,181,68,.38);

    box-shadow:
        0 25px 60px rgba(0,0,0,.28);
}


.adtrix-client-top {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;
}


.adtrix-client-avatar {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f5b544,
            #d68d20
        );

    color: #101722;

    font-size: 19px;

    font-weight: 900;
}


.adtrix-client-info h3 {
    margin: 0 0 4px;

    font-size: 17px;

    color: #f4f5f7;
}


.adtrix-client-company {
    margin: 0 0 2px;

    font-size: 13px;

    font-weight: 600;

    color: #f5b544;
}


.adtrix-client-location {
    margin: 0;

    font-size: 12px;

    color: rgba(235,240,247,.48);
}


.adtrix-stars {
    margin-bottom: 17px;

    font-size: 14px;

    letter-spacing: 3px;

    color: #f5b544;
}


.adtrix-client-quote {
    position: relative;

    flex: 1;

    padding-left: 4px;
}


.adtrix-quote-mark {
    position: absolute;

    top: -18px;
    left: -3px;

    font-family: Georgia, serif;

    font-size: 55px;

    line-height: 1;

    color: rgba(245,181,68,.18);
}


.adtrix-client-quote p {
    margin: 0;

    padding-top: 18px;

    font-size: 14px;

    line-height: 1.75;

    color: rgba(235,240,247,.68);
}


.adtrix-verified-client {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 22px;

    padding-top: 17px;

    border-top:
        1px solid rgba(255,255,255,.07);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    color: rgba(235,240,247,.45);
}


.adtrix-verified-client span {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    color: #111820;

    background: #f5b544;

    font-size: 11px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .adtrix-client-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .adtrix-client-testimonial-card {
        min-height: auto;
    }

}


@media (max-width: 600px) {

    .adtrix-client-testimonials {
        margin: 50px auto;
        padding: 15px;
    }

    .adtrix-testimonials-heading {
        margin-bottom: 35px;
    }

    .adtrix-client-testimonial-card {
        padding: 23px;
    }

}


/* ADTRIX CLIENT STORIES SAFE FIX */

/* ADTRIX CLIENT STORIES SAFE FIX */

.client-stories-section {
    width: 100%;
    padding: 80px 0 100px;
}

.client-stories-container {
    width: min(1150px, 92%);
    margin: 0 auto;
}

.testimonial-story {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
    padding: 70px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.testimonial-story:last-child {
    border-bottom: none;
}

.story-number {
    color: #ffab1f;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.story-label {
    color: #8994a7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-story h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    margin: 0 0 25px;
}

.testimonial-story h2 span {
    color: #ffab1f;
}

.testimonial-story p {
    color: #9da8ba;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 0 18px;
}

.story-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.story-stats > div {
    min-width: 130px;
    padding: 17px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.025);
}

.story-stats strong {
    display: block;
    color: #ffab1f;
    font-size: 23px;
    margin-bottom: 5px;
}

.story-stats span {
    color: #7f8b9e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-highlight {
    display: inline-flex;
    flex-direction: column;
    margin-top: 25px;
    padding: 18px 28px;
    border: 1px solid rgba(255,171,31,0.3);
    border-radius: 14px;
    background: rgba(255,171,31,0.05);
}

.story-highlight strong {
    color: #ffab1f;
    font-size: 32px;
}

.story-highlight span {
    color: #8e99aa;
    font-size: 12px;
    margin-top: 4px;
}

.story-cta {
    margin-top: 25px;
    padding: 18px 20px;
    border-left: 3px solid #ffab1f;
    background: rgba(255,171,31,0.04);
    color: #b5bfce;
    line-height: 1.6;
}

.story-cta a {
    display: block;
    margin-top: 8px;
    color: #ffab1f;
    font-weight: 700;
    text-decoration: none;
}

.client-video {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
}

.video-label {
    color: #ffab1f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin: 3px 5px 12px;
}

.client-video video {
    display: block;
    width: 100%;
    max-height: 430px;
    border-radius: 12px;
    background: #05080d;
}

.client-video-missing {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 16px;
    color: #7f8b9e;
}

.client-video-missing span {
    font-size: 30px;
    color: #ffab1f;
    margin-bottom: 10px;
}

@media (max-width: 850px) {

    .testimonial-story {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 0;
    }

    .client-video {
        order: 2;
    }

    .story-content {
        order: 1;
    }

    .testimonial-story h2 {
        font-size: 34px;
    }

    .story-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 500px) {

    .story-stats {
        grid-template-columns: 1fr;
    }

    .client-stories-section {
        padding: 50px 0 70px;
    }

}
