@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --color-navy: #051e39;
    --color-teal: #089c8c;
    --color-text: #4a5568;
    --color-title: #051e39;
    --color-bg-light: #f4f7f6;
    --color-white: #ffffff;
    --radius-pill: 50px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
}

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

.tn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tn-flex { display: flex; }
.tn-justify-between { justify-content: space-between; }
.tn-items-center { align-items: center; }

.tn-icon-teal { color: var(--color-teal); }
.tn-bg-light { background-color: var(--color-bg-light); }

.tn-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}
.tn-btn-teal {
    background: var(--color-teal);
    color: var(--color-white);
}
.tn-btn-teal:hover { background: #078a7c; }
.tn-btn-navy {
    background: var(--color-navy);
    color: var(--color-white);
}
.tn-btn-navy:hover { background: #031427; }

/* Topbar */
.tn-topbar {
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 13px;
    padding: 10px 0;
}
.tn-topbar-left, .tn-topbar-right {
    display: flex;
    gap: 20px;
}
.tn-topbar-left span i, .tn-topbar-right span i {
    margin-right: 6px;
}

/* Header */
.tn-header {
    background: var(--color-white);
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}
.tn-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-title);
}
.tn-nav a:not(.tn-btn):hover {
    color: var(--color-teal);
}

/* Section Common */
.tn-section {
    padding: 100px 0;
}
.tn-section-subtitle {
    color: var(--color-teal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.tn-section-subtitle::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--color-teal);
}
.tn-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-title);
    line-height: 1.2;
    margin-bottom: 20px;
}
.tn-section-title span {
    color: var(--color-teal);
}
.tn-center-heading {
    text-align: center;
    margin-bottom: 50px;
}

/* Hero */
.tn-hero {
    position: relative;
    padding: 140px 0;
    background: url('../img/images/hero-new.jpg') no-repeat center center;
    background-size: cover;
    color: var(--color-white);
}
.tn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,30,57,0.95) 0%, rgba(5,30,57,0.4) 100%);
}
.tn-hero .tn-container {
    position: relative;
    z-index: 2;
}
.tn-hero-subtitle {
    color: var(--color-teal);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.tn-hero-subtitle::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--color-teal);
}
.tn-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
.tn-hero h1 span { color: var(--color-teal); }
.tn-hero p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 40px;
}
.tn-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}
.tn-play-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
}
.tn-play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.tn-hero-trusted {
    display: flex;
    align-items: center;
    gap: 15px;
}
.tn-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-navy);
    margin-left: -10px;
}
.tn-avatars img:first-child { margin-left: 0; }
.tn-trusted-text strong {
    display: block;
    font-size: 15px;
}
.tn-stars { color: #f59e0b; font-size: 12px; margin-right: 5px; }

/* About */
.tn-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.tn-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.tn-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(8,156,140,0.1);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.tn-feature h4 {
    font-size: 18px;
    color: var(--color-title);
    margin-bottom: 5px;
}
.tn-feature p { font-size: 14px; }
.tn-about-images { position: relative; }
.tn-img-main {
    width: 80%;
    border-radius: var(--radius-lg);
}
.tn-img-sub {
    position: absolute;
    width: 55%;
    right: 0;
    bottom: -30px;
    border-radius: var(--radius-lg);
    border: 8px solid var(--color-white);
}
.tn-about-badge {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}
.tn-badge-num {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1;
}
.tn-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-title);
}

/* Services */
.tn-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.tn-service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.tn-service-icon {
    font-size: 40px;
    color: var(--color-teal);
    margin-bottom: 20px;
}
.tn-service-card h4 {
    font-size: 20px;
    color: var(--color-title);
    margin-bottom: 10px;
}
.tn-service-card p { font-size: 14px; }
.tn-center-btn { text-align: center; }

