:root {
    --service-primary: #0d117b;
    --service-primary-dark: #050733;
    --service-accent: #d4a03c;
    --service-accent-dark: #b8872e;
    --service-text: #3a3a4a;
    --service-muted: #6b7280;
    --service-light: #f8f9fa;
    --service-border: #e5e7eb;
}

.tt-service-page {
    background: #fff;
    color: var(--service-text);
}

/* =========================
   HERO
========================= */

.tt-service-hero {
    min-height: 690px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--service-primary-dark);
}

.tt-service-hero-image {
    position: absolute;
    inset: 0;
}

.tt-service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: serviceZoom 14s ease-in-out infinite alternate;
}

.tt-service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 51, .97) 0%,
            rgba(5, 7, 51, .88) 35%,
            rgba(5, 7, 51, .52) 65%,
            rgba(5, 7, 51, .20) 100%
        );
}

.tt-service-hero-content {
    position: relative;
    z-index: 2;
    padding: 150px 0 170px;
}

.tt-service-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;

    color: var(--service-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.tt-service-eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--service-accent);
}

.tt-service-hero h1 {
    max-width: 780px;
    margin: 0 0 25px;

    color: #fff;
    font-family: var(--tt-font-display);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 1;
}

.tt-service-hero h1 span {
    color: var(--service-accent);
    font-style: italic;
}

.tt-service-description {
    max-width: 620px;
    margin-bottom: 32px;

    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.8;
}

.tt-service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tt-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 14px 23px;
    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: .3s ease;
}

.tt-service-btn-primary {
    color: #fff;
    background: var(--service-accent);
    box-shadow: 0 10px 30px rgba(212,160,60,.22);
}

.tt-service-btn-primary:hover {
    color: #fff;
    background: var(--service-accent-dark);
    transform: translateY(-3px);
}

.tt-service-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

.tt-service-btn-outline:hover {
    color: #fff;
    border-color: var(--service-accent);
    background: rgba(212,160,60,.12);
}

/* =========================
   TRUST BAR
========================= */

.tt-service-trust {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;

    background: rgba(5,7,51,.62);
    border-top: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
}

.tt-service-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.tt-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 19px 25px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.tt-trust-item:last-child {
    border-right: 0;
}

.tt-trust-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: var(--service-accent);
    background: rgba(212,160,60,.12);
}

.tt-trust-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.tt-trust-item small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

/* =========================
   INTRO
========================= */

.tt-service-intro {
    padding: 100px 0;
}

.tt-service-label {
    margin-bottom: 13px;

    color: var(--service-accent-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.tt-service-intro h2 {
    max-width: 760px;
    margin-bottom: 20px;

    color: var(--tt-dark);
    font-family: var(--tt-font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.08;
}

.tt-service-intro h2 span {
    color: var(--service-primary);
}

.tt-service-intro p {
    max-width: 720px;
    margin: 0;

    color: var(--service-muted);
    font-size: 16px;
    line-height: 1.85;
}

/* =========================
   FEATURES
========================= */

.tt-service-features {
    padding: 100px 0;
    background: var(--service-light);
}

.tt-service-heading {
    margin-bottom: 45px;
}

.tt-service-heading h2 {
    max-width: 700px;
    margin: 0;

    color: var(--tt-dark);
    font-family: var(--tt-font-display);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 400;
}

.tt-feature-card {
    height: 100%;
    padding: 30px;

    background: #fff;
    border: 1px solid var(--service-border);
    border-radius: 16px;

    box-shadow: 0 2px 8px rgba(0,0,0,.03);

    transition: .35s ease;
}

.tt-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212,160,60,.45);
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.tt-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--service-primary);
    background: rgba(13,17,123,.07);

    font-size: 20px;

    transition: .3s ease;
}

.tt-feature-card:hover .tt-feature-icon {
    color: #fff;
    background: var(--service-primary);
    transform: rotate(-4deg);
}

.tt-feature-card h3 {
    margin-bottom: 9px;
    color: var(--tt-dark);
    font-size: 18px;
    font-weight: 700;
}

.tt-feature-card p {
    margin: 0;
    color: var(--service-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   PROCESS
========================= */

.tt-service-process {
    padding: 100px 0;
}

.tt-process-card {
    height: 100%;
    padding: 25px 30px;
    border-left: 1px solid var(--service-border);
}

.tt-process-number {
    margin-bottom: 22px;

    color: var(--service-accent);
    font-family: var(--tt-font-display);
    font-size: 48px;
    line-height: 1;
}

.tt-process-card h3 {
    margin-bottom: 10px;
    color: var(--tt-dark);
    font-size: 18px;
}

.tt-process-card p {
    margin: 0;
    color: var(--service-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   CTA
========================= */

.tt-service-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: var(--service-primary-dark);
}

.tt-service-cta::before {
    content: "";

    position: absolute;
    width: 450px;
    height: 450px;

    right: -180px;
    top: -250px;

    border-radius: 50%;
    background: rgba(212,160,60,.09);
}

.tt-service-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tt-service-cta h2 {
    max-width: 700px;
    margin: 0 auto 16px;

    color: #fff;
    font-family: var(--tt-font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;
}

.tt-service-cta p {
    max-width: 620px;
    margin: 0 auto 30px;

    color: rgba(255,255,255,.65);
    line-height: 1.8;
}

@keyframes serviceZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@media(max-width: 767px) {

    .tt-service-hero {
        min-height: 730px;
    }

    .tt-service-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5,7,51,.96),
                rgba(5,7,51,.72)
            );
    }

    .tt-service-hero-content {
        padding: 130px 20px 190px;
    }

    .tt-service-hero h1 {
        font-size: 48px;
    }

    .tt-service-description {
        font-size: 14px;
    }

    .tt-service-trust-grid {
        grid-template-columns: 1fr;
    }

    .tt-trust-item {
        padding: 10px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .tt-trust-item:last-child {
        border-bottom: 0;
    }

    .tt-service-intro,
    .tt-service-features,
    .tt-service-process {
        padding: 70px 0;
    }

    .tt-process-card {
        border-left: 0;
        border-top: 1px solid var(--service-border);
        padding: 25px 0;
    }
}