:root {
    --page-bg: #f6f8fb;
    --page-surface: #ffffff;
    --page-ink: #111827;
    --page-muted: #64748b;
    --page-line: #e5eaf2;
    --page-blue: #2b6cb0;
    --page-green: #38a169;
    --page-orange: #f59e0b;
    --page-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    --blue: var(--page-blue);
    --dark: var(--page-ink);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: var(--page-ink);
    background: var(--page-bg);
    overflow-x: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 44%, rgba(43, 108, 176, 0.12), transparent 28%),
        rgba(246, 248, 251, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.42s ease, visibility 0.42s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-loader-icon {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--page-blue);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(43, 108, 176, 0.26);
    animation: loaderPinFloat 1.05s ease-in-out infinite;
}

.page-loader-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 22px;
    height: 7px;
    border-radius: 999px;
    background: rgba(43, 108, 176, 0.22);
    transform: translateX(-50%);
    animation: loaderShadowPulse 1.05s ease-in-out infinite;
}

.page-loader-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    min-height: 100vh;
    overflow: hidden;
}

.site-header {
    position: absolute;
    top: 22px;
    left: 50%;
    right: auto;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(calc(100% - 48px), 1160px);
    margin: 0 auto;
    padding: 12px 14px 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-50%);
    animation: pageFadeDown 0.62s ease both;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.site-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--page-blue);
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0;
    flex: 0 0 auto;
}

.site-logo-mark svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-logo-text {
    font-size: 17px;
    letter-spacing: 0;
}

.site-menu-toggle {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.site-menu-toggle span {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 8px));
}

.site-menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 8px));
}

body.site-menu-open .site-menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.site-menu-open .site-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.4);
}

body.site-menu-open .site-menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: 0;
}

.site-nav a {
    position: relative;
    color: #1a202c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 11px 12px;
    border-radius: 10px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
}

.site-nav a:hover {
    color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav a.is-active {
    color: var(--blue);
}

.site-nav a.site-nav-cta {
    margin-left: 6px;
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(43, 108, 176, 0.24);
}

.site-nav a.site-nav-cta::after {
    display: none;
}

.site-nav a.site-nav-cta:hover {
    background: #1f4f8a;
    color: #ffffff;
}

.hero {
    min-height: 92vh;
    display: grid;
    align-items: center;
    padding: 132px 24px 64px;
    background:
        linear-gradient(90deg, rgba(12, 20, 33, 0.84), rgba(12, 20, 33, 0.38)),
        url("https://images.unsplash.com/photo-1548695607-9c73430ba065?q=80&w=1600&auto=format&fit=crop") center / cover no-repeat;
    color: #ffffff;
}

.hero-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 440px);
    gap: 44px;
    align-items: center;
}

.hero-inner-wide {
    grid-template-columns: minmax(0, 780px);
}

.eyebrow {
    margin: 0 0 16px;
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
    animation: pageFadeUp 0.72s ease 0.08s both;
}

.hero-copy {
    max-width: 650px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.65;
    animation: pageFadeUp 0.72s ease 0.18s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    animation: pageFadeUp 0.72s ease 0.28s both;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--page-blue);
    box-shadow: 0 16px 34px rgba(43, 108, 176, 0.32);
}

.btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
}

.tracking-lookup {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero .tracking-lookup,
.tracking-panel {
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--page-ink);
    box-shadow: var(--page-shadow);
    animation: pageFadeUp 0.72s ease 0.26s both;
}

.lookup-title {
    font-size: 22px;
    font-weight: 800;
}

.lookup-subtitle {
    margin-top: 6px;
    color: var(--page-muted);
    font-size: 14px;
    line-height: 1.5;
}

.tracking-input-row {
    display: flex;
    gap: 10px;
}

.tracking-input {
    min-width: 0;
    flex: 1;
    height: 52px;
    border: 1px solid var(--page-line);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--page-ink);
    background: #f8fafc;
    font: inherit;
    font-weight: 700;
    text-transform: uppercase;
    outline: none;
}

.tracking-input:focus {
    border-color: var(--page-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.12);
}

.tracking-submit {
    height: 52px;
    border: 0;
    border-radius: 14px;
    padding: 0 20px;
    color: #ffffff;
    background: var(--page-blue);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.tracking-submit-loader {
    display: none;
    gap: 4px;
}

.tracking-submit-loader span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffffff;
}