/* Progress */
.tn-progress-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.tn-check-list {
    list-style: none;
    margin-top: 30px;
}
.tn-check-list li {
    font-weight: 500;
    color: var(--color-title);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tn-progress-right {
    background: var(--color-navy);
    padding: 50px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.tn-progress-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/images/cargo-plane-dark.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}
.tn-stat-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}
.tn-stat-box i {
    font-size: 24px;
    color: var(--color-teal);
    width: 50px; height: 50px;
    background: rgba(8,156,140,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tn-stat-box h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}
.tn-stat-box p {
    font-size: 13px;
    margin: 0;
    color: #cbd5e1;
}

/* Projects */
.tn-projects-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.tn-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tn-project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 300px;
}
.tn-project-card img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.tn-project-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(5,30,57,0.9), transparent);
    color: var(--color-white);
}
.tn-num { font-size: 12px; color: var(--color-teal); font-weight: 600; }
.tn-project-overlay h4 { font-size: 18px; margin-top: 5px; }

/* Process */
.tn-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    position: relative;
}
.tn-process-grid::before {
    content: '';
    position: absolute;
    top: 40px; left: 12%; right: 12%;
    height: 2px;
    border-top: 2px dashed rgba(8,156,140,0.3);
    z-index: 1;
}
.tn-process-step { position: relative; z-index: 2; }
.tn-step-icon {
    width: 80px; height: 80px;
    background: var(--color-teal);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    border: 8px solid var(--color-bg-light);
}
.tn-process-step h4 {
    font-size: 18px;
    color: var(--color-title);
    margin-bottom: 10px;
}
.tn-process-step p { font-size: 14px; }

/* Testimonial & Lower Stats */
.tn-testi-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.tn-testi-left {
    background: url('../img/images/worker-new.jpg') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}
.tn-testi-right {
    padding: 60px;
    color: var(--color-white);
}
.tn-quote {
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0;
    line-height: 1.6;
}
.tn-author h4 { font-size: 18px; margin-bottom: 5px; }
.tn-author p { color: var(--color-teal); font-size: 14px; margin-bottom: 20px;}
.tn-dots span {
    display: inline-block;
    width: 8px; height: 8px;
    background: #4a5568;
    border-radius: 50%;
    margin-right: 8px;
}
.tn-dots span.active { background: var(--color-teal); }

.tn-lower-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}
.tn-ls-icon {
    font-size: 30px;
    color: var(--color-navy);
    margin-bottom: 15px;
}
.tn-lower-stat h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-title);
    line-height: 1;
}
.tn-lower-stat p { font-size: 14px; font-weight: 500; margin-top: 5px;}

/* Team */
.tn-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tn-team-member { text-align: center; }
.tn-team-member img {
    width: 100%; height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}
.tn-team-info h4 { font-size: 20px; color: var(--color-title); margin-bottom: 5px; }
.tn-team-info p { color: var(--color-teal); font-size: 14px; margin-bottom: 10px; }
.tn-team-social i { color: #cbd5e1; margin: 0 5px; }

/* FAQ */
.tn-faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}
.tn-faq-img-box { position: relative; margin-top: 30px;}
.tn-faq-img-box img {
    width: 100%; height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.tn-faq-overlay-card {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--color-teal);
    color: var(--color-white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}
.tn-faq-overlay-card i { font-size: 30px; }
.tn-faq-item {
    background: var(--color-white);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-title);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Blog */
.tn-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.tn-blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 20px;
}
.tn-blog-card img {
    width: 100%; height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}
.tn-blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 15px;
}
.tn-tag {
    background: var(--color-bg-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}
.tn-blog-card h4 {
    font-size: 18px;
    color: var(--color-title);
    margin-bottom: 15px;
    line-height: 1.4;
}
.tn-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-title);
}
.tn-read-more i { margin-left: 5px; color: var(--color-teal); }

/* Newsletter */
.tn-newsletter-wrap {
    position: relative;
    z-index: 10;
    margin-bottom: -60px;
}
.tn-newsletter {
    background: var(--color-navy);
    padding: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tn-nl-text h3 {
    color: var(--color-white);
    font-size: 32px;
    line-height: 1.2;
}
.tn-nl-form { display: flex; gap: 10px; }
.tn-nl-form input {
    padding: 15px 25px;
    border-radius: var(--radius-pill);
    border: none;
    width: 350px;
    outline: none;
}

/* Footer */
.tn-footer {
    background: var(--color-bg-light);
    padding: 120px 0 40px;
}
.tn-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}
.tn-footer-brand p { margin: 20px 0; }
.tn-socials a {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--color-white);
    color: var(--color-navy);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}
.tn-socials a:hover { background: var(--color-teal); color: var(--color-white); }
.tn-footer h5 {
    font-size: 20px;
    color: var(--color-title);
    margin-bottom: 25px;
}
.tn-footer ul { list-style: none; }
.tn-footer ul li { margin-bottom: 12px; }
.tn-footer ul a { color: var(--color-text); transition: 0.3s; }
.tn-footer ul a:hover { color: var(--color-teal); }
.tn-footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    font-size: 14px;
}
.tn-footer-legal a { margin-left: 20px; }

/* Skyprorta Logistics reference refresh */
.tn-logo,
.tn-footer-brand {
    position: relative;
}

.tn-logo img,
.tn-footer-brand img {
    display: none !important;
}

.tn-logo::before,
.tn-footer-brand::before {
    content: "Skyprorta Logistics";
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 0;
}

.tn-footer-brand::before {
    margin-bottom: 18px;
}

.tn-logo::after,
.tn-footer-brand::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    border-radius: 50%;
    background: var(--color-teal);
    box-shadow: 0 0 0 6px rgba(8, 156, 140, 0.12);
    vertical-align: middle;
}

.tn-section-subtitle,
.tn-hero-subtitle {
    letter-spacing: 0;
}

.tn-header {
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 16px 40px rgba(5, 30, 57, 0.08);
}

.tn-nav a:not(.tn-btn) {
    padding: 8px 0;
}

.tn-hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 38px;
    border-bottom-right-radius: 38px;
    overflow: hidden;
}

.tn-hero::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 12%;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%;
    background: rgba(8, 156, 140, 0.16);
}

.tn-service-card,
.tn-blog-card,
.tn-faq-item,
.tn-team-member img {
    border-radius: 12px;
}

.tn-service-card,
.tn-blog-card {
    border: 1px solid #e8f0ef;
    box-shadow: 0 18px 45px rgba(5, 30, 57, 0.08);
}

.tn-service-icon,
.tn-ls-icon,
.tn-sb-icon {
    color: var(--color-teal);
}

.tn-progress-right,
.tn-testi-box,
.tn-newsletter {
    box-shadow: 0 24px 60px rgba(5, 30, 57, 0.18);
}

.tn-about-badge,
.tn-faq-overlay-card {
    box-shadow: 0 18px 40px rgba(8, 156, 140, 0.22);
}

.tn-btn {
    border: 0;
    min-height: 46px;
    justify-content: center;
    white-space: nowrap;
}