.tracking-input-error {
    min-height: 18px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
}

.stats-ribbon {
    width: min(1160px, calc(100% - 32px));
    margin: -34px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--page-line);
    border-radius: 18px;
    background: var(--page-line);
    box-shadow: var(--page-shadow);
    animation: pageFadeUp 0.7s ease 0.34s both;
}

.stat {
    padding: 24px;
    background: #ffffff;
}

.stat-value {
    color: var(--page-blue);
    font-size: 28px;
    font-weight: 800;
}

.stat-label {
    margin-top: 6px;
    color: var(--page-muted);
    font-size: 14px;
}

.section {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0;
    animation: pageFadeUp 0.72s ease both;
}

.section-head {
    max-width: 700px;
    margin-bottom: 32px;
}

.section h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-subtitle {
    margin: 14px 0 0;
    color: var(--page-muted);
    font-size: 17px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.feature-card,
.review-card,
.value-card {
    border: 1px solid var(--page-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.feature-card {
    display: grid;
    gap: 0;
}

.feature-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--page-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.feature-image-wrap {
    width: 100%;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.feature-copy {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.feature-card h3,
.step h3,
.review-card h3 {
    margin: 0;
    font-size: 18px;
}

.feature-card p,
.step p,
.review-card p,
.value-card p {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.65;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step {
    padding-top: 20px;
    border-top: 2px solid var(--page-blue);
}

.step-number {
    color: var(--page-orange);
    font-size: 13px;
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.split-media {
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
}

.split-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.value-card {
    padding: 30px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    color: #334155;
    line-height: 1.5;
}

.check-list li::before {
    content: "\2713";
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--page-green);
    font-size: 13px;
    font-weight: 800;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.review-card {
    padding: 28px;
    border: 1px solid var(--page-line);
    border-radius: 18px;
    background: #ffffff;
    display: grid;
    gap: 18px;
}

.review-card .review-body {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    max-height: calc(1.65em * 3);
    min-height: calc(1.65em * 3);
}

.review-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-card > .review-meta,
.review-card-footer .review-meta {
    display: grid;
    gap: 4px;
}

.review-card h3 {
    margin: 0;
    font-size: 16px;
}

.review-card .review-role {
    margin: 0;
    color: var(--page-muted);
    font-size: 14px;
}

.review-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--page-blue);
    font-weight: 700;
    cursor: pointer;
}

.review-card-action.is-hidden {
    display: none;
}

.review-card-action:hover {
    text-decoration: underline;
}


.review-card-skeleton {
    pointer-events: none;
}

.skeleton-line {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eef6;
}

.skeleton-line::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    animation: skeletonShimmer 1.35s ease-in-out infinite;
}

.skeleton-stars {
    width: 118px;
    height: 18px;
}

.skeleton-body {
    width: 100%;
    height: 18px;
}

.skeleton-body-short {
    width: 76%;
}

.skeleton-name {
    width: 150px;
    height: 18px;
}

.skeleton-role {
    width: 220px;
    max-width: 70vw;
    height: 14px;
}

.testimonials-empty,
.testimonials-error {
    grid-column: 1 / -1;
    padding: 34px 26px;
    border: 1px solid var(--page-line);
    border-radius: 16px;
    background: #ffffff;
    color: var(--page-muted);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    text-align: center;
    font-weight: 700;
}

.testimonials-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.testimonials-empty-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: var(--page-blue);
    font-size: 20px;
    line-height: 1;
}

.testimonials-empty h3 {
    margin: 4px 0 0;
    color: var(--page-ink);
    font-size: 20px;
}

.testimonials-empty p {
    max-width: 460px;
    margin: 0;
    color: var(--page-muted);
    line-height: 1.6;
}

.testimonials-error {
    border-color: #fecaca;
    color: #b91c1c;
    background: #fff7f7;
}
.review-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.66);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.review-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.review-modal-dialog {
    width: min(720px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    position: relative;
}

.review-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: transparent;
    color: var(--page-muted);
    font-size: 24px;
    cursor: pointer;
}

.review-modal h3 {
    margin: 0 0 14px;
}

.review-modal p {
    margin: 0 0 18px;
    color: var(--page-muted);
    line-height: 1.75;
}

.review-modal-meta {
    color: var(--page-muted);
    font-size: 15px;
}

.cta-band {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto 70px;
    padding: 42px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #17324f, #2b6cb0 62%, #38a169);
    animation: pageFadeUp 0.72s ease both;
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.cta-band p {
    max-width: 680px;
    color: #dbeafe;
    line-height: 1.7;
}

.page-hero {
    padding: 150px 24px 88px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(12, 20, 33, 0.86), rgba(12, 20, 33, 0.42)),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600&auto=format&fit=crop") center / cover no-repeat;
}

.page-hero-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.about-page-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 24px 34px;
    text-align: center;
}

..about-page-hero .page-hero-inner {
    width: min(900px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-page-hero h1,
.about-page-hero p {
    margin-inline: auto;
}

.page-hero p {
    max-width: 720px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.65;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.about-copy {
    color: var(--page-muted);
    font-size: 17px;
    line-height: 1.75;
}

.about-values {
    max-width: 900px;
}

.metrics {
    display: grid;
    gap: 14px;
}

.metric-card {
    padding: 22px;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #ffffff;
}

.metric-card strong {
    display: block;
    color: var(--page-blue);
    font-size: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    align-items: start;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    align-items: start;
    padding: 30px;
    border: 1px solid var(--page-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-panel-copy {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.contact-panel-copy p {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.65;
}

.contact-form.contact-panel-form {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.quote-form-fullwidth {
    grid-template-columns: 1fr;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--page-ink);
    font-size: 14px;
    font-weight: 800;
}

.contact-form small {
    color: var(--page-muted);
    font-size: 12px;
    font-weight: 700;
}

.quote-form {
    gap: 24px;
}

.quote-form-section {
    display: grid;
    gap: 16px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.quote-form-section legend {
    margin-bottom: 16px;
    color: var(--page-ink);
    font-size: 20px;
    font-weight: 800;
}

.quote-form-grid {
    display: grid;
    gap: 16px;
}

.quote-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--page-line);
    border-radius: 14px;
    padding: 14px 15px;
    color: var(--page-ink);
    background: #f8fafc;
    font: inherit;
    font-weight: 600;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input {
    height: 52px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--page-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.12);
}

.contact-form .btn {
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.quote-form-status {
    min-height: 20px;
    color: var(--page-muted);
    font-size: 14px;
    font-weight: 800;
}

.quote-form-status:empty {
    display: none;
}

.quote-form-status-success,
.quote-form-status-error {
    padding: 14px 16px;
    border-radius: 8px;
}

.quote-form-status-success {
    border: 1px solid #bbf7d0;
    color: #15803d;
    background: #f0fdf4;
}

.quote-form-status-error {
    border: 1px solid #fecaca;
    color: #b91c1c;
    background: #fff7f7;
}
.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-detail-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    color: var(--page-ink);
    background: #f8fafc;
    font-weight: 800;
}

.contact-detail-card[hidden] {
    display: none;
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--page-blue);
    background: transparent;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.contact-label {
    color: var(--page-muted);
    font-size: 13px;
    font-weight: 700;
}

.contact-value {
    color: var(--page-ink);
    font-size: 16px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.legal-content {
    max-width: 900px;
    color: var(--page-muted);
    font-size: 16px;
    line-height: 1.75;
}

.legal-content h2 {
    margin: 34px 0 10px;
    color: var(--page-ink);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.16;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 16px;
}

.legal-content a {
    color: var(--page-blue);
    font-weight: 800;
}

.legal-updated {
    color: var(--page-blue);
    font-weight: 800;
}

.site-footer-main {
    background: #0f172a;
    color: #cbd5e1;
    padding: 34px 24px;
    animation: pageFadeUp 0.72s ease both;
}

.footer-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.footer-summary p {
    margin: 8px 0;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-copyright {
    width: min(1160px, 100%);
    margin: 26px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(203, 213, 225, 0.18);
    color: #cbd5e1;
    font-size: 14px;
}

@media (max-width: 980px) {
    .hero-inner,
    .split,
    .about-grid,
    .contact-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .steps,
    .stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {
    .site-header {
        top: 0;
        left: 50%;
        right: auto;
        width: 100%;
        padding: 12px 16px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        background: #ffffff;
        overflow: visible;
    }

    .site-menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    body.site-menu-open .site-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        animation: menuSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .site-nav a {
        width: 100%;
        padding: 13px 12px;
        border-radius: 10px;
        transition: all 0.2s ease;
    }

    body.site-menu-open .site-nav a {
        animation: menuItemSlide 0.4s ease backwards;
    }

    body.site-menu-open .site-nav a:nth-child(1) {
        animation-delay: 0.05s;
    }

    body.site-menu-open .site-nav a:nth-child(2) {
        animation-delay: 0.1s;
    }

    body.site-menu-open .site-nav a:nth-child(3) {
        animation-delay: 0.15s;
    }

    body.site-menu-open .site-nav a:nth-child(4) {
        animation-delay: 0.2s;
    }

    body.site-menu-open .site-nav a:nth-child(5) {
        animation-delay: 0.25s;
    }

    body.site-menu-open .site-nav a:nth-child(6) {
        animation-delay: 0.3s;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a.is-active {
        color: var(--blue);
        font-weight: 700;
    }

    .site-nav a.site-nav-cta {
        margin-left: 0;
        margin-top: 4px;
        text-align: center;
        box-shadow: 0 8px 18px rgba(43, 108, 176, 0.2);
    }

    .hero {
        min-height: auto;
        padding: 116px 20px 58px;
    }

    .hero-inner {
        gap: 28px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .tracking-submit,
    .tracking-input {
        width: 100%;
    }

    .section {
        width: min(100% - 28px, 1160px);
        padding: 64px 0;
    }

    .stats-ribbon {
        width: min(100% - 28px, 1160px);
        margin-top: -18px;
        border-radius: 14px;
    }

    .stat {
        padding: 16px 18px;
    }

    .stat-value {
        font-size: 24px;
    }

    .cta-band {
        width: min(100% - 28px, 1160px);
        padding: 30px 24px;
    }

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

    .footer-links {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .feature-grid,
    .steps,
    .reviews {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .review-card,
    .value-card,
    .metric-card,
    .contact-panel,
    .contact-form {
        padding: 22px;
    }

    .contact-panel-form {
        padding: 0;
    }

    .split-media,
    .split-media img {
        min-height: 300px;
    }

    .page-hero {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .page-hero h1 {
        width: min(900px, 100%);
        margin: 0 auto;
    }

    .about-page-hero {
        min-height: 350px;
        padding: 88px 18px 28px;
    }

    .about-copy {
        font-size: 16px;
    }

    .contact-form .btn {
        width: 100%;
    }

    .quote-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .site-logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 12px;
    }

    .site-logo-text {
        font-size: 15px;
    }

    .site-menu-toggle {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .hero {
        padding: 104px 16px 48px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.03;
    }

    .hero-copy,
    .section-subtitle,
    .cta-band p {
        font-size: 15px;
        line-height: 1.65;
    }

    .stats-ribbon {
        grid-template-columns: 1fr 1fr;
        width: min(100% - 24px, 1160px);
        margin-top: -14px;
    }

    .stat {
        padding: 14px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
        line-height: 1.35;
    }

    .section {
        width: min(100% - 24px, 1160px);
        padding: 52px 0;
    }

    .section-head {
        margin-bottom: 24px;
    }

    .cta-band {
        width: min(100% - 24px, 1160px);
        margin-bottom: 52px;
        padding: 26px 20px;
        border-radius: 18px;
    }

    .site-footer-main {
        padding: 30px 18px;
    }

    .footer-inner {
        gap: 16px;
    }

    .footer-links {
        gap: 14px;
    }
}

@media (max-width: 380px) {
    .site-logo-text {
        font-size: 14px;
    }

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

@keyframes skeletonShimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes menuSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuItemSlide {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFadeDown {
    0% {
        opacity: 0;
        transform: translate(-50%, -14px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes loaderPinFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes loaderShadowPulse {
    0%,
    100% {
        opacity: 0.46;
        transform: translateX(-50%) scaleX(1);
    }

    50% {
        opacity: 0.2;
        transform: translateX(-50%) scaleX(0.72);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .hero h1,
    .page-hero h1,
    .hero-copy,
    .hero-actions,
    .hero .tracking-lookup,
    .tracking-panel,
    .stats-ribbon,
    .section,
    .cta-band,
    .site-footer-main,
    .page-loader-icon,
    .page-loader-icon::after {
        animation: none;
    }
}