.tn-btn-teal {
    background: linear-gradient(135deg, #09b3a2, #087c89);
}

.tn-btn-navy {
    background: linear-gradient(135deg, #051e39, #063d5c);
}

@media (max-width: 1100px) {
    .tn-header .tn-flex {
        gap: 20px;
        align-items: flex-start;
    }

    .tn-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 16px 22px;
    }

    .tn-hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .tn-topbar .tn-flex,
    .tn-header .tn-flex,
    .tn-newsletter,
    .tn-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tn-topbar-left,
    .tn-topbar-right,
    .tn-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .tn-hero {
        min-height: auto;
        padding: 90px 0;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .tn-hero h1,
    .tn-section-title {
        font-size: 36px;
    }

    .tn-about,
    .tn-progress-wrap,
    .tn-testi-box,
    .tn-faq-wrap,
    .tn-footer-grid {
        grid-template-columns: 1fr;
    }

    .tn-services-grid,
    .tn-projects-grid,
    .tn-blog-grid,
    .tn-team-grid,
    .tn-lower-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tn-process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .tn-process-grid::before {
        display: none;
    }

    .tn-nl-form,
    .tn-nl-form input {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .tn-container {
        padding: 0 16px;
    }

    .tn-nav,
    .tn-hero-actions,
    .tn-nl-form,
    .tn-projects-head {
        flex-direction: column;
        align-items: stretch;
    }

    .tn-services-grid,
    .tn-projects-grid,
    .tn-blog-grid,
    .tn-team-grid,
    .tn-lower-stats,
    .tn-process-grid {
        grid-template-columns: 1fr;
    }

    .tn-hero h1,
    .tn-section-title {
        font-size: 31px;
    }

    .tn-section {
        padding: 70px 0;
    }

    .tn-testi-right,
    .tn-newsletter {
        padding: 30px 22px;
    }

    .tn-footer-legal a {
        margin: 0 16px 0 0;
    }
}

/* Real Skyprorta Logistics logo asset */
.tn-logo::before,
.tn-logo::after,
.tn-footer-brand::before,
.tn-footer-brand::after,
.swe-brand::before,
.swe-brand::after,
.swe-footer-brand::before,
.swe-footer-brand::after {
    content: none !important;
    display: none !important;
}

.tn-logo img,
.swe-brand img {
    display: block !important;
    width: clamp(150px, 18vw, 218px) !important;
    height: auto !important;
    max-height: 64px !important;
    object-fit: contain !important;
    box-sizing: border-box !important;
    padding: 8px 12px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 34px rgba(5, 30, 57, 0.10) !important;
}

.tn-footer-brand img,
.swe-footer-brand img {
    display: block !important;
    width: min(230px, 100%) !important;
    height: auto !important;
    max-height: 76px !important;
    object-fit: contain !important;
    margin-bottom: 20px !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 42px rgba(5, 30, 57, 0.12) !important;
}

@media (max-width: 560px) {
    .tn-logo img,
    .swe-brand img {
        width: 158px !important;
    }
}

/* UK cargo and courier refinements */
.tn-hero p {
    max-width: 620px;
}

.tn-hero-track {
    width: min(620px, 100%);
    margin: -26px 0 36px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(2, 12, 27, 0.24);
}

.tn-hero-track label {
    display: block;
    margin: 0 0 8px;
    color: #b9fff7;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.tn-hero-track div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.tn-hero-track input,
.tn-hero-track button {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    font: inherit;
}

.tn-hero-track input {
    width: 100%;
    padding: 0 18px;
    color: var(--color-navy);
    background: #fff;
    outline: none;
}

.tn-hero-track button {
    padding: 0 24px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #09b3a2, #087c89);
    cursor: pointer;
}

.tn-services-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tn-air-focus {
    background: #fff;
}

.tn-air-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 64px;
    align-items: center;
}

.tn-air-focus-media {
    position: relative;
}

.tn-air-focus-media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(5,30,57,.16);
}

.tn-air-focus-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(5,30,57,.94), rgba(8,156,140,.92));
    box-shadow: 0 18px 42px rgba(5,30,57,.24);
}

.tn-air-focus-copy p {
    margin-bottom: 22px;
}

.swe-translate-shell {
    left: 16px !important;
    right: auto !important;
    bottom: 18px !important;
}

.crc-chat-fallback {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9993;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #051e39, #089c8c);
    box-shadow: 0 20px 44px rgba(5,30,57,.24);
}

.crc-chat-fallback:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .tn-services-grid-six,
    .tn-air-focus-grid {
        grid-template-columns: 1fr;
    }

    .tn-air-focus-media img {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .tn-hero-track {
        margin-top: -16px;
    }

    .tn-hero-track div {
        grid-template-columns: 1fr;
    }

    .tn-hero-track button {
        width: 100%;
    }

    .tn-air-focus-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
        border-radius: 14px;
    }

    .crc-chat-fallback {
        right: 12px;
        bottom: 76px;
        min-height: 46px;
        padding: 0 14px;
        font-size: 13px;
    }
}

/* Mobile header and hero rescue pass */
@media (max-width: 760px) {
    .tn-topbar {
        padding: 8px 0;
        font-size: 12px;
    }

    .tn-topbar .tn-flex {
        gap: 8px;
    }

    .tn-topbar-left,
    .tn-topbar-right {
        gap: 8px;
        width: 100%;
    }

    .tn-topbar-left span,
    .tn-topbar-right span {
        line-height: 1.35;
    }

    .tn-topbar-left span:nth-child(3),
    .tn-topbar-right {
        display: none;
    }

    .tn-header {
        padding: 14px 0 16px;
        position: relative;
    }

    .tn-header .tn-flex {
        align-items: center;
        gap: 14px;
    }

    .tn-logo img {
        width: 150px !important;
        height: auto !important;
        max-height: 52px;
        object-fit: contain;
    }

    .tn-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
        font-size: 12px;
    }

    .tn-nav a:not(.tn-btn) {
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 6px;
        border: 1px solid #dce8ee;
        border-radius: 999px;
        background: #fff;
        text-align: center;
        white-space: nowrap;
    }

    .tn-nav .tn-btn {
        grid-column: 1 / -1;
        min-height: 44px;
        justify-content: center;
        padding: 12px 16px;
        margin-top: 2px;
        font-size: 13px;
    }

    .tn-hero {
        min-height: auto;
        padding: 56px 0 122px;
        background-position: center top;
        border-bottom-left-radius: 22px;
        border-bottom-right-radius: 22px;
    }

    .tn-hero::after {
        display: none;
    }

    .tn-hero-subtitle {
        align-items: flex-start;
        gap: 8px;
        font-size: 12px;
        line-height: 1.35;
        max-width: 340px;
    }

    .tn-hero h1 {
        max-width: 420px;
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.08;
        margin-bottom: 16px;
    }

    .tn-hero p {
        max-width: 430px;
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.65;
    }

    .tn-hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 430px;
        gap: 12px;
        margin-bottom: 18px;
    }

    .tn-hero-actions .tn-btn,
    .tn-play-btn {
        width: 100%;
        justify-content: center;
    }

    .tn-hero-track {
        max-width: 430px;
        margin: 0 0 22px;
    }

    .tn-hero-track div {
        grid-template-columns: 1fr;
    }

    .tn-hero-track button {
        width: 100%;
    }

    .tn-hero-trusted {
        max-width: 430px;
        align-items: flex-start;
    }

    .crc-chat-fallback {
        right: 12px;
        bottom: 18px;
        min-height: 46px;
        padding: 0 14px;
        font-size: 13px;
        box-shadow: 0 14px 34px rgba(5,30,57,0.24);
    }

    .swe-translate-shell {
        left: 12px;
        bottom: 18px;
        transform: scale(.92);
        transform-origin: left bottom;
    }
}

@media (max-width: 420px) {
    .tn-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tn-hero {
        padding-bottom: 138px;
    }

    .crc-chat-fallback span {
        display: none;
    }
}

/* Compact responsive header review */
.tn-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(8,156,140,0.24);
    border-radius: 50%;
    background: #ffffff;
    color: #051e39;
    box-shadow: 0 12px 26px rgba(5,30,57,0.10);
    cursor: pointer;
}

.tn-nav-toggle i {
    font-size: 18px;
    line-height: 1;
}

@media (min-width: 761px) {
    .tn-header .tn-nav {
        display: flex !important;
    }
}

@media (max-width: 760px) {
    .tn-header {
        position: sticky !important;
        top: 0;
        padding: 10px 0 !important;
    }

    .tn-header .tn-flex {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: center !important;
        gap: 12px !important;
    }

    .tn-logo img {
        width: 168px !important;
        max-height: 54px !important;
    }

    .tn-nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .tn-nav {
        grid-column: 1 / -1;
        display: none !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 8px !important;
        padding: 10px 0 4px;
        font-size: 13px !important;
    }

    .tn-header.is-nav-open .tn-nav {
        display: grid !important;
    }

    .tn-nav a:not(.tn-btn) {
        min-height: 42px !important;
        justify-content: flex-start !important;
        padding: 10px 14px !important;
        border: 1px solid #dce8ee !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        text-align: left !important;
    }

    .tn-nav .tn-btn {
        width: 100%;
        min-height: 46px !important;
        border-radius: 14px !important;
        margin-top: 2px !important;
    }
}

@media (max-width: 420px) {
    .tn-logo img {
        width: 154px !important;
    }
}

/* Branded fleet section */
.tn-fleet-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
    overflow: hidden;
}

.tn-fleet-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 34px;
}

.tn-fleet-head p {
    max-width: 720px;
    margin: 0;
    color: #5b6878;
    line-height: 1.8;
}

.tn-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tn-fleet-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(8,156,140,0.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(5,30,57,0.08);
}

.tn-fleet-card-wide,
.tn-fleet-card-packages {
    grid-column: span 2;
}

.tn-fleet-card-packages {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.tn-fleet-visual,
.tn-package-stack {
    position: relative;
    min-height: 230px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, #eef9fb 0%, #ffffff 58%, #e6eef3 58%, #d7e2e8 100%);
    overflow: hidden;
}

.tn-fleet-visual::before,
.tn-package-stack::before {
    content: "";
    position: absolute;
    inset: 20px 18px auto auto;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(8,156,140,0.10);
}

.tn-vehicle-road {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    height: 7px;
    background: linear-gradient(90deg, transparent, rgba(5,30,57,0.25), transparent);
}

.tn-truck-cab,
.tn-truck-trailer,
.tn-van-body,
.tn-car-body {
    position: absolute;
    bottom: 52px;
    box-shadow: 0 20px 34px rgba(5,30,57,0.16);
}

.tn-truck-cab {
    right: 35px;
    width: 118px;
    height: 92px;
    border-radius: 16px 18px 10px 8px;
    background: linear-gradient(135deg, #063d5c, #051e39);
}

.tn-truck-window {
    position: absolute;
    top: 17px;
    right: 14px;
    width: 50px;
    height: 32px;
    border-radius: 8px 12px 6px 6px;
    background: linear-gradient(135deg, #c9f7ff, #ffffff);
}

.tn-truck-light {
    position: absolute;
    right: 8px;
    bottom: 20px;
    width: 10px;
    height: 14px;
    border-radius: 999px;
    background: #12b9aa;
}

.tn-truck-trailer {
    left: 28px;
    right: 132px;
    height: 112px;
    border-radius: 16px 8px 8px 16px;
    border: 3px solid #dce8ee;
    background: #ffffff;
}

.tn-truck-trailer img {
    position: absolute;
    top: 28px;
    left: 24px;
    width: min(210px, 60%);
    height: auto;
}

.tn-truck-trailer span {
    position: absolute;
    left: 24px;
    bottom: 18px;
    color: #089c8c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tn-van-body {
    left: 28px;
    right: 28px;
    height: 104px;
    border-radius: 20px 26px 12px 12px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #063d5c 58%, #051e39 100%);
    border: 3px solid #dce8ee;
}

.tn-van-window {
    position: absolute;
    right: 24px;
    top: 18px;
    width: 58px;
    height: 34px;
    border-radius: 10px 16px 8px 8px;
    background: linear-gradient(135deg, #d9fbff, #ffffff);
}

.tn-van-body img {
    position: absolute;
    left: 22px;
    top: 30px;
    width: 132px;
    max-width: 50%;
    height: auto;
}

.tn-car-body {
    left: 34px;
    right: 34px;
    height: 76px;
    border-radius: 42px 50px 18px 18px;
    background: linear-gradient(135deg, #089c8c, #051e39);
}

.tn-car-window {
    position: absolute;
    top: -22px;
    left: 72px;
    width: 96px;
    height: 46px;
    border-radius: 38px 38px 8px 8px;
    background: linear-gradient(135deg, #d9fbff, #ffffff);
    border: 5px solid #063d5c;
}

.tn-car-body strong {
    position: absolute;
    left: 26px;
    top: 25px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .08em;
}

.tn-wheel {
    position: absolute;
    bottom: 34px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 8px solid #051e39;
    background: #ffffff;
    box-shadow: inset 0 0 0 5px #12b9aa;
}

.tn-wheel-front { right: 52px; }
.tn-wheel-mid { right: 154px; }
.tn-wheel-back { left: 66px; }
.tn-fleet-car .tn-wheel-front { right: 58px; }
.tn-fleet-car .tn-wheel-back { left: 58px; }
.tn-fleet-van .tn-wheel-front { right: 58px; }
.tn-fleet-van .tn-wheel-back { left: 58px; }

.tn-package-stack {
    min-height: 260px;
    background:
        linear-gradient(135deg, rgba(5,30,57,0.92), rgba(6,61,92,0.84)),
        linear-gradient(180deg, #eef9fb, #ffffff);
}

.tn-container-box,
.tn-parcel {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.tn-container-box-main {
    left: 26px;
    right: 26px;
    bottom: 34px;
    height: 118px;
    border: 3px solid rgba(255,255,255,0.24);
    background: repeating-linear-gradient(90deg, #ffffff 0 28px, #eef6f8 28px 31px);
}

.tn-container-box-main img {
    position: absolute;
    left: 24px;
    top: 34px;
    width: 190px;
    max-width: 70%;
    height: auto;
}

.tn-parcel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #051e39;
    background: #d7f3ef;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
}

.tn-parcel-a { left: 40px; top: 34px; width: 76px; height: 64px; }
.tn-parcel-b { right: 44px; top: 44px; width: 86px; height: 72px; background: #ffffff; }
.tn-parcel-c { right: 128px; top: 74px; width: 68px; height: 54px; background: #12b9aa; color: #ffffff; }

.tn-fleet-copy {
    padding: 18px 4px 2px;
}

.tn-fleet-copy span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #089c8c;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tn-fleet-copy h3 {
    margin: 0 0 10px;
    color: #051e39;
    font-size: 22px;
    line-height: 1.2;
}

.tn-fleet-copy p {
    margin: 0;
    color: #5b6878;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .tn-fleet-head,
    .tn-fleet-card-packages {
        grid-template-columns: 1fr;
    }

    .tn-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tn-fleet-card-wide,
    .tn-fleet-card-packages {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .tn-fleet-grid {
        grid-template-columns: 1fr;
    }

    .tn-fleet-head {
        align-items: start;
    }

    .tn-fleet-visual,
    .tn-package-stack {
        min-height: 210px;
    }

    .tn-truck-trailer {
        left: 18px;
        right: 112px;
    }

    .tn-truck-cab {
        right: 20px;
        width: 98px;
    }

    .tn-truck-trailer img {
        width: 142px;
        left: 16px;
    }

    .tn-truck-trailer span {
        display: none;
    }

    .tn-fleet-copy h3 {
        font-size: 20px;
    }
}

.tn-fleet-photo-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.tn-fleet-photo-row figure {
    min-width: 0;
    margin: 0;
    border: 1px solid rgba(8,156,140,0.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5,30,57,0.08);
    overflow: hidden;
}

.tn-fleet-photo-row img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: contain;
    padding: 18px;
    background: linear-gradient(180deg, #eef9fb, #ffffff);
}

.tn-fleet-photo-row figcaption {
    padding: 12px 16px 16px;
    color: #051e39;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

@media (max-width: 760px) {
    .tn-fleet-photo-row {
        grid-template-columns: 1fr;
    }

    .tn-fleet-photo-row img {
        height: 190px;
    }
}

/* Real branded fleet photo layout */
.tn-fleet-showcase {
    display: grid;
    gap: 20px;
}

.tn-fleet-feature,
.tn-fleet-photo-card {
    min-width: 0;
    border: 1px solid rgba(8,156,140,0.14);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(5,30,57,0.08);
    overflow: hidden;
}

.tn-fleet-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: stretch;
}

.tn-fleet-feature img,
.tn-fleet-photo-card img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.tn-fleet-feature img {
    height: 420px;
}

.tn-fleet-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.tn-fleet-feature-copy span,
.tn-fleet-photo-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #089c8c;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tn-fleet-feature-copy h3,
.tn-fleet-photo-card h3 {
    margin: 0;
    color: #051e39;
    font-weight: 800;
    line-height: 1.22;
}

.tn-fleet-feature-copy h3 {
    margin-bottom: 14px;
    font-size: clamp(26px, 3vw, 38px);
}

.tn-fleet-feature-copy p {
    margin: 0;
    color: #5b6878;
    line-height: 1.8;
}

.tn-fleet-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.tn-fleet-photo-card img {
    height: 230px;
}

.tn-fleet-photo-card div {
    padding: 18px;
}

.tn-fleet-photo-card h3 {
    font-size: 20px;
}

.tn-fleet-photo-card-wide {
    grid-column: span 2;
}

.tn-fleet-photo-card-wide img {
    height: 260px;
}

@media (max-width: 1100px) {
    .tn-fleet-feature {
        grid-template-columns: 1fr;
    }

    .tn-fleet-feature img {
        height: 380px;
    }

    .tn-fleet-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .tn-fleet-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .tn-fleet-feature-copy {
        padding: 24px;
    }

    .tn-fleet-feature img,
    .tn-fleet-photo-card img,
    .tn-fleet-photo-card-wide img {
        height: 240px;
    }

    .tn-fleet-photo-grid {
        grid-template-columns: 1fr;
    }

    .tn-fleet-photo-card-wide {
        grid-column: auto;
    }
}
