:root {
    --angel-blue: #047dc4;
    --angel-cyan: #00bce7;
    --angel-dark: #0b1520;
    --angel-ink: #172033;
    --angel-muted: #5f6b7a;
    --angel-soft: #eef7fb;
    --angel-line: #dbe8ef;
    --angel-white: #ffffff;
}

@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 100 1000;
    font-display: swap;
    src: url("../fonts/dm-sans-normal.woff2") format("woff2");
}

@font-face {
    font-family: "DM Sans";
    font-style: italic;
    font-weight: 100 1000;
    font-display: swap;
    src: url("../fonts/dm-sans-italic.woff2") format("woff2");
}

@font-face {
    font-family: "Rethink Sans";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/rethink-sans-normal.woff2") format("woff2");
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--angel-muted);
    background: var(--angel-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 20px;
    background: transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
    position: fixed;
    padding-top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 36px rgba(8, 49, 74, 0.14);
}

.angel-navbar {
    min-height: 109px;
    padding: 0;
}

.angel-navbar .container {
    background: url("../images/header-bg2.png") no-repeat center / contain;
    padding: 0 10px;
    transition: background 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled .angel-navbar .container {
    background: none;
    padding: 0;
}

.navbar-brand {
    flex: 0 0 clamp(280px, 24vw, 330px);
}

.navbar-brand img {
    /* width: 226px; */
    height: auto;
    display: block;
    margin-bottom: 2%;
}

.navbar-nav {
    gap: 28px;
}

.angel-navbar .nav-link {
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    padding: 44px 0;
    position: relative;
}

.angel-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
    height: 2px;
    background: var(--angel-cyan);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.angel-navbar .nav-link.active,
.angel-navbar .nav-link:hover {
    color: var(--angel-cyan);
}

.angel-navbar .nav-link.active::after,
.angel-navbar .nav-link:hover::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    border: 0;
    background: transparent;
}

.nav-dropdown-toggle i {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.25s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 24px);
    left: 50%;
    z-index: 20;
    min-width: 220px;
    display: grid;
    gap: 4px;
    padding: 12px;
    margin: 0;
    list-style: none;
    border: 1px solid var(--angel-line);
    border-radius: 8px;
    background: var(--angel-white);
    box-shadow: 0 18px 42px rgba(8, 49, 74, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--angel-ink);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:hover {
    color: var(--angel-blue);
    background: var(--angel-soft);
}

.nav-quote-item {
    display: none;
}

.nav-quote-link {
    color: var(--angel-white) !important;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    border: 1px solid var(--angel-line);
    padding: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 6px;
}

.navbar-toggler span {
    height: 2px;
    width: 100%;
    background: var(--angel-blue);
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    color: var(--angel-white);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(0, 139, 204, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.header-cta:hover {
    color: var(--angel-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 139, 204, 0.34);
}

.hero-section {
    height: 100vh;
    min-height: 640px;
    padding-top: 140px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 20%, rgba(0, 188, 231, 0.2), transparent 32%),
        radial-gradient(circle at 6% 88%, rgba(4, 125, 196, 0.16), transparent 30%),
        linear-gradient(160deg, #071523 0%, #0b2740 100%);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    background: url("../images/hero-bg.png") no-repeat left top / contain;
    opacity: 0.5;
    pointer-events: none;
}

.hero-copy {
    max-width: 90%;
    color: var(--angel-white);
    position: relative;
    z-index: 2;
}

.hero-lede {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.hero-lede-line {
    flex: none;
    width: 46px;
    height: 2px;
    margin-top: 12px;
    background: var(--angel-cyan);
}

.hero-lede p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.75;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--angel-cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3 {
    font-family: "Rethink Sans", "DM Sans", Arial, sans-serif;
    color: var(--angel-ink);
    letter-spacing: 0;
}

.hero-copy h1 {
    color: var(--angel-white);
    font-size: 40px;
    line-height: 1.04;
    font-weight: 600;
    margin: 0 0 24px;
}

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

.btn-primary-angel,
.btn-ghost-angel {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 26px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary-angel {
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    box-shadow: 0 16px 35px rgba(0, 139, 204, 0.28);
}

.btn-primary-angel:hover {
    color: var(--angel-white);
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0, 139, 204, 0.34);
}

.btn-ghost-angel {
    color: var(--angel-white);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-ghost-angel:hover {
    color: var(--angel-dark);
    background: var(--angel-white);
}

.btn-pill {
    border-radius: 999px;
    padding-left: 30px;
    /* padding-right: 30px; */
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    /* border-radius: 28px 0 0 28px; */
    overflow: hidden;
    box-shadow: -30px 0 60px rgba(3, 12, 20, 0.45);
}

.hero-crate {
    position: absolute;
    z-index: 3;
    top: 2%;
    left: -36px;
    width: 190px;
    filter: drop-shadow(0 20px 24px rgba(3, 12, 20, 0.5));
    animation: softFloat 6s ease-in-out infinite;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide-nav {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.hero-slide-arrow {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    color: var(--angel-white);
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, color 0.25s ease;
}

.hero-slide-arrow:hover {
    background: var(--angel-white);
    color: var(--angel-dark);
}

.metric-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(4, 125, 196, 0.12);
    border-radius: 8px;
    padding: 18px 20px;
    min-width: 162px;
    box-shadow: 0 18px 40px rgba(16, 45, 64, 0.14);
}

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

.metric-card span {
    display: block;
    color: var(--angel-muted);
    font-size: 13px;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.metric-one {
    right: 24px;
    bottom: -22px;
}

.metric-two {
    left: 24px;
    bottom: -22px;
}

.hero-badge {
    position: absolute;
    top: 32%;
    left: 0;
    width: 128px;
    height: 128px;
    z-index: 4;
    transform: translate(-50%, -50%);
}

.hero-badge svg {
    width: 100%;
    height: 100%;
    animation: badgeSpin 16s linear infinite;
}

.hero-badge text {
    fill: rgba(255, 255, 255, 0.85);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-badge i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    color: var(--angel-white);
    font-size: 32px;
    box-shadow: 0 14px 30px rgba(0, 139, 204, 0.35);
}

@keyframes badgeSpin {
    to {
        transform: rotate(360deg);
    }
}

.about-band,
.services-section,
.process-section,
.choose-section,
.products-section,
.contact-cta {
    padding: 96px 0;
}

.about-band {
    background: var(--angel-white);
}

.image-stack {
    min-height: 430px;
    position: relative;
}

.image-stack img {
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(14, 47, 70, 0.16);
}

.image-stack img:first-child {
    width: 74%;
    left: 0;
    top: 0;
}

.image-stack img:nth-of-type(2) {
    width: 58%;
    right: 0;
    bottom: 0;
    border: 8px solid var(--angel-white);
    z-index: 1;
}

.about-stat-card {
    position: absolute;
    z-index: 2;
    width: 178px;
    min-height: 122px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 20px;
    border-radius: 8px;
    color: var(--angel-white);
    text-align: center;
    box-shadow: 0 22px 48px rgba(14, 47, 70, 0.18);
    animation: aboutStatFloat 3.4s ease-in-out infinite;
}

.about-stat-card strong {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    font-size: 54px;
    line-height: 0.95;
    font-weight: 900;
}

.about-stat-card strong span {
    font-size: 25px;
    font-weight: 800;
}

.about-stat-card p {
    margin: 10px 0 0;
    color: inherit;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.about-stat-primary {
    top: 42px;
    right: -12px;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
}

.about-stat-secondary {
    left: 10px;
    bottom: 20px;
    background: #071523;
    border: 1px solid rgba(0, 188, 231, 0.24);
}

.image-stack.is-visible .about-stat-primary {
    animation-delay: 0s;
}

.image-stack.is-visible .about-stat-secondary {
    animation-delay: 0.7s;
}

.section-copy h2,
.section-heading h2 {
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-copy p,
.section-heading p {
    font-size: 17px;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.feature-grid > div {
    border: 1px solid var(--angel-line);
    border-radius: 8px;
    padding: 24px;
    background: #fbfdfe;
}

.feature-grid i,
.service-body i {
    color: var(--angel-cyan);
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-grid h3,
.service-body h3,
.product-item h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-grid p,
.service-body p,
.product-item p {
    margin: 0;
    line-height: 1.65;
}

.services-section {
    background: linear-gradient(180deg, var(--angel-soft), #ffffff);
}

.section-heading {
    max-width: 740px;
    margin-bottom: 42px;
}

.service-card {
    height: 100%;
    background: var(--angel-white);
    border: 1px solid var(--angel-line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(23, 55, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(23, 55, 74, 0.14);
}

.service-card img {
    width: 100%;
    height: 172px;
    object-fit: cover;
}

.service-body {
    padding: 24px;
}

.process-section {
    position: relative;
    overflow: hidden;
    background: var(--angel-white);
}

.process-crates {
    position: absolute;
    top: -6px;
    right: clamp(18px, 5vw, 72px);
    width: clamp(145px, 18vw, 238px);
    pointer-events: none;
}

.process-heading {
    max-width: 560px;
    margin: 0 auto 58px;
    text-align: center;
}

.process-heading .eyebrow {
    justify-content: center;
    color: var(--angel-cyan);
}

.process-heading h2 {
    color: #10172a;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr) 120px minmax(0, 1fr);
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    border-top: 1px dashed var(--angel-line);
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 32px;
    border-radius: 50%;
    background: #edf3f6;
    color: #53606c;
    font-size: 13px;
    font-weight: 800;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.process-step.is-active .process-number {
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    color: var(--angel-white);
    box-shadow: 0 12px 28px rgba(0, 188, 231, 0.28);
}

.process-image {
    width: 136px;
    height: 136px;
    margin: 0 auto 20px;
    padding: 8px;
    border: 1px solid #aebccb;
    border-radius: 50%;
    background: var(--angel-white);
    box-shadow: 0 18px 38px rgba(15, 31, 46, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.process-step h3 {
    margin-bottom: 10px;
    color: #10172a;
    font-size: 18px;
    font-weight: 800;
    transition: color 0.25s ease;
}

.process-step.is-active h3 {
    color: var(--angel-blue);
}

.process-step:hover .process-number {
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    color: var(--angel-white);
    box-shadow: 0 12px 28px rgba(0, 188, 231, 0.28);
}

.process-step:hover .process-image {
    border-color: var(--angel-cyan);
    box-shadow: 0 20px 42px rgba(0, 188, 231, 0.14);
}

.process-step:hover h3 {
    color: var(--angel-blue);
}

.process-step p {
    max-width: 220px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.65;
}

.process-connector {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    color: var(--angel-cyan);
}

.process-connector i {
    position: absolute;
    top: 19px;
    font-size: 18px;
}

.choose-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eef7fb 0%, #f7fbfd 100%);
}

.choose-section::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(0, 188, 231, 0.08);
}

.choose-media {
    position: relative;
    min-height: 470px;
    max-width: 560px;
}

.choose-image-main,
.choose-image-float {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 24px 55px rgba(14, 47, 70, 0.16);
}

.choose-image-main {
    left: 8%;
    top: 0;
    width: 68%;
    height: 430px;
    border-radius: 18px 18px 92px 18px;
}

.choose-image-float {
    right: 0;
    top: 62%;
    width: 58%;
    height: 280px;
    border: 8px solid var(--angel-white);
    border-radius: 18px 18px 18px 82px;
}

.choose-badge {
    position: absolute;
    left: 0;
    bottom: 34px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 230px;
    padding: 16px 18px;
    border-radius: 8px;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    box-shadow: 0 18px 40px rgba(0, 139, 204, 0.28);
    font-weight: 800;
}

.choose-badge i {
    font-size: 24px;
}

.choose-content {
    max-width: 620px;
}

.choose-content .eyebrow {
    color: var(--angel-cyan);
}

.choose-content .eyebrow::before {
    display: none;
}

.choose-content h2 {
    color: #10172a;
    /* font-size: clamp(34px, 4.2vw, 52px); */
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 18px;
}

.choose-content > p {
    line-height: 1.75;
}

.choose-bars {
    display: grid;
    gap: 22px;
    margin: 28px 0 34px;
}

.choose-bar-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 9px;
    color: #10172a;
    font-size: 14px;
    font-weight: 900;
}

.choose-bar-label strong {
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--angel-white);
    background: var(--angel-blue);
    font-size: 12px;
    line-height: 1;
}

.choose-bar-track {
    height: 8px;
    border-radius: 999px;
    background: #d7e8f1;
    overflow: hidden;
}

.choose-bar-track span {
    display: block;
    width: var(--value);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--angel-blue), var(--angel-cyan));
}

.choose-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 34px;
}

.choose-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.choose-ring {
    --angle: calc(var(--percent) * 3.6deg);
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: conic-gradient(var(--angel-cyan) var(--angle), #d7e8f1 0);
}

.choose-ring span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--angel-ink);
    background: #f7fbfd;
    font-size: 13px;
    font-weight: 900;
}

.choose-metric strong {
    color: #10172a;
    font-size: 17px;
    line-height: 1.35;
}

.choose-callout {
    margin: 0;
    color: #10172a;
    font-weight: 900;
}

.choose-callout a {
    color: var(--angel-blue);
}

.choose-callout a:hover {
    color: var(--angel-cyan);
}



.stats-section {
    position: relative;
    padding: 54px 0;
    overflow: hidden;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--angel-line);
    border-bottom: 1px solid var(--angel-line);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 116px;
    padding: 24px 28px;
    border-right: 1px solid var(--angel-line);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item i {
    flex: 0 0 auto;
    color: var(--angel-blue);
    font-size: 34px;
}

.stat-item strong {
    display: block;
    color: var(--angel-ink);
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1;
    font-weight: 900;
}

.stat-item span {
    display: block;
    margin-top: 8px;
    color: var(--angel-muted);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.clients-section {
    padding: 42px 0 54px;
    /* background: #effbf0; */
    overflow: hidden;
}

.clients-title {
    color: var(--angel-ink);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
    text-align: center;
    margin: 0 0 34px;
}

.clients-marquee {
    position: relative;
    overflow: hidden;
}

.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(12vw, 120px);
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #effbf0, rgba(239, 251, 240, 0));
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #effbf0, rgba(239, 251, 240, 0));
}

.clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: clamp(48px, 8vw, 110px);
    animation: clientMarquee 28s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    width: 150px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.client-logo img {
    max-width: 100%;
    max-height: 76px;
    object-fit: contain;
    filter: saturate(0.92);
    opacity: 0.92;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo:hover img {
    filter: saturate(1.08);
    opacity: 1;
    transform: translateY(-2px);
}

.products-section {
    background: var(--angel-dark);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(11, 21, 32, 0.86), rgba(11, 21, 32, 0.92)),
        url("../images/footer.webp") center / cover;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

.products-section h2,
.products-section h3 {
    color: var(--angel-white);
}

.products-section p {
    color: rgba(255, 255, 255, 0.74);
}

.product-list {
    display: grid;
    gap: 16px;
}

.product-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.product-item span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--angel-white);
    background: var(--angel-blue);
    font-weight: 900;
}

.product-showcase-section {
    background: var(--angel-white);
    overflow: hidden;
}

.product-showcase-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 70px 0 160px;
    text-align: center;
    color: var(--angel-white);
    background:
        linear-gradient(rgba(7, 21, 35, 0.86), rgba(7, 21, 35, 0.9)),
        url("../images/footer1.webp") center / cover no-repeat;
}

.product-showcase-copy {
    max-width: 780px;
    margin: 0 auto;
}

.product-showcase-copy .eyebrow {
    color: var(--angel-cyan);
}

.product-showcase-copy .eyebrow::before {
    display: none;
}

.product-showcase-copy h2 {
    color: var(--angel-white);
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-showcase-copy p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.product-showcase-body {
    position: relative;
    z-index: 2;
    margin-top: -118px;
    padding: 0 0 96px;
    /* background: var(--angel-white); */
}

.product-showcase-panel {
    padding: clamp(28px, 4vw, 58px);
    border-radius: 8px;
    background: var(--angel-white);
    box-shadow: 0 24px 70px rgba(14, 47, 70, 0.14);
}

.product-showcase-row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: 0;
    opacity: 0;
    transform: translateY(34px);
}

.product-showcase-row + .product-showcase-row {
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid var(--angel-line);
}

.product-showcase-row.is-reverse .product-showcase-text {
    order: 2;
}

.product-showcase-row.is-reverse .product-showcase-image {
    order: 1;
}

.product-showcase-text > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 188, 231, 0.22);
}

.product-showcase-text h3 {
    color: var(--angel-ink);
    /* font-size: clamp(26px, 3vw, 38px); */
    line-height: 1.16;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-showcase-text p {
    color: var(--angel-muted);
    line-height: 1.75;
}

.product-showcase-text ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.product-showcase-text li {
    position: relative;
    padding-left: 28px;
    color: var(--angel-ink);
    font-weight: 800;
}

.product-discover-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    min-height: 46px;
    padding: 13px 24px;
    border-radius: 999px;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 139, 204, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.product-discover-link:hover {
    color: var(--angel-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 139, 204, 0.3);
}

.product-discover-link i {
    font-size: 12px;
}

.product-showcase-image {
    position: relative;
    min-height: 410px;
    border-radius: 8px;
    overflow: visible;
    /* background: var(--angel-soft); */
}

.product-showcase-image::after {
    /* content: ""; */
    position: absolute;
    inset: auto 8% 22px auto;
    width: 58%;
    height: 62%;
    border: 1px solid rgba(0, 188, 231, 0.18);
    border-radius: 8px 8px 8px 58px;
    pointer-events: none;
    z-index: 3;
}

.product-showcase-image img {
    position: absolute;
    display: block;
    object-fit: cover;
    box-shadow: 0 22px 48px rgba(14, 47, 70, 0.16);
    opacity: 0;
    transition: transform 0.35s ease;
}

.product-image-main {
    left: 0;
    top: 0;
    width: 72%;
    height: 82%;
    border-radius: 8px 8px 78px 8px;
}

.product-image-float {
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 58%;
    height: 58%;
    border: 8px solid var(--angel-white);
    border-radius: 8px 8px 8px 66px;
}

.product-showcase-row:hover .product-showcase-image img {
    transform: translateY(-4px);
}

.product-showcase-panel.is-visible .product-showcase-row {
    animation: productRowIn 0.75s ease forwards;
}

.product-showcase-panel.is-visible .product-showcase-row:nth-child(2) {
    animation-delay: 0.12s;
}

.product-showcase-panel.is-visible .product-showcase-row:nth-child(3) {
    animation-delay: 0.24s;
}

.product-showcase-panel.is-visible .product-showcase-row:nth-child(4) {
    animation-delay: 0.36s;
}

.product-showcase-panel.is-visible .product-image-main {
    animation: productMainImageIn 0.8s ease forwards;
}

.product-showcase-panel.is-visible .product-image-float {
    animation: productFloatImageIn 0.8s ease 0.16s forwards;
}

.testimonial-section {
    padding: 104px 0;
    background: var(--angel-white);
    overflow: hidden;
}

.testimonial-media {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    padding: 28px 0 0 28px;
}

/* .testimonial-media::before {
    content: "";
    position: absolute;
    left: 0;
    top: 54px;
    width: 88%;
    height: 86%;
    border: 2px solid var(--angel-blue);
    border-radius: 0 8px 72px 72px;
} */

.testimonial-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 0 24px 72px 72px;
    /* box-shadow: 0 24px 55px rgba(23, 55, 74, 0.14); */
}

.testimonial-content {
    max-width: 680px;
}

.testimonial-content .eyebrow {
    color: var(--angel-blue);
}

.testimonial-content .eyebrow::before {
    display: none;
}

.testimonial-content .eyebrow i {
    color: var(--angel-cyan);
}

.testimonial-content h2 {
    color: var(--angel-ink);
    /* font-size: 45px; */
    line-height: 1.16;
    font-weight: 700;
    margin: 0 0 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--angel-line);
}

.testimonial-slider {
    position: relative;
}

.testimonial-slides {
    display: grid;
    position: relative;
}

.testimonial-slide {
    grid-area: 1 / 1;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(26px);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.testimonial-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.testimonial-slide > i {
    color: var(--angel-blue);
    font-size: 34px;
    margin-bottom: 12px;
}

.testimonial-slide p {
    color: #4d5664;
    font-size: 18px;
    line-height: 1.85;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 24px;
}

.testimonial-slide cite {
    display: grid;
    gap: 4px;
    font-style: normal;
}

.testimonial-slide cite strong {
    color: var(--angel-ink);
    font-size: 18px;
}

.testimonial-slide cite span {
    color: var(--angel-muted);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.testimonial-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--angel-line);
    border-radius: 50%;
    color: var(--angel-blue);
    background: var(--angel-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-arrow:hover {
    color: var(--angel-white);
    background: var(--angel-blue);
    border-color: var(--angel-blue);
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: #c8d6df;
    transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.testimonial-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--angel-blue);
}

.contact-cta {
    background: var(--angel-soft);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    padding: clamp(34px, 5vw, 58px);
    border-radius: 8px;
    background: var(--angel-white);
    border: 1px solid var(--angel-line);
    box-shadow: 0 20px 55px rgba(23, 55, 74, 0.1);
}

.contact-content h2 {
    /* font-size: clamp(28px, 3.4vw, 42px); */
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-content p {
    max-width: 520px;
    margin: 0;
    line-height: 1.75;
}

.contact-highlights {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-highlights div {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--angel-ink);
    font-weight: 800;
}

.contact-highlights i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    box-shadow: 0 12px 24px rgba(0, 188, 231, 0.2);
}

.contact-form {
    display: grid;
    gap: 30px;
}

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

.contact-form label {
    display: grid;
    gap: 6px;
}

.contact-form span {
    /* color: #8a95a3; */
    font-size: 15px;
    line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cdd6df;
    border-radius: 0;
    padding: 4px 0 10px;
    color: var(--angel-ink);
    background: transparent;
    outline: 0;
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--angel-cyan);
    box-shadow: 0 2px 0 rgba(0, 188, 231, 0.22);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #d92d20;
    box-shadow: 0 2px 0 rgba(217, 45, 32, 0.16);
}

.contact-form-message {
    min-height: 22px;
    margin: -10px 0 0;
    color: #d92d20;
    font-size: 14px;
    font-weight: 700;
}

.contact-form-message.is-success {
    color: var(--angel-blue);
}

.contact-form .btn-primary-angel {
    justify-self: start;
    border: 0;
    cursor: pointer;
}

.page-banner {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 138px 0 74px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 21, 35, 0.78), rgba(7, 21, 35, 0.5)),
        url("../images/footer1.webp") center / cover no-repeat;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 125, 196, 0.08), rgba(0, 188, 231, 0.08));
    pointer-events: none;
}

.about-page-banner {
    background:
        linear-gradient(90deg, rgba(7, 21, 35, 0.82), rgba(7, 21, 35, 0.48)),
        url("../images/footer1.webp") center / cover no-repeat;
}

.services-page-banner {
    background:
        linear-gradient(90deg, rgba(7, 21, 35, 0.8), rgba(7, 21, 35, 0.48)),
        url("../images/footer1.webp") center / cover no-repeat;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner-copy {
    max-width: 680px;
    padding-left: 22px;
    border-left: 4px solid var(--angel-cyan);
}

.page-banner-copy h1 {
    color: var(--angel-white);
    font-size: clamp(42px, 5.5vw, 66px);
    line-height: 1.02;
    font-weight: 900;
    margin: 0 0 14px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 800;
}

.page-breadcrumb a {
    color: var(--angel-cyan);
}

.page-breadcrumb a:hover {
    color: var(--angel-white);
}

.page-breadcrumb i {
    font-size: 10px;
    color: var(--angel-white);
}

.services-page-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #eef7fb 0%, #f7fbfd 100%);
}

.services-page-heading {
    max-width: 780px;
    margin: 0 auto 54px;
    text-align: center;
}

.services-page-heading .eyebrow {
    justify-content: center;
    color: var(--angel-blue);
}

.services-page-heading .eyebrow::before {
    display: none;
}

.services-page-heading .eyebrow i {
    color: var(--angel-cyan);
}

.services-page-heading h2 {
    /* color: #10172a; */
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-page-heading p {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.75;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
}

.services-page-card {
    height: 100%;
    padding: 30px;
    border-radius: 8px;
    background: var(--angel-white);
    box-shadow: 0 22px 54px rgba(14, 47, 70, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-page-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 64px rgba(14, 47, 70, 0.16);
}

.services-card-media {
    position: relative;
    height: 86px;
    display: block;
    margin-bottom: 28px;
    border-radius: 8px 34px 8px 8px;
    overflow: hidden;
    background: transparent;
}

.services-card-media span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--angel-white);
    /* background: #071523; */
    font-size: 28px;
}

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

.services-card-body h3 {
    color: #10172a;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 16px;
}

.services-card-body p {
    min-height: 116px;
    margin: 0 0 24px;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.75;
}

.services-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-top: 22px;
    width: 100%;
    border-top: 1px solid var(--angel-line);
    color: var(--angel-ink);
    font-size: 13px;
    font-weight: 900;
}

.services-card-body a i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--angel-white);
    background: #071523;
    transition: background 0.25s ease;
}

.services-card-body a:hover {
    color: var(--angel-blue);
}

.services-card-body a:hover i {
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
}

.about-overview-section {
    padding: 92px 0;
    background: var(--angel-white);
}

.about-overview-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 1.06fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

.about-overview-copy {
    min-width: 0;
}

.about-overview-image {
    position: relative;
    margin-bottom: 28px;
    border-radius: 8px 8px 64px 8px;
    overflow: hidden;
    /* box-shadow: 0 24px 56px rgba(14, 47, 70, 0.16); */
}

.about-overview-image img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    display: block;
    object-fit: cover;
}

.about-overview-copy .eyebrow {
    color: var(--angel-blue);
}

.about-overview-copy h2 {
    color: #10172a;
    font-size: 40px;
    line-height: 1.16;
    font-weight: 600;
    margin: 0 0 16px;
}

.about-overview-copy p {
    margin: 0 0 24px;
    color: var(--angel-muted);
    line-height: 1.72;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-count-card {
    min-height: 204px;
    display: grid;
    align-content: space-between;
    padding: 26px;
    border-radius: 8px;
    color: var(--angel-muted);
    background: #f4f8fb;
    box-shadow: 0 18px 42px rgba(14, 47, 70, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-count-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(14, 47, 70, 0.14);
}

.about-count-card > span {
    color: var(--angel-ink);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
}

.about-count-card i {
    color: var(--angel-blue);
    font-size: 25px;
}

.about-count-card strong {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--angel-ink);
    font-size: clamp(42px, 5vw, 56px);
    line-height: 1;
    font-weight: 900;
}

.about-count-card strong span {
    color: inherit;
}

.about-count-card strong em {
    color: inherit;
    font-size: 0.62em;
    font-style: normal;
}

.about-count-card p {
    margin: 0;
    color: inherit;
    font-size: 12px;
    line-height: 1.65;
}

.about-count-card.is-primary {
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    box-shadow: 0 22px 48px rgba(0, 139, 204, 0.23);
}

.about-count-card.is-primary > span,
.about-count-card.is-primary strong,
.about-count-card.is-primary i {
    color: var(--angel-white);
}

.about-count-card.is-dark {
    color: rgba(255, 255, 255, 0.76);
    background: #071523;
    box-shadow: 0 22px 48px rgba(7, 21, 35, 0.2);
}

.about-count-card.is-dark > span,
.about-count-card.is-dark strong,
.about-count-card.is-dark i {
    color: var(--angel-white);
}

.company-focus-section {
    padding: 104px 0;
    background: linear-gradient(180deg, #f7fbfd 0%, var(--angel-white) 100%);
    overflow: hidden;
}

.company-focus-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(44px, 6vw, 86px);
    align-items: center;
}

.company-focus-media {
    position: relative;
    min-height: 560px;
}

.company-focus-portrait,
.company-focus-truck,
.company-focus-circle {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(14, 47, 70, 0.16);
}

.company-focus-portrait {
    top: 0;
    right: 8%;
    width: 62%;
    height: 330px;
    border-radius: 8px 8px 72px 8px;
}

.company-focus-truck {
    left: 0;
    bottom: 18px;
    width: 66%;
    height: 290px;
    border: 8px solid var(--angel-white);
    border-radius: 8px 72px 8px 8px;
    z-index: 2;
}

.company-focus-circle {
    right: 0;
    bottom: 56px;
    width: 190px;
    height: 190px;
    border: 8px solid var(--angel-white);
    border-radius: 50%;
    z-index: 1;
}

.company-focus-portrait img,
.company-focus-truck img,
.company-focus-circle img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.company-focus-exp {
    position: absolute;
    top: 54px;
    left: 6%;
    z-index: 4;
    padding: 18px 28px;
    border-radius: 8px 8px 8px 0;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(0, 139, 204, 0.24);
}

.company-focus-badge {
    position: absolute;
    left: 53%;
    bottom: 35%;
    z-index: 5;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--angel-white);
    /* background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 36px rgba(14, 47, 70, 0.14); */
}

.company-focus-badge span {
    position: absolute;
    inset: 8px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--angel-white);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

.company-focus-badge i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 24px;
}

.company-focus-content .eyebrow {
    color: var(--angel-blue);
}

.company-focus-content .eyebrow::before {
    display: none;
}

.company-focus-content .eyebrow i {
    color: var(--angel-cyan);
}

.company-focus-content h2 {
    color: #10172a;
    font-size: 40px;
    line-height: 1.14;
    font-weight: 600;
    margin: 0 0 18px;
}

.company-focus-intro {
    max-width: 650px;
    margin: 0 0 28px;
    color: var(--angel-muted);
    line-height: 1.75;
}

.company-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 34px;
}

.company-tab {
    min-width: 136px;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    color: var(--angel-ink);
    background: var(--angel-white);
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(14, 47, 70, 0.08);
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.company-tab:hover,
.company-tab.is-active {
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    box-shadow: 0 16px 34px rgba(0, 139, 204, 0.22);
    transform: translateY(-2px);
}

.company-tab-panel {
    display: none;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    padding-top: 26px;
    border-top: 1px solid var(--angel-line);
}

.company-tab-panel.is-active {
    display: grid;
}

.company-tab-panel img {
    width: 190px;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border-radius: 8px 34px 8px 8px;
    box-shadow: 0 16px 34px rgba(14, 47, 70, 0.12);
}

.company-tab-panel p {
    margin: 0 0 14px;
    color: var(--angel-muted);
    line-height: 1.75;
}

.company-tab-panel strong {
    color: #10172a;
}

.company-focus-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.company-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--angel-muted);
    font-size: 14px;
    font-weight: 800;
}

.company-call i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--angel-white);
    background: #071523;
}

.company-call span {
    display: grid;
    gap: 3px;
}

.company-call a {
    color: var(--angel-blue);
    font-size: 16px;
    font-weight: 900;
}

.company-call a:hover {
    color: var(--angel-cyan);
}

.support-team-section {
    position: relative;
    padding: 104px 0 96px;
    overflow: hidden;
    background: var(--angel-white);
}

.support-team-crates {
    position: absolute;
    top: 0;
    left: 2%;
    width: clamp(150px, 18vw, 250px);
    pointer-events: none;
    filter: drop-shadow(0 16px 18px rgba(14, 47, 70, 0.14));
}

.support-team-heading {
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

.support-team-heading .eyebrow {
    justify-content: center;
    color: var(--angel-blue);
}

.support-team-heading .eyebrow::before,
.support-team-heading .eyebrow::after {
    content: "";
    width: 40px;
    height: 2px;
    background: currentColor;
}

.support-team-heading h2 {
    color: #10172a;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 600;
    margin: 0;
}

.support-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 38px);
    max-width: 760px;
    margin: 0 auto;
}

.support-team-card {
    min-width: 0;
    text-align: center;
}

.support-team-photo {
    position: relative;
    max-width: 210px;
    margin: 0 auto;
    /* aspect-ratio: 1 / 1.16; */
    border-radius: 8px 56px 8px 8px;
    overflow: hidden;
    /* background: var(--angel-soft); */
    /* box-shadow: 0 22px 48px rgba(14, 47, 70, 0.14); */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-team-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    /* border: 1px solid rgba(0, 188, 231, 0.12); */
    border-radius: inherit;
    pointer-events: none;
}

/* .support-team-card:hover .support-team-photo {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(14, 47, 70, 0.2);
} */

.support-team-photo img {
    /* width: 100%;
    height: 100%;
    display: block; */
    object-fit: cover;
    object-position: center top;
}

.support-team-body {
    padding: 22px 10px 0;
}

.support-team-body h3 {
    color: #10172a;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 4px;
}

.support-team-body span {
    display: block;
    color: var(--angel-blue);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 900;
    margin-bottom: 12px;
}

.support-team-body p {
    max-width: 320px;
    margin: 0 auto;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 92px 0 84px;
    background: linear-gradient(180deg, #eef7fb 0%, #f7fbfd 100%);
}

.contact-info-heading {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.contact-info-heading .eyebrow {
    color: var(--angel-blue);
}

.contact-info-heading .eyebrow::before {
    display: none;
}

.contact-info-heading .eyebrow i {
    color: var(--angel-cyan);
}

.contact-info-heading h2 {
    color: #10172a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.14;
    font-weight: 600;
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.contact-info-card {
    position: relative;
    min-height: 136px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 28px;
    border: 1px solid #c9dce7;
    border-radius: 8px;
    background: var(--angel-white);
    box-shadow: 0 18px 42px rgba(23, 55, 74, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 231, 0.45);
    box-shadow: 0 24px 56px rgba(23, 55, 74, 0.14);
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--angel-cyan);
    background: #eef7fb;
    font-size: 22px;
}

.contact-info-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 7px;
    color: var(--angel-muted);
    font-size: 13px;
    line-height: 1.55;
}

.contact-info-card strong {
    color: var(--angel-ink);
    font-weight: 900;
}

.contact-info-card a {
    color: inherit;
}

.contact-info-card a:hover {
    color: var(--angel-blue);
}

.contact-info-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: var(--angel-ink) !important;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-info-link:hover {
    color: var(--angel-blue) !important;
}

.contact-info-link i {
    color: var(--angel-cyan);
    font-size: 11px;
}

.contact-info-watermark {
    position: absolute;
    right: 18px;
    bottom: 10px;
    color: rgba(23, 32, 51, 0.06);
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-social-wrap {
    display: grid;
    justify-items: center;
    gap: 14px;
    margin-top: 46px;
}

.contact-social-wrap strong {
    color: var(--angel-ink);
    font-size: 14px;
    font-weight: 900;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    box-shadow: 0 12px 24px rgba(0, 139, 204, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-socials a:hover {
    color: var(--angel-white);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 139, 204, 0.28);
}

.contact-map-form-section {
    padding: 0 0 96px;
    background: linear-gradient(180deg, #f7fbfd 0%, var(--angel-white) 100%);
}

.contact-map-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.contact-map-panel,
.contact-form-panel {
    min-height: 460px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(14, 47, 70, 0.14);
}

.contact-map-panel {
    position: relative;
    border: 1px solid var(--angel-line);
    background: var(--angel-soft);
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    border: 0;
}

.contact-form-panel {
    display: flex;
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    background:
        linear-gradient(135deg, rgba(7, 21, 35, 0.9), rgba(11, 39, 64, 0.86)),
        url("../images/tracking-bg.jpg") center / cover no-repeat;
}

.contact-form-panel .contact-form {
    width: 100%;
    gap: 24px;
}

.contact-form-panel .form-row {
    gap: 20px;
}

.contact-form-panel .contact-form span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 800;
}

.contact-form-panel .contact-form input,
.contact-form-panel .contact-form textarea {
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0 18px;
    color: var(--angel-white);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.contact-form-panel .contact-form textarea {
    min-height: 138px;
    border-radius: 8px;
    padding: 16px 18px;
}

.contact-form-panel .contact-form input:focus,
.contact-form-panel .contact-form textarea:focus {
    border-color: var(--angel-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 231, 0.16);
}

.contact-form-panel .contact-form input.is-invalid,
.contact-form-panel .contact-form textarea.is-invalid {
    border-color: #ff7b7b;
    box-shadow: 0 0 0 3px rgba(255, 123, 123, 0.14);
}

.contact-form-panel .contact-form-message {
    margin: -6px 0 0;
    color: #ffb4b4;
}

.contact-form-panel .contact-form-message.is-success {
    color: var(--angel-cyan);
}

.contact-form-panel .contact-form .btn-primary-angel {
    width: 100%;
    border-radius: 999px;
}

.hall-fame-section {
    padding: 104px 0;
    background: linear-gradient(180deg, var(--angel-white) 0%, #f7fbfd 100%);
    overflow: hidden;
}

.hall-fame-panel {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.hall-fame-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.hall-fame-heading .eyebrow {
    justify-content: center;
    color: var(--angel-blue);
}

.hall-fame-heading .eyebrow::before {
    display: none;
}

.hall-fame-heading .eyebrow i {
    color: var(--angel-cyan);
}

.hall-fame-heading h2 {
    color: #10172a;
    /* font-size: clamp(34px, 4.2vw, 52px); */
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 16px;
}

.hall-fame-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--angel-muted);
    line-height: 1.75;
}

.hall-fame-award {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    max-width: 920px;
    margin: 0 auto 26px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--angel-line);
    border-radius: 8px;
    background: var(--angel-white);
    box-shadow: 0 22px 54px rgba(14, 47, 70, 0.1);
}

.hall-fame-award-icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 34px;
    box-shadow: 0 14px 30px rgba(0, 139, 204, 0.24);
}

.hall-fame-award span {
    display: block;
    color: var(--angel-ink);
    /* font-size: clamp(24px, 3vw, 38px); */
    line-height: 1.1;
    font-weight: 700;
}

.hall-fame-award h3 {
    color: var(--angel-cyan);
    /* font-size: 45px; */
    line-height: 1.08;
    font-weight: 600;
    margin: 2px 0 12px;
}

.hall-fame-award p {
    margin: 0;
    color: var(--angel-muted);
    font-size: clamp(16px, 1.8vw, 22px);
}

.hall-fame-award strong {
    color: var(--angel-blue);
}

.hall-fame-given {
    display: inline-grid;
    gap: 4px;
    margin-top: 22px;
    padding: 16px 20px;
    border-left: 4px solid var(--angel-cyan);
    border-radius: 8px;
    background: #eef7fb;
}

.hall-fame-given span {
    display: block;
    color: var(--angel-muted);
    font-weight: 600;
}

.hall-fame-given strong {
    display: block;
    color: var(--angel-blue);
    /* font-size: clamp(16px, 1.8vw, 21px); */
    line-height: 1.3;
    font-weight: 900;
}

.hall-fame-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.hall-fame-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hall-fame-image.is-side {
    height: 300px;
}

.hall-fame-image img {
      width: 500px;
    height: 280px;
    display: block;
    object-fit: contain;
    padding: 10px;
}

.hall-fame-image.is-side img {
    object-fit: fill;
    padding: 0;
}

.hall-fame-image.is-center {
    width: min(320px, 100%);
    height: auto;
    justify-self: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.hall-fame-image.is-center img {
    width: 82%;
    height: 82%;
    border-radius: 8px;
    padding: 0;
}

.hall-fame-note {
    margin: 34px 0 0;
    color: var(--angel-blue);
    text-align: center;
    font-size: clamp(16px, 2vw, 21px);
    font-weight: 800;
}

.site-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.74);
    background: #070b10 url("../images/footer-bg.webp") center / cover no-repeat;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
}

.footer-main {
    position: relative;
    z-index: 1;
    /* padding: 56px 0 58px; */
}

.footer-newsletter {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 28px;
    align-items: center;
    padding: 54px 0 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-newsletter h2 {
    color: var(--angel-white);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin: 0;
}

.newsletter-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 0 18px;
    color: var(--angel-white);
    background: rgba(255, 255, 255, 0.1);
    outline: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.newsletter-form input:focus {
    border-color: var(--angel-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 231, 0.16);
}

.newsletter-form button {
    height: 56px;
    border: 0;
    border-radius: 6px;
    padding: 0 22px;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 139, 204, 0.24);
}

.newsletter-message {
    grid-column: 1 / -1;
    min-height: 20px;
    margin: 0;
    color: var(--angel-cyan);
    font-size: 13px;
    font-weight: 700;
}

.footer-brand img {
    width: 170px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 300px;
    font-size: 13px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}

.footer-socials a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--angel-cyan);
    border: 1px solid rgba(255, 255, 255, 0.62);
    font-size: 12px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
    color: var(--angel-white);
    background: var(--angel-blue);
    transform: translateY(-2px);
}

.footer-widget h3 {
    color: var(--angel-white);
    font-size: 22px;
    margin-bottom: 26px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.footer-widget li {
    font-size: 13px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.76);
}

.footer-widget a:hover {
    color: var(--angel-cyan);
}

/* .footer-widget li::before {
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--angel-cyan);
    margin-right: 12px;
} */

.contact-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    line-height: 1.8;
}

.contact-list li::before {
    display: none;
}

.contact-list i {
    color: var(--angel-cyan);
    margin-top: 5px;
}

.map-frame {
    width: 100%;
    height: 190px;
    border: 6px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    /* background: #000; */
    text-align: center;
    padding: 24px 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
    letter-spacing: 0;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--angel-blue);
    color: var(--angel-white);
    box-shadow: 0 14px 30px rgba(4, 125, 196, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.28s;
}

@keyframes softFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

@keyframes truckGlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(22px);
    }
}

@keyframes clientMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes aboutStatFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

@keyframes productRowIn {
    from {
        opacity: 0;
        transform: translateY(34px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productMainImageIn {
    from {
        opacity: 0;
        transform: translateX(-28px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes productFloatImageIn {
    from {
        opacity: 0;
        transform: translate(28px, 22px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-stat-card,
    .product-showcase-row,
    .product-showcase-image img {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: fixed;
        padding-top: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 12px 36px rgba(8, 49, 74, 0.14);
    }

    .angel-navbar {
        min-height: 86px;
    }

    .angel-navbar .container {
        width: 100%;
        max-width: none;
        min-height: 86px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        padding: 0 16px;
        box-shadow: none;
    }

    .site-header.is-scrolled .angel-navbar .container {
        padding: 0 16px;
    }

    .navbar-brand {
        flex: 0 1 auto;
    }

    .navbar-brand img {
        width: 196px;
    }

    .navbar-toggler {
        display: flex;
    }

    .header-actions {
        gap: 12px;
    }

    .header-cta {
        display: none;
    }

    .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 86px;
        background: var(--angel-white);
        border-top: 1px solid var(--angel-line);
        box-shadow: 0 18px 38px rgba(8, 49, 74, 0.14);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-collapse.show {
        max-height: 620px;
    }

    .navbar-nav {
        gap: 0;
        padding: 14px 24px 22px;
    }

    .angel-navbar .nav-link {
        padding: 13px 0;
    }

    .angel-navbar .nav-link::after {
        bottom: 8px;
        right: auto;
        width: 34px;
    }

    .nav-dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        padding: 0 0 0 14px;
        border: 0;
        border-left: 2px solid var(--angel-line);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu,
    .nav-dropdown.is-open .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        max-height: 260px;
    }

    .nav-dropdown-menu a {
        display: block;
        padding: 9px 0 9px 12px;
        color: var(--angel-ink);
        background: transparent;
    }

    .nav-dropdown-menu a:hover {
        color: var(--angel-blue);
        background: var(--angel-soft);
    }

    .nav-quote-item {
        display: block;
        margin-top: 10px;
    }

    .angel-navbar .nav-quote-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        min-height: 46px;
        padding: 12px 18px;
        border-radius: 999px;
        color: var(--angel-white);
        font-weight: 900;
        box-shadow: 0 14px 30px rgba(0, 139, 204, 0.2);
    }

    .angel-navbar .nav-quote-link::after {
        display: none;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        padding: 130px 0 60px;
        background:
            radial-gradient(circle at 82% 20%, rgba(0, 188, 231, 0.2), transparent 32%),
            linear-gradient(160deg, #071523 0%, #0b2740 100%);
    }

    .hero-section > .container {
        order: 1;
    }

    .hero-visual {
        order: 2;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: calc(100% - 48px);
        min-height: 420px;
        margin: 40px auto 0;
    }

    .hero-slider {
        border-radius: 20px;
        box-shadow: 0 24px 50px rgba(3, 12, 20, 0.4);
    }

    .hero-crate {
        width: 150px;
        top: 8%;
    }

    .hero-badge {
        top: auto;
        left: auto;
        bottom: 24px;
        right: 24px;
        width: 108px;
        height: 108px;
        transform: none;
    }

    .hero-badge i {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .about-band,
    .services-section,
    .process-section,
    .choose-section,
    .products-section,
    .contact-cta {
        padding: 76px 0;
    }

    .about-band .row > .col-lg-7 {
        order: 1;
    }

    .about-band .row > .col-lg-5 {
        order: 2;
    }

    .process-crates {
        width: 155px;
        opacity: 0.55;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 520px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        display: grid;
        grid-template-columns: 56px 116px minmax(0, 1fr);
        align-items: center;
        gap: 18px;
        text-align: left;
    }

    .process-number,
    .process-image,
    .process-step h3,
    .process-step p {
        margin: 0;
    }

    .process-number {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .process-image {
        grid-column: 2;
        grid-row: 1 / span 2;
        width: 116px;
        height: 116px;
    }

    .process-step h3 {
        grid-column: 3;
        grid-row: 1;
        align-self: end;
    }

    .process-step p {
        grid-column: 3;
        grid-row: 2;
        align-self: start;
        max-width: none;
    }

    .process-connector {
        display: none;
    }

    .choose-media {
        min-height: 430px;
        margin: 0 auto;
    }

    .choose-section .row > .col-lg-6:nth-child(2) {
        order: 1;
    }

    .choose-section .row > .col-lg-6:nth-child(1) {
        order: 2;
    }

    .product-showcase-row,
    .product-showcase-row.is-reverse {
        grid-template-columns: 1fr;
    }

    .product-showcase-row.is-reverse .product-showcase-text,
    .product-showcase-row.is-reverse .product-showcase-image {
        order: initial;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .page-banner {
        min-height: 340px;
        padding: 122px 0 62px;
    }

    .contact-info-section {
        padding: 76px 0 72px;
    }

    .about-overview-section {
        padding: 76px 0;
    }

    .services-page-section {
        padding: 76px 0;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .services-card-body p {
        min-height: auto;
    }

    .about-overview-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .company-focus-section {
        padding: 86px 0;
    }

    .company-focus-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .company-focus-media {
        min-height: 520px;
    }

    .support-team-section {
        padding: 86px 0 76px;
    }

    .support-team-crates {
        width: 140px;
        opacity: 0.45;
    }

    .support-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 560px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 620px;
    }

    .contact-map-form-section {
        padding-bottom: 76px;
    }

    .contact-map-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-panel,
    .contact-form-panel {
        min-height: 420px;
    }

    .hall-fame-section {
        padding: 76px 0;
    }

    .hall-fame-gallery {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .hall-fame-image.is-center {
        order: -1;
    }

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

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

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--angel-line);
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    main,
    section {
        max-width: 100%;
        overflow-x: clip;
    }

    .navbar-brand img {
        width: 178px;
    }

    .hero-section {
        height: auto;
        min-height: auto;
    }

    .hero-crate {
        display: none;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-copy h1 {
        font-size: 30px;
        line-height: 1.14;
    }

    .hero-copy .eyebrow {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        line-height: 1.35;
        font-size: 12px;
    }

    .hero-copy .eyebrow::before,
    .hero-lede-line {
        display: none;
    }

    .hero-lede {
        justify-content: center;
    }

    .hero-lede p {
        max-width: 100%;
        font-size: 16px;
    }

    .hero-visual {
        width: min(100% - 30px, 520px);
        min-height: 390px;
        margin-top: 32px;
    }

    .hero-slider {
        min-height: 320px;
        border-radius: 16px;
    }

    .metric-card {
        padding: 14px 16px;
        min-width: 138px;
    }

    .metric-card strong {
        font-size: 22px;
    }

    .metric-one,
    .metric-two {
        bottom: -16px;
    }

    .image-stack {
        min-height: 340px;
    }

    .about-stat-card {
        width: 142px;
        min-height: 98px;
        padding: 15px;
    }

    .about-stat-card strong {
        font-size: 40px;
    }

    .about-stat-card strong span {
        font-size: 20px;
    }

    .about-stat-card p {
        font-size: 12px;
    }

    .about-stat-primary {
        top: 34px;
        right: 0;
    }

    .about-stat-secondary {
        left: 10px;
        bottom: 0;
    }

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

    .section-heading,
    .section-copy,
    .process-heading,
    .choose-content,
    .product-showcase-copy,
    .testimonial-content,
    .services-page-heading,
    .about-overview-copy,
    .company-focus-content,
    .support-team-heading,
    .contact-info-heading,
    .hall-fame-heading,
    .fvr-overview-content,
    .fvr-challenges-heading,
    .fvr-image-showcase-heading,
    .erfq-ai-intelligence-heading,
    .tms-integrations-copy,
    .fvr-capabilities-heading,
    .fvr-workflow-heading,
    .shipment-advantage-heading,
    .fvr-features-copy,
    .fvr-why-content,
    .fvr-faq-list,
    .fvr-faq-cta {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-heading .eyebrow,
    .section-copy .eyebrow,
    .process-heading .eyebrow,
    .choose-content .eyebrow,
    .product-showcase-copy .eyebrow,
    .testimonial-content .eyebrow,
    .services-page-heading .eyebrow,
    .about-overview-copy .eyebrow,
    .company-focus-content .eyebrow,
    .support-team-heading .eyebrow,
    .contact-info-heading .eyebrow,
    .hall-fame-heading .eyebrow,
    .fvr-overview-content .eyebrow,
    .fvr-challenges-heading .eyebrow,
    .fvr-image-showcase-heading .eyebrow,
    .erfq-ai-intelligence-heading .eyebrow,
    .tms-integrations-copy .eyebrow,
    .fvr-capabilities-heading .eyebrow,
    .fvr-workflow-heading .eyebrow,
    .shipment-advantage-heading .eyebrow,
    .fvr-features-copy .eyebrow,
    .fvr-faq-list > .eyebrow,
    .fvr-faq-cta .eyebrow {
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        line-height: 1.35;
    }

    .eyebrow::before,
    .support-team-heading .eyebrow::after,
    .fvr-overview-line,
    .fvr-card-line,
    .fvr-title-line {
        display: none;
    }

    .section-copy h2,
    .section-heading h2,
    .services-page-heading h2,
    .contact-info-heading h2,
    .about-overview-copy h2,
    .company-focus-content h2,
    .support-team-heading h2,
    .hall-fame-heading h2,
    .product-showcase-copy h2,
    .choose-content h2,
    .fvr-overview-content h2,
    .fvr-challenges-heading h2,
    .fvr-image-showcase-heading h2,
    .erfq-ai-intelligence-heading h2,
    .tms-integrations-copy h2,
    .fvr-capabilities-heading h2,
    .fvr-workflow-heading h2,
    .shipment-advantage-heading h2,
    .fvr-features-copy h2,
    .fvr-why-content h2,
    .fvr-faq-list > h2,
    .fvr-faq-cta h2 {
        font-size: 30px;
        line-height: 1.18;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .choose-media {
        min-height: 380px;
    }

    .choose-image-main {
        left: 0;
        width: 72%;
        height: 350px;
    }

    .choose-image-float {
        top: 80px;
        width: 56%;
        height: 230px;
    }

    .choose-badge {
        bottom: 20px;
    }

    .process-crates {
        display: none;
    }

    .process-heading {
        margin-bottom: 42px;
    }

    .process-step {
        display: block;
        text-align: center;
    }

    .process-image {
        width: 92px;
        height: 92px;
        margin: 0 auto 18px;
    }

    .process-step h3 {
        margin: 0 auto 10px;
        font-size: 16px;
    }

    .process-step p {
        max-width: 260px;
        margin: 0 auto;
        font-size: 13px;
    }

    .process-number {
        margin: 0 auto 18px;
    }

    .product-item {
        grid-template-columns: 1fr;
    }

    .product-showcase-hero {
        min-height: 360px;
        padding: 62px 0 128px;
    }

    .product-showcase-body {
        margin-top: -92px;
        padding: 0 0 76px;
    }

    .product-showcase-panel {
        padding: 24px;
    }

    .product-showcase-row + .product-showcase-row {
        margin-top: 32px;
        padding-top: 32px;
    }

    .product-showcase-image {
        min-height: 330px;
    }

    .product-image-main {
        width: 74%;
        height: 80%;
    }

    .product-image-float {
        width: 58%;
        height: 56%;
    }

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

    .stat-item,
    .stat-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--angel-line);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .clients-section {
        padding: 34px 0 44px;
    }

    .clients-track {
        gap: 44px;
        animation-duration: 22s;
    }

    .client-logo {
        width: 160px;
    }

    .testimonial-section {
        padding: 76px 0;
    }

    .testimonial-controls {
        justify-content: center;
    }

    .contact-panel {
        padding: 28px;
    }

    .page-banner-copy {
        max-width: 100%;
        padding-left: 0;
        border-left: 0;
        text-align: center;
    }

    .page-breadcrumb {
        justify-content: center;
    }

    .contact-info-heading {
        margin-bottom: 38px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .about-stat-grid {
        gap: 18px;
    }

    .about-count-card {
        min-height: 184px;
        padding: 22px;
    }

    .company-tab-panel {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .company-tab-panel img {
        width: 160px;
    }

    .support-team-heading {
        margin-bottom: 42px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 26px;
    }

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

@media (max-width: 575.98px) {
    .hero-actions,
    .btn-primary-angel,
    .btn-ghost-angel {
        width: 100%;
    }

    .hero-actions {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy h1 {
        font-size: 27px;
    }

    .hero-lede p {
        font-size: 15px;
        line-height: 1.65;
    }

    .page-banner {
        min-height: 310px;
        padding: 112px 0 48px;
    }

    .page-banner-copy h1 {
        font-size: 34px;
    }

    .section-copy h2,
    .section-heading h2,
    .services-page-heading h2,
    .contact-info-heading h2,
    .about-overview-copy h2,
    .company-focus-content h2,
    .support-team-heading h2,
    .hall-fame-heading h2,
    .product-showcase-copy h2,
    .choose-content h2,
    .fvr-overview-content h2,
    .fvr-challenges-heading h2,
    .fvr-image-showcase-heading h2,
    .erfq-ai-intelligence-heading h2,
    .tms-integrations-copy h2,
    .fvr-capabilities-heading h2,
    .fvr-workflow-heading h2,
    .shipment-advantage-heading h2,
    .fvr-features-copy h2,
    .fvr-why-content h2,
    .fvr-faq-list > h2,
    .fvr-faq-cta h2 {
        font-size: 25px;
    }

    .contact-info-section {
        padding: 64px 0 58px;
    }

    .about-overview-section {
        padding: 64px 0;
    }

    .services-page-section {
        padding: 64px 0;
    }

    .services-page-heading {
        margin-bottom: 38px;
    }

    .services-page-card {
        padding: 24px;
    }

    .services-card-media {
        height: 76px;
    }

    .about-stat-grid {
        grid-template-columns: 1fr;
    }

    .company-focus-section {
        padding: 68px 0;
    }

    .company-focus-media {
        min-height: 430px;
    }

    .company-focus-portrait {
        right: 0;
        width: 72%;
        height: 260px;
    }

    .company-focus-truck {
        width: 74%;
        height: 225px;
        border-width: 6px;
    }

    .company-focus-circle {
        width: 128px;
        height: 128px;
        border-width: 6px;
    }

    .company-focus-exp {
        top: 34px;
        left: 0;
        padding: 14px 18px;
        font-size: 13px;
    }

    .company-focus-badge {
        display: none;
    }

    .company-tabs,
    .company-focus-actions {
        gap: 12px;
    }

    .company-tab {
        flex: 1 1 100%;
        min-width: 0;
    }

    .company-tab-panel,
    .company-tab-panel.is-active {
        grid-template-columns: 1fr;
    }

    .company-tab-panel img {
        width: 100%;
        max-width: 240px;
    }

    .support-team-section {
        padding: 72px 0 62px;
    }

    .support-team-crates {
        display: none;
    }

    .support-team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .support-team-photo {
        border-radius: 8px 42px 8px 8px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .contact-info-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-map-form-section {
        padding-bottom: 58px;
    }

    .contact-map-panel,
    .contact-form-panel {
        min-height: auto;
    }

    .contact-map-panel iframe {
        height: 360px;
        min-height: 360px;
    }

    .contact-form-panel {
        padding: 24px;
    }

    .hall-fame-section {
        padding: 58px 0;
    }

    .hall-fame-award {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hall-fame-award-icon {
        margin: 0 auto;
    }

    .hall-fame-given {
        border-left: 0;
        border-top: 4px solid var(--angel-cyan);
        text-align: center;
    }

    .hall-fame-image.is-side {
        height: 230px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .metric-card,
    .hero-badge {
        display: none;
    }

    .about-stat-card {
        width: 118px;
        min-height: 86px;
        padding: 12px;
    }

    .about-stat-card strong {
        font-size: 34px;
    }

    .about-stat-card strong span {
        font-size: 17px;
    }

    .about-stat-card p {
        margin-top: 6px;
        font-size: 11px;
    }

    .process-step {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .process-image {
        grid-column: 2;
        grid-row: auto;
        margin-bottom: 4px;
    }

    .process-step h3,
    .process-step p {
        grid-column: 2;
        grid-row: auto;
    }

    .process-number {
        grid-column: 1;
        grid-row: 1 / span 3;
    }

    .product-showcase-panel {
        padding: 18px;
    }

    .product-showcase-body {
        margin-top: -70px;
        padding-bottom: 58px;
    }

    .product-showcase-text > span {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .product-showcase-image {
        min-height: 270px;
    }

    .product-image-main {
        width: 78%;
        height: 78%;
        border-radius: 8px 8px 54px 8px;
    }

    .product-image-float {
        width: 60%;
        height: 52%;
        border-width: 6px;
        border-radius: 8px 8px 8px 48px;
    }

    .choose-media {
        min-height: 325px;
    }

    .choose-image-main {
        width: 78%;
        height: 285px;
        border-radius: 14px 14px 64px 14px;
    }

    .choose-image-float {
        top: 74px;
        width: 58%;
        height: 180px;
        border-width: 6px;
        border-radius: 14px 14px 14px 54px;
    }

    .choose-badge {
        left: 12px;
        bottom: 0;
        max-width: 210px;
        padding: 13px 14px;
        font-size: 13px;
    }

    .choose-metrics {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-main {
        /* padding: 58px 0 42px; */
    }
}
/* FVR product banner */
.fvr-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100vh;
    min-height: 640px;
    padding: 140px 0 40px;
    color: rgba(255, 255, 255, 0.86);
    background:
        linear-gradient(112deg, rgba(7, 21, 35, 0.94) 0%, rgba(7, 21, 35, 0.82) 42%, rgba(4, 125, 196, 0.36) 100%),
        radial-gradient(circle at 82% 20%, rgba(0, 188, 231, 0.24), transparent 34%),
        url("../images/hero-banner-bg.png") center / cover no-repeat;
}


.fvr-banner-grid {
    display: grid;
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    align-items: center;
    gap: 32px;
}

.fvr-banner-copy {
    position: relative;
    z-index: 2;
}

.fvr-banner-label {
    display: inline-flex;
    padding: 8px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: #fff;
    background: rgba(4, 125, 196, 0.38);
    border: 1px solid rgba(0, 188, 231, 0.2);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.fvr-banner h1 {
    max-width: 690px;
    margin: 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 600;
}

.fvr-banner h1 span {
    color: #087ff5;
}

.fvr-title-line {
    width: 64px;
    height: 3px;
    margin: 24px 0 20px;
    background: var(--angel-cyan);
}

.fvr-banner-intro {
    max-width: 700px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
}

.fvr-benefits {
    display: grid;
    gap: 16px;
}

.fvr-benefit {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.fvr-benefit-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    color: #25d3ff;
    background: rgba(4, 125, 196, 0.26);
    border: 1px solid rgba(0, 188, 231, 0.25);
    font-size: 24px;
}

.fvr-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
}

.fvr-benefit strong {
    color: #fff;
}

.fvr-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 24px 0;
    padding: 22px 0;
    border-top: 1px solid rgba(0, 188, 231, 0.35);
    border-bottom: 1px solid rgba(0, 188, 231, 0.14);
}

.fvr-highlights > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border-right: 1px solid rgba(0, 188, 231, 0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.fvr-highlights > div:first-child {
    padding-left: 0;
}

.fvr-highlights > div:last-child {
    border-right: 0;
}

.fvr-highlights i {
    color: #087ff5;
    font-size: 28px;
}

.fvr-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 2%;
}

.fvr-banner-actions a {
    min-width: 205px;
    min-height: 58px;
    font-size: 16px;
}

.fvr-banner-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 690px;
    min-width: 0;
    justify-self: end;
}

.fvr-banner-visual img {
    display: block;
    width: 100%;
    min-width: 0;
    height: auto;
    filter: saturate(1.08) contrast(1.04);
    mix-blend-mode: screen;
}

@media (max-width: 1199.98px) {
    .fvr-banner-grid {
        grid-template-columns: minmax(0, 48%) minmax(0, 52%);
        gap: 20px;
    }

    .fvr-banner-visual {
        max-width: 560px;
    }

    .fvr-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .fvr-highlights > div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 991.98px) {
    .fvr-banner {
        height: auto;
        min-height: 100vh;
        padding: 130px 0 60px;
    }

    .fvr-banner-grid {
        grid-template-columns: 1fr;
    }

    .fvr-banner-copy {
        max-width: 720px;
    }

    .fvr-banner-visual {
        max-width: 680px;
        margin: -20px auto -50px;
        justify-self: center;
    }
}

@media (max-width: 575.98px) {
    .fvr-banner {
        min-height: auto;
        padding-top: 130px;
    }

    .fvr-banner h1 {
        font-size: 2.3rem;
    }

    .fvr-benefit {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .fvr-benefit-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .fvr-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .fvr-highlights > div {
        padding: 0 8px;
        font-size: 12px;
    }

    .fvr-highlights i {
        font-size: 23px;
    }

    .fvr-banner-actions a {
        width: 100%;
    }

    .fvr-banner-visual {
        width: 100%;
        margin: 10px auto -20px;
    }
}

/* FVR overview */
.fvr-overview-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 96% 8%, rgba(0, 188, 231, 0.08), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.fvr-overview-section::after {
    content: "";
    position: absolute;
    right: 2%;
    bottom: 8%;
    width: 120px;
    height: 120px;
    opacity: 0.22;
    background-image: radial-gradient(var(--angel-cyan) 1.5px, transparent 1.5px);
    background-size: 13px 13px;
    pointer-events: none;
}

.fvr-overview-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    align-items: center;
    gap: clamp(44px, 6vw, 86px);
}

.fvr-overview-media {
    overflow: hidden;
    border-radius: 18px 18px 68px 18px;
    box-shadow: 0 28px 65px rgba(11, 39, 64, 0.18);
}

.fvr-overview-media img {
    display: block;
    width: 100%;
    /* min-height: 600px; */
    /* aspect-ratio: 0.76 / 1; */
    /* object-fit: cover; */
}

.fvr-overview-content {
    min-width: 0;
}

.fvr-overview-content .eyebrow {
    margin-bottom: 18px;
    color: var(--angel-blue);
}

.fvr-overview-content .eyebrow::before {
    display: none;
}

.fvr-overview-content h2 {
    max-width: 680px;
    margin: 0;
    color: var(--angel-ink);
    font-size: 32px;
    line-height: 1.08;
    font-weight: 700;
}

.fvr-overview-line {
    display: block;
    width: 58px;
    height: 3px;
    margin: 26px 0 28px;
    background: linear-gradient(90deg, var(--angel-blue), var(--angel-cyan));
}

.fvr-overview-text {
    display: grid;
    gap: 22px;
}

.fvr-overview-text p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 17px;
    line-height: 1.75;
}

.fvr-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.fvr-overview-actions.is-centered {
    /* justify-content: center; */
}

.fvr-overview-actions a {
    min-width: 345px;
    min-height: 60px;
}

.fvr-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border: 1px solid var(--angel-blue);
    border-radius: 999px;
    color: var(--angel-blue);
    font-weight: 800;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.fvr-outline-button:hover {
    color: var(--angel-white);
    background: var(--angel-blue);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .fvr-overview-section {
        padding: 78px 0;
    }

    .fvr-overview-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .fvr-overview-content {
        order: 1;
    }

    .fvr-overview-media {
        order: 2;
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .fvr-overview-media img {
        min-height: 0;
        aspect-ratio: 1.12 / 1;
    }
}

@media (max-width: 575.98px) {
    .fvr-overview-section {
        padding: 62px 0;
    }

    .fvr-overview-media {
        border-radius: 12px 12px 42px 12px;
    }

    .fvr-overview-media img {
        /* aspect-ratio: 0.9 / 1; */
    }

    .fvr-overview-content h2 {
        font-size: 2.25rem;
    }

    .fvr-overview-text p {
        font-size: 15px;
    }

    .fvr-overview-actions a {
        width: 100%;
    }
}

/* FVR business challenges */
.fvr-challenges-section {
    /* padding: 96px 0 100px; */
    background:
        linear-gradient(180deg, var(--angel-white) 0%, #f7fbfe 100%);
}

.fvr-challenges-heading {
    max-width: 1040px;
    margin: 0 auto 38px;
    text-align: center;
}

.fvr-challenges-heading .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
    color: var(--angel-blue);
}

.fvr-challenges-heading .eyebrow::before {
    display: none;
}

.fvr-challenges-heading h2 {
    margin: 0;
    color: var(--angel-ink);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
}

.fvr-challenges-heading h2 span {
    color: var(--angel-blue);
}

.fvr-challenges-heading p {
    max-width: 920px;
    margin: 16px auto 0;
    color: var(--angel-muted);
    font-size: 17px;
    line-height: 1.7;
}

.fvr-challenges-board {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 68px 28px 28px;
    border: 1px solid rgba(4, 125, 196, 0.16);
    border-radius: 14px;
    background:
        radial-gradient(circle at 96% 0%, rgba(0, 188, 231, 0.12), transparent 30%),
        var(--angel-white);
    box-shadow: 0 24px 70px rgba(11, 39, 64, 0.1);
}

.fvr-board-label {
    position: absolute;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 290px;
    min-height: 48px;
    padding: 12px 28px;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    border-radius: 0 0 10px 10px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fvr-board-label-left {
    left: 11%;
    top: 1%;
}

.fvr-board-label-right {
    right: 11%;
     top: 1%;
}

.fvr-challenge-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.fvr-challenge-card,
.fvr-solution-card {
    display: grid;
    grid-template-columns: 58px 58px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 86px;
    padding: 14px 18px;
    border: 1px solid rgba(4, 125, 196, 0.14);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 251, 0.78));
    box-shadow: 0 12px 28px rgba(11, 39, 64, 0.06);
    transition: opacity 0.68s ease, transform 0.68s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: opacity, transform;
}

.fvr-solution-card {
    grid-template-columns: 58px minmax(0, 1fr) 44px;
    background: linear-gradient(135deg, rgba(238, 247, 251, 0.72), rgba(255, 255, 255, 0.98));
}

.fvr-challenge-row .fvr-challenge-card {
    opacity: 0;
    transform: translateX(-44px);
}

.fvr-challenge-row .fvr-solution-card {
    opacity: 0;
    transform: translateX(44px);
}

.fvr-challenge-row.is-active .fvr-challenge-card {
    opacity: 1;
    transform: translateX(0);
}

.fvr-challenge-row.is-solved .fvr-challenge-card {
    opacity: 0.78;
    transform: translateX(0) scale(0.985);
}

.fvr-challenge-row.is-solved .fvr-solution-card {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.16s;
}

.fvr-challenge-card:hover,
.fvr-solution-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 188, 231, 0.35);
    box-shadow: 0 18px 34px rgba(11, 39, 64, 0.12);
}

.fvr-challenge-number {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(4, 125, 196, 0.24);
}

.fvr-challenge-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--angel-blue);
    background: linear-gradient(145deg, rgba(4, 125, 196, 0.08), rgba(0, 188, 231, 0.14));
    font-size: 23px;
}

.fvr-solution-card .fvr-challenge-icon {
    color: var(--angel-cyan);
    background: rgba(0, 188, 231, 0.1);
}

.fvr-challenge-arrow {
    display: grid;
    place-items: center;
    color: var(--angel-cyan);
    font-size: 30px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.4s ease 0.22s, transform 0.4s ease 0.22s;
    will-change: opacity, transform;
}

.fvr-challenge-row.is-solved .fvr-challenge-arrow {
    opacity: 1;
    transform: scaleX(1);
}

.fvr-solution-check {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-left: auto;
    border: 2px solid var(--angel-cyan);
    border-radius: 50%;
    color: var(--angel-blue);
    font-size: 16px;
}

.fvr-challenge-card h3,
.fvr-solution-card h3 {
    margin: 0 0 6px;
    color: var(--angel-ink);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.fvr-challenge-card p,
.fvr-solution-card p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.45;
}

.fvr-challenges-benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 24px;
    padding: 22px;
    border: 1px solid rgba(4, 125, 196, 0.14);
    border-radius: 12px;
    background: var(--angel-white);
    box-shadow: 0 20px 50px rgba(11, 39, 64, 0.08);
}

.fvr-challenges-benefits > div {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    padding: 0 18px;
    border-right: 1px solid var(--angel-line);
}

.fvr-challenges-benefits > div:last-child {
    border-right: 0;
}

.fvr-challenges-benefits i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 24px;
}

.fvr-challenges-benefits strong {
    color: var(--angel-ink);
    font-size: 16px;
    line-height: 1.25;
}

.fvr-challenges-benefits span {
    color: var(--angel-muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1199.98px) {
    .fvr-board-label-left {
        left: 7%;
    }

    .fvr-board-label-right {
        right: 7%;
    }

    .fvr-challenge-card,
    .fvr-solution-card {
        gap: 12px;
        padding: 12px;
    }

    .fvr-challenges-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 0;
    }

    .fvr-challenges-benefits > div:nth-child(3) {
        border-right: 0;
    }
}

@media (max-width: 991.98px) {
    .fvr-challenges-section {
        /* padding: 78px 0; */
    }

    .fvr-challenges-heading h2 {
        font-size: 34px;
    }

    .fvr-challenges-board {
        padding: 26px;
    }

    .fvr-board-label {
        position: static;
        width: 100%;
        min-width: 0;
        border-radius: 8px;
    }

    .fvr-board-label-right {
        margin-top: 10px;
    }

    .fvr-challenge-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .fvr-challenge-arrow {
        transform: rotate(90deg);
    }

    .fvr-challenge-row .fvr-challenge-card,
    .fvr-challenge-row .fvr-solution-card {
        transform: translateY(28px);
    }

    .fvr-challenge-row.is-active .fvr-challenge-card {
        transform: translateY(0);
    }

    .fvr-challenge-row.is-solved .fvr-challenge-card {
        transform: translateY(0) scale(0.985);
    }

    .fvr-challenge-row.is-solved .fvr-solution-card {
        transform: translateY(0);
    }

    .fvr-challenge-row.is-solved .fvr-challenge-arrow {
        transform: rotate(90deg) scaleX(1);
    }

    .fvr-challenges-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fvr-challenges-benefits > div,
    .fvr-challenges-benefits > div:nth-child(3) {
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .fvr-challenges-benefits {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .fvr-challenges-benefits > div {
        padding: 16px 0;
        border-bottom: 1px solid var(--angel-line);
    }

    .fvr-challenges-benefits > div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .fvr-challenges-section {
        padding: 62px 0;
    }

    .fvr-challenges-heading h2 {
        font-size: 2.2rem;
    }

    .fvr-challenges-heading p {
        font-size: 15px;
    }

    .fvr-challenges-board {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 12px;
        border-radius: 10px;
        background: var(--angel-white);
    }

    .fvr-board-label {
        min-height: 0;
        padding: 10px 12px;
        border-radius: 8px 8px 0 0;
        font-size: 11px;
        line-height: 1.25;
        letter-spacing: 0;
    }

    .fvr-board-label-left {
        border-radius: 8px 0 0 8px;
    }

    .fvr-board-label-right {
        margin-top: 0;
        border-radius: 0 8px 8px 0;
    }

    .fvr-challenge-row {
        position: relative;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        margin-top: 14px;
        border: 1px solid rgba(4, 125, 196, 0.16);
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 28px rgba(11, 39, 64, 0.07);
    }

    .fvr-challenge-row:first-of-type {
        margin-top: 16px;
    }

    .fvr-challenge-card,
    .fvr-solution-card,
    .fvr-challenge-row.is-active .fvr-challenge-card,
    .fvr-challenge-row.is-solved .fvr-challenge-card,
    .fvr-challenge-row.is-solved .fvr-solution-card {
        grid-template-columns: 1fr;
        align-content: start;
        gap: 10px;
        min-height: 0;
        height: 100%;
        padding: 14px 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .fvr-challenge-card {
        border-right: 1px solid var(--angel-line);
        background: linear-gradient(180deg, #ffffff, #f8fbfd);
    }

    .fvr-solution-card {
        background: linear-gradient(180deg, #f1fbff, #ffffff);
    }

    .fvr-challenge-card::before,
    .fvr-solution-card::before {
        display: block;
        color: var(--angel-blue);
        font-size: 10px;
        line-height: 1.2;
        font-weight: 900;
        text-transform: uppercase;
    }

    .fvr-challenge-card::before {
        content: "Challenge";
    }

    .fvr-solution-card::before {
        content: "Solution";
    }

    .fvr-challenge-arrow {
        display: none;
    }

    .fvr-challenge-number,
    .fvr-challenge-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .fvr-challenge-number,
    .fvr-challenge-icon {
        display: none;
    }

    .fvr-solution-check {
        display: none;
    }

    .fvr-solution-card > div {
        grid-column: auto;
    }

    .fvr-challenge-card h3,
    .fvr-solution-card h3 {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .fvr-challenge-card p,
    .fvr-solution-card p {
        font-size: 12px;
        line-height: 1.45;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fvr-challenge-row .fvr-challenge-card,
    .fvr-challenge-row .fvr-solution-card,
    .fvr-challenge-arrow {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* FVR image showcase */
.fvr-image-showcase-section {
    /* padding: 90px 0; */
    background: var(--angel-white);
}

.fvr-image-showcase-section-alt {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 188, 231, 0.1), transparent 32%),
        #f7fbfe;
}

.fvr-image-showcase-heading {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.fvr-image-showcase-heading .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
    color: var(--angel-blue);
}

.fvr-image-showcase-heading .eyebrow::before {
    display: none;
}

.fvr-image-showcase-heading h2 {
    margin: 0;
    color: var(--angel-ink);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 600;
}

.fvr-image-showcase-heading p {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--angel-muted);
    font-size: 18px;
    line-height: 1.5;
}

.fvr-image-showcase-frame {
    overflow: hidden;
    border: 1px solid rgba(4, 125, 196, 0.14);
    border-radius: 14px;
    background: var(--angel-white);
    box-shadow: 0 26px 70px rgba(11, 39, 64, 0.11);
}

.fvr-image-showcase-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.fvr-benefits-diagram {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(410px, 1.15fr) minmax(260px, 0.95fr);
    grid-template-areas:
        "contract center spend"
        "cost center sourcing"
        "linkage center productivity"
        ". insights .";
    align-items: center;
    gap: 28px 34px;
    padding-top: 6px;
}

.fvr-benefits-center {
    grid-area: center;
    position: relative;
    justify-self: center;
    width: min(100%, 470px);
    aspect-ratio: 1 / 1;
    overflow: visible;
    border-radius: 8px;
}

.fvr-benefits-center-image {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
}

.fvr-benefits-orbit-icon {
    --fvr-icon-delay: 0s;
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(4, 125, 196, 0.22);
    border-radius: 16px;
    color: var(--angel-blue);
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.95), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(229, 244, 255, 0.9));
    box-shadow: 0 14px 32px rgba(4, 125, 196, 0.18), 0 0 0 8px rgba(0, 188, 231, 0.04);
    font-size: 25px;
    overflow: hidden;
    animation: fvrBenefitIconGlow 2.8s ease-in-out infinite;
    animation-delay: var(--fvr-icon-delay);
}

.fvr-benefits-orbit-icon i {
    animation: fvrBenefitIconSlide 2.6s ease-in-out infinite;
    animation-delay: var(--fvr-icon-delay);
}

.fvr-benefits-orbit-icon::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(0, 188, 231, 0.22);
    border-radius: inherit;
    opacity: 0;
    animation: fvrBenefitIconPulse 2.8s ease-out infinite;
    animation-delay: var(--fvr-icon-delay);
}

.fvr-benefits-orbit-top {
    top: -10%;
    left: 50%;
    transform: translate(-50%, 0);
    --fvr-icon-delay: 0s;
}

.fvr-benefits-orbit-left-top {
    top: 15%;
    left: -7%;
    --fvr-icon-delay: 0.35s;
}

.fvr-benefits-orbit-right-top {
    top: 15%;
    right: -7%;
    --fvr-icon-delay: 0.7s;
}

.fvr-benefits-orbit-left-bottom {
    left: -3%;
    bottom: 10%;
    --fvr-icon-delay: 1.05s;
}

.fvr-benefits-orbit-right-bottom {
    right: -6%;
    bottom: 10%;
    --fvr-icon-delay: 1.4s;
}

.fvr-benefits-orbit-bottom {
    bottom: -9%;
    left: 50%;
    transform: translate(-50%, 0);
    --fvr-icon-delay: 1.75s;
}

@keyframes fvrBenefitIconSlide {
    0%,
    100% {
        transform: translateX(-8px);
    }

    50% {
        transform: translateX(8px);
    }
}

@keyframes fvrBenefitIconGlow {
    0%,
    100% {
        box-shadow: 0 14px 32px rgba(4, 125, 196, 0.16), 0 0 0 8px rgba(0, 188, 231, 0.04);
    }

    50% {
        box-shadow: 0 18px 40px rgba(4, 125, 196, 0.24), 0 0 0 12px rgba(0, 188, 231, 0.08);
    }
}

@keyframes fvrBenefitIconPulse {
    0% {
        opacity: 0.72;
        scale: 0.82;
    }

    100% {
        opacity: 0;
        scale: 1.34;
    }
}

.fvr-benefits-card {
    position: relative;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    min-height: 166px;
    padding: 22px;
    border: 1px solid rgba(4, 125, 196, 0.26);
    border-radius: 8px;
    background: var(--angel-white);
    box-shadow: 0 18px 44px rgba(11, 39, 64, 0.09);
}

.fvr-benefits-card-contract {
    grid-area: contract;
}

.fvr-benefits-card-spend {
    grid-area: spend;
}

.fvr-benefits-card-cost {
    grid-area: cost;
}

.fvr-benefits-card-sourcing {
    grid-area: sourcing;
}

.fvr-benefits-card-linkage {
    grid-area: linkage;
}

.fvr-benefits-card-productivity {
    grid-area: productivity;
}

.fvr-benefits-card-insights {
    grid-area: insights;
    width: min(100%, 620px);
    min-height: 132px;
    margin: 0 auto;
}

.fvr-benefits-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 8px;
    color: var(--angel-white);
    font-size: 25px;
    box-shadow: 0 16px 30px rgba(4, 125, 196, 0.18);
}

.fvr-benefits-icon-gold {
    background: linear-gradient(135deg, #b89100, #f3cf32);
}

.fvr-benefits-icon-orange {
    background: linear-gradient(135deg, #9b4a00, #ff8d1f);
}

.fvr-benefits-icon-teal {
    background: linear-gradient(135deg, #008b91, #13c3b5);
}

.fvr-benefits-icon-red {
    background: linear-gradient(135deg, #b60f28, #ff4052);
}

.fvr-benefits-icon-blue {
    background: linear-gradient(135deg, #075cc6, #1f9cff);
}

.fvr-benefits-icon-purple {
    background: linear-gradient(135deg, #7027a8, #c342f2);
}

.fvr-benefits-icon-sky {
    background: linear-gradient(135deg, #056ccf, #21b7ff);
}

.fvr-benefits-card h3 {
    margin: 0 0 12px;
    color: var(--angel-ink);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.fvr-benefits-card h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: var(--angel-cyan);
}

.fvr-benefits-card p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.58;
}

.fvr-dashboard-process-section {
    padding: 36px 0;
    background: var(--angel-white);
}

.fvr-dashboard-process-section .fvr-image-showcase-heading {
    margin-bottom: 22px;
}

.fvr-dashboard-process-image {
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
    /* border-radius: 12px;
    box-shadow: 0 24px 60px rgba(11, 39, 64, 0.12); */
}

.fvr-dashboard-process-image img {
    display: block;
    width: 100%;
    height: auto;
}

.fvr-dashboard-process-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(330px, 0.9fr) minmax(260px, 0.92fr);
    grid-template-areas:
        "communication center validation"
        "format center finance"
        "contract center dashboard";
    align-items: center;
    gap: 6px 2px;
    max-width: 1120px;
    margin: 0 auto;
}

.fvr-dashboard-process-center {
    grid-area: center;
    align-self: center;
    justify-self: center;
    width: min(100%, 390px);
}

.fvr-dashboard-process-center img {
    display: block;
    width: 100%;
    height: auto;
}

.fvr-dashboard-process-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 118px;
    padding: 17px;
    border: 1px solid rgba(4, 125, 196, 0.22);
    border-radius: 8px;
    background: var(--angel-white);
    box-shadow: 0 18px 44px rgba(11, 39, 64, 0.08);
}

.fvr-dashboard-process-communication {
    grid-area: communication;
}

.fvr-dashboard-process-format {
    grid-area: format;
}

.fvr-dashboard-process-contract {
    grid-area: contract;
}

.fvr-dashboard-process-validation {
    grid-area: validation;
}

.fvr-dashboard-process-finance {
    grid-area: finance;
}

.fvr-dashboard-process-dashboard {
    grid-area: dashboard;
}

.fvr-dashboard-process-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--angel-white);
    font-size: 20px;
    background: linear-gradient(135deg, #0b93ff, #512bd4);
    box-shadow: 0 14px 30px rgba(4, 125, 196, 0.18);
}

.fvr-dashboard-process-card h3 {
    margin: 0 0 9px;
    color: var(--angel-ink);
    font-size: 18px;
    line-height: 1.15;
    font-weight: 600;
}

.fvr-dashboard-process-card h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 9px;
    border-radius: 999px;
    background: var(--angel-cyan);
}

.fvr-dashboard-process-card p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 13px;
    line-height: 1.55;
}

.fvr-dashboard-process-card ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--angel-muted);
    font-size: 12px;
    line-height: 1.45;
}

.fvr-dashboard-process-card li {
    position: relative;
    padding-left: 15px;
}

.fvr-dashboard-process-card li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--angel-blue);
}

.fvr-benefits-visual-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(360px, 1.45fr) minmax(220px, 0.82fr);
    grid-template-areas:
        "cost image accuracy"
        "time image compliance"
        ". insight .";
    align-items: stretch;
    gap: 18px;
}

.fvr-benefits-image-frame {
    grid-area: image;
    align-self: center;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 8px;
}

.fvr-dashboard-image-frame {
    max-width: 720px;
}

.fvr-benefit-feature {
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(4, 125, 196, 0.12);
    border-radius: 14px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 188, 231, 0.08), transparent 34%),
        var(--angel-white);
    box-shadow: 0 20px 52px rgba(11, 39, 64, 0.08);
}

.fvr-benefit-feature-cost {
    grid-area: cost;
}

.fvr-benefit-feature-accuracy {
    grid-area: accuracy;
}

.fvr-benefit-feature-time {
    grid-area: time;
}

.fvr-benefit-feature-compliance {
    grid-area: compliance;
}

.fvr-benefit-feature-insights {
    grid-area: insight;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    max-width: 560px;
    margin: 4px auto 0;
}

.fvr-benefit-feature > span {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 13px;
    color: var(--angel-white);
    background: linear-gradient(135deg, #703cff 0%, var(--angel-blue) 100%);
    box-shadow: 0 16px 30px rgba(4, 125, 196, 0.18);
    font-size: 24px;
}

.fvr-benefit-feature-insights > span {
    grid-row: span 2;
    margin-bottom: 0;
}

.fvr-benefit-feature h3 {
    margin: 0 0 13px;
    color: var(--angel-ink);
    font-size: 22px;
    line-height: 1.16;
    font-weight: 800;
}

.fvr-benefit-feature h3::after {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    margin-top: 12px;
    background: linear-gradient(90deg, #703cff, var(--angel-cyan));
}

.fvr-benefit-feature p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.58;
}

.fvr-benefit-feature-insights p {
    font-size: 13px;
}

@media (max-width: 1199.98px) {
    .fvr-dashboard-process-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "center center"
            "communication validation"
            "format finance"
            "contract dashboard";
        gap: 18px;
    }

    .fvr-dashboard-process-center {
        width: min(100%, 430px);
    }

    .fvr-benefits-diagram {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "center center"
            "contract spend"
            "cost sourcing"
            "linkage productivity"
            "insights insights";
        gap: 22px;
    }

    .fvr-benefits-center {
        width: min(100%, 520px);
    }

    .fvr-benefits-orbit-icon {
        width: 54px;
        height: 54px;
        font-size: 23px;
    }

    .fvr-benefits-visual-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "image image"
            "cost accuracy"
            "time compliance"
            "insight insight";
    }

    .fvr-benefits-image-frame {
        max-width: 760px;
    }
}

@media (max-width: 767.98px) {
    .fvr-image-showcase-section {
        padding: 66px 0;
    }

    .fvr-image-showcase-heading h2 {
        font-size: 32px;
    }

    .fvr-image-showcase-heading p {
        font-size: 16px;
    }

    .fvr-image-showcase-frame {
        border-radius: 10px;
    }

    .fvr-dashboard-process-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "center"
            "communication"
            "format"
            "contract"
            "validation"
            "finance"
            "dashboard";
    }

    .fvr-dashboard-process-card {
        width: 100%;
        min-height: 0;
        padding: 20px;
    }

    .fvr-benefits-diagram {
        grid-template-columns: 1fr;
        grid-template-areas:
            "center"
            "contract"
            "spend"
            "cost"
            "sourcing"
            "linkage"
            "productivity"
            "insights";
    }

    .fvr-benefits-center {
        width: min(100%, 430px);
    }

    .fvr-benefits-orbit-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
    }

    .fvr-benefits-orbit-left-top {
        left: 9%;
    }

    .fvr-benefits-orbit-right-top {
        right: 9%;
    }

    .fvr-benefits-orbit-left-bottom {
        left: 11%;
    }

    .fvr-benefits-orbit-right-bottom {
        right: 11%;
    }

    .fvr-benefits-card,
    .fvr-benefits-card-insights {
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 20px;
    }

    .fvr-benefits-visual-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "cost"
            "accuracy"
            "time"
            "compliance"
            "insight";
    }

    .fvr-benefit-feature,
    .fvr-benefit-feature-insights {
        display: block;
        max-width: none;
        margin: 0;
        padding: 20px;
    }

    .fvr-benefit-feature-insights > span {
        margin-bottom: 16px;
    }

    .fvr-benefit-feature h3 {
        font-size: 21px;
    }

    .fvr-benefit-feature p,
    .fvr-benefit-feature-insights p {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .fvr-image-showcase-heading h2 {
        font-size: 2.15rem;
    }

    .fvr-benefits-center {
        width: min(100%, 360px);
    }

    .fvr-benefits-orbit-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 17px;
        box-shadow: 0 10px 22px rgba(4, 125, 196, 0.16), 0 0 0 5px rgba(0, 188, 231, 0.04);
    }

    .fvr-benefits-orbit-icon::after {
        inset: -5px;
    }

    .fvr-benefits-card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .fvr-benefits-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .fvr-benefits-card h3 {
        font-size: 18px;
    }

    .fvr-benefits-card p {
        font-size: 13px;
    }

    .fvr-dashboard-process-card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .fvr-dashboard-process-icon {
        width: 54px;
        height: 54px;
        font-size: 21px;
    }

    .fvr-dashboard-process-card h3 {
        font-size: 19px;
    }

    .fvr-dashboard-process-card p,
    .fvr-dashboard-process-card ul {
        font-size: 13px;
    }

    .fvr-benefit-feature > span {
        width: 64px;
        height: 64px;
        font-size: 25px;
    }
}

/* TMS seamless integrations */
.tms-integrations-section {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    background:
        radial-gradient(circle at 86% 18%, rgba(0, 188, 231, 0.14), transparent 34%),
        linear-gradient(180deg, #f7fbfe 0%, var(--angel-white) 100%);
}

.tms-integrations-section::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 720px;
    height: 420px;
    background-image: radial-gradient(rgba(4, 125, 196, 0.22) 1.4px, transparent 1.4px);
    background-size: 18px 18px;
    opacity: 0.34;
    pointer-events: none;
}

.tms-integrations-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
    align-items: center;
    gap: 56px;
}

.tms-integrations-copy .eyebrow {
    margin-bottom: 18px;
    color: var(--angel-blue);
}

.tms-integrations-copy .eyebrow::before {
    display: none;
}

.tms-integrations-copy h2 {
    max-width: 740px;
    margin: 0;
    color: var(--angel-ink);
    font-size: 39px;
    line-height: 1.18;
    font-weight: 800;
}

.tms-integrations-copy > p {
    max-width: 700px;
    margin: 0 0 34px;
    color: var(--angel-muted);
    font-size: 17px;
    line-height: 1.75;
}

.tms-integration-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.tms-integration-list article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 16px 18px;
    border: 1px solid rgba(4, 125, 196, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(11, 39, 64, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tms-integration-list article:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 231, 0.32);
    box-shadow: 0 22px 46px rgba(11, 39, 64, 0.11);
}

.tms-integration-list i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 22px;
}

.tms-integration-list h3 {
    margin: 0 0 5px;
    color: var(--angel-ink);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.tms-integration-list p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 13px;
    line-height: 1.45;
}

.erfq-ai-intelligence-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 92% 12%, rgba(0, 188, 231, 0.12), transparent 30%),
        linear-gradient(180deg, #f7fbfe 0%, var(--angel-white) 100%);
}

.erfq-ai-intelligence-section::before {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -180px;
    width: 620px;
    height: 380px;
    background-image: radial-gradient(rgba(4, 125, 196, 0.18) 1.3px, transparent 1.3px);
    background-size: 18px 18px;
    opacity: 0.28;
    pointer-events: none;
}

.erfq-ai-intelligence-section .container {
    position: relative;
    z-index: 1;
}

.erfq-ai-intelligence-heading {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.erfq-ai-intelligence-heading .eyebrow {
    justify-content: center;
    margin-bottom: 16px;
    color: var(--angel-blue);
}

.erfq-ai-intelligence-heading .eyebrow::before {
    display: none;
}

.erfq-ai-intelligence-heading h2 {
    margin: 0;
    color: var(--angel-ink);
    font-size: 40px;
    line-height: 1.16;
    font-weight: 600;
}

.erfq-ai-intelligence-heading p {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--angel-muted);
    font-size: 17px;
    line-height: 1.72;
}

.erfq-ai-intelligence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.erfq-ai-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    min-height: 178px;
    padding: 26px;
    border: 1px solid rgba(4, 125, 196, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(11, 39, 64, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.erfq-ai-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 231, 0.34);
    box-shadow: 0 26px 58px rgba(11, 39, 64, 0.13);
}

.erfq-ai-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 16px;
    color: var(--angel-white);
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.32), transparent 34%),
        linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    box-shadow: 0 16px 34px rgba(4, 125, 196, 0.2);
}

.erfq-ai-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.erfq-ai-card h3 {
    margin: 0 0 11px;
    color: var(--angel-ink);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}

.erfq-ai-card h3::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--angel-blue), var(--angel-cyan));
}

.erfq-ai-card p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 15px;
    line-height: 1.62;
}

.tms-integrations-visual {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 50px;
    min-height: 0;
}

.tms-integration-orbit {
    position: relative;
    width: min(520px, 92%);
    aspect-ratio: 1;
    border: 1px dashed rgba(4, 125, 196, 0.35);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 31%, rgba(238, 247, 251, 0.82) 32% 43%, transparent 44%);
    box-shadow: inset 0 0 0 72px rgba(4, 125, 196, 0.04), 0 26px 60px rgba(11, 39, 64, 0.08);
}

.tms-integration-orbit::before,
.tms-integration-orbit::after {
    content: "";
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(4, 125, 196, 0.42);
    border-radius: 50%;
}

.tms-integration-orbit::after {
    inset: 31%;
    border-style: dashed;
}

.tms-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 12px;
    width: 220px;
    height: 220px;
    padding: 26px;
    border: 1px solid rgba(4, 125, 196, 0.28);
    border-radius: 50%;
    color: var(--angel-ink);
    background: var(--angel-white);
    text-align: center;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 38px rgba(11, 39, 64, 0.09);
}

.tms-orbit-core i {
    color: var(--angel-blue);
    font-size: 58px;
}

.tms-orbit-core strong {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.tms-integration-orbit > span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 7px;
    width: 118px;
    height: 118px;
    padding: 14px;
    border: 1px solid rgba(4, 125, 196, 0.18);
    border-radius: 50%;
    color: var(--angel-ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(11, 39, 64, 0.11);
    font-size: 12px;
    line-height: 1.15;
    font-weight: 800;
    text-align: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(235px) rotate(var(--reverse));
}

.tms-integration-orbit > span i {
    color: var(--angel-blue);
    font-size: 27px;
}

.tms-security-panel {
    width: min(620px, 100%);
    padding: 28px;
    border: 1px solid rgba(4, 125, 196, 0.14);
    border-radius: 14px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 188, 231, 0.14), transparent 36%),
        rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 54px rgba(11, 39, 64, 0.1);
}

.tms-security-head {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.tms-security-head > span {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    color: var(--angel-white);
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 28px;
    box-shadow: 0 16px 32px rgba(4, 125, 196, 0.2);
}

.tms-security-head h3 {
    margin: 0 0 10px;
    color: var(--angel-ink);
    font-size: 24px;
    line-height: 1.24;
    font-weight: 800;
}

.tms-security-head p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.68;
}

.tms-security-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.tms-security-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
    color: var(--angel-ink);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.tms-security-list i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    color: var(--angel-white);
    background: var(--angel-blue);
    font-size: 10px;
}

@media (max-width: 1199.98px) {
    .tms-integrations-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .erfq-ai-card {
        min-height: 198px;
    }

    .tms-integration-orbit {
        transform: none;
    }

}

@media (max-width: 767.98px) {
    .tms-integrations-section {
        padding: 76px 0;
    }

    .tms-integrations-copy h2 {
        font-size: 32px;
    }

    .tms-integration-list {
        grid-template-columns: 1fr;
    }

    .erfq-ai-intelligence-section {
        padding: 76px 0;
    }

    .erfq-ai-intelligence-heading h2 {
        font-size: 32px;
    }

    .erfq-ai-intelligence-heading p {
        font-size: 16px;
    }

    .erfq-ai-intelligence-grid {
        grid-template-columns: 1fr;
    }

    .erfq-ai-card {
        min-height: 0;
    }

    .tms-integrations-visual {
        min-height: 0;
    }

    .tms-integration-orbit {
        top: auto;
        left: auto;
        width: 100%;
        max-width: 520px;
        transform: none;
    }

    .tms-integration-orbit > span {
        width: 88px;
        height: 88px;
        font-size: 10px;
        transform: translate(-50%, -50%) rotate(var(--angle)) translate(205px) rotate(var(--reverse));
    }

    .tms-integration-orbit > span i {
        font-size: 20px;
    }

    .tms-orbit-core {
        width: 168px;
        height: 168px;
    }

    .tms-orbit-core i {
        font-size: 42px;
    }

    .tms-orbit-core strong {
        font-size: 12px;
    }

    .tms-security-panel {
        padding: 22px;
    }

    .tms-security-head {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
    }

    .tms-security-head > span {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        font-size: 23px;
    }

    .tms-security-head h3 {
        font-size: 21px;
    }

    .tms-security-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .tms-integrations-copy h2 {
        font-size: 2.2rem;
    }

    .tms-integration-list article {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 14px;
    }

    .tms-integration-list i {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .erfq-ai-intelligence-heading h2 {
        font-size: 2.2rem;
    }

    .erfq-ai-card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .erfq-ai-icon {
        width: 54px;
        height: 54px;
        border-radius: 12px;
    }

    .erfq-ai-icon svg {
        width: 31px;
        height: 31px;
    }

    .erfq-ai-card h3 {
        font-size: 19px;
    }

    .erfq-ai-card p {
        font-size: 13px;
    }

    .tms-integration-orbit {
        display: none;
    }

    .tms-security-head {
        grid-template-columns: 1fr;
    }
}

/* FVR AI capabilities */
.fvr-capabilities-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(4, 125, 196, 0.08), transparent 32%),
        #f7fbfe;
}

.fvr-capabilities-heading {
    max-width: 1120px;
    margin: 0 auto 44px;
    text-align: center;
}

.fvr-capabilities-heading .eyebrow {
    color: var(--angel-blue);
}

.fvr-capabilities-heading .eyebrow::before {
    width: 26px;
}

.fvr-capabilities-heading h2 {
    margin: 0 0 16px;
    color: var(--angel-ink);
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
}

.fvr-capabilities-heading .fvr-overview-line {
    margin-left: auto;
    margin-right: auto;
}

.fvr-capabilities-heading p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 17px;
    line-height: 1.7;
}

.fvr-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.fvr-capability-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1.18fr);
    align-items: center;
    min-height: 305px;
    overflow: hidden;
    border: 1px solid rgba(4, 125, 196, 0.1);
    border-radius: 12px;
    background: var(--angel-white);
    box-shadow: 0 18px 45px rgba(11, 39, 64, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fvr-capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 56px rgba(11, 39, 64, 0.13);
}

.fvr-capability-copy {
    align-self: stretch;
    padding: 28px 10px 28px 28px;
}

.fvr-capability-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-weight: 900;
}

.fvr-capability-copy h3 {
    margin: 0;
    color: var(--angel-ink);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}

/* .fvr-card-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 13px 0 16px;
    background: var(--angel-blue);
} */

.fvr-capability-copy p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.65;
}

.fvr-capability-art {
    padding: 18px 16px 18px 0;
}

.fvr-capability-art svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 12px 15px rgba(11, 39, 64, 0.08));
}

.svg-panel { fill: #fff; stroke: #dceaf3; stroke-width: 1.5; }
.svg-panel-dark { fill: #0b2740; }
.svg-soft { fill: #f2f8fc; }
.svg-accent-fill { fill: var(--angel-blue); }
.svg-success-fill { fill: #16b877; }
.svg-success-box { fill: #eaf9f2; stroke: #9de0c3; }
.svg-title { fill: var(--angel-ink); font: 700 11px "DM Sans", sans-serif; }
.svg-label { fill: var(--angel-muted); font: 500 9px "DM Sans", sans-serif; }
.svg-ai { fill: #fff; font: 800 22px "Rethink Sans", sans-serif; }
.svg-success { fill: #109b65; font: 700 10px "DM Sans", sans-serif; }
.svg-line { fill: none; stroke: #c7dce9; stroke-width: 2; stroke-linecap: round; }
.svg-stroke { fill: none; stroke: var(--angel-blue); stroke-width: 3; stroke-linecap: round; }
.svg-check { fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.svg-shield { fill: #075bad; stroke: #04427e; stroke-width: 2; }
.svg-doc { fill: #eef7fb; stroke: var(--angel-blue); stroke-width: 2; }
.svg-arrow { fill: none; stroke: var(--angel-blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svg-alert-row rect { fill: #fff0f1; }
.svg-alert-row text { fill: #dc3545; font: 600 9px "DM Sans", sans-serif; }
.svg-warn-row rect { fill: #fff6e8; }
.svg-warn-row text { fill: #f28c18; font: 600 9px "DM Sans", sans-serif; }
.svg-folder path { fill: #dff2fb; stroke: var(--angel-blue); stroke-width: 1.5; }
.svg-folder text { fill: var(--angel-muted); font: 600 8px "DM Sans", sans-serif; }
.svg-dot-red { fill: #ff605c; }
.svg-dot-yellow { fill: #ffbd44; }
.svg-dot-green { fill: #00ca4e; }

@media (max-width: 1199.98px) {
    .fvr-capability-card {
        grid-template-columns: 1fr;
    }

    .fvr-capability-copy {
        padding: 26px 26px 10px;
    }

    .fvr-capability-art {
        padding: 0 22px 20px;
    }
}

@media (max-width: 767.98px) {
    .fvr-capabilities-section {
        padding: 72px 0;
    }

    .fvr-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .fvr-capabilities-heading p {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .fvr-capability-copy {
        padding: 22px 22px 8px;
    }

    .fvr-capability-art {
        padding: 0 12px 16px;
    }
}

/* FVR verification workflow */
.fvr-workflow-section {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 188, 231, 0.08), transparent 23%),
        radial-gradient(circle at 100% 100%, rgba(4, 125, 196, 0.08), transparent 23%),
        #f8fbfd;
}

.fvr-workflow-heading {
    max-width: 1000px;
    margin: 0 auto 58px;
    text-align: center;
}

.fvr-workflow-heading .eyebrow {
    color: var(--angel-blue);
}

.fvr-workflow-heading h2 {
    margin: 0 0 16px;
    color: var(--angel-ink);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.fvr-workflow-heading p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 17px;
    line-height: 1.7;
}

.fvr-workflow-heading p span {
    color: var(--angel-blue);
    font-weight: 600;
}

.fvr-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.logistics-control-workflow-section .fvr-workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fvr-page-workflow-section .fvr-workflow-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fvr-workflow-card {
    position: relative;
    min-height: 340px;
    padding: 42px 22px 26px;
    border: 1px solid rgba(4, 125, 196, 0.18);
    border-bottom: 6px solid var(--angel-blue);
    border-radius: 12px;
    background: var(--angel-white);
    box-shadow: 0 18px 42px rgba(11, 39, 64, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fvr-workflow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 54px rgba(11, 39, 64, 0.13);
}

.fvr-workflow-number {
    position: absolute;
    top: -27px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 5px solid #f8fbfd;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 18px;
    font-weight: 800;
    transform: translateX(-50%);
}

.fvr-workflow-card h3 {
    min-height: 48px;
    margin: 0;
    color: var(--angel-blue);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.fvr-workflow-card .fvr-card-line {
    margin: 12px auto 20px;
}

.fvr-workflow-icon {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 28px;
    color: var(--angel-blue);
    background: linear-gradient(145deg, #edf8fd, #dcedf8);
    border: 1px solid rgba(4, 125, 196, 0.18);
    font-size: 58px;
}

.fvr-workflow-card p,
.fvr-workflow-card li {
    color: var(--angel-muted);
    font-size: 13px;
    line-height: 1.6;
}

.fvr-workflow-card p {
    margin: 0 0 12px;
}

.fvr-workflow-accent {
    color: var(--angel-blue) !important;
}

.fvr-workflow-card ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fvr-workflow-card li {
    position: relative;
    padding-left: 22px;
}

.fvr-workflow-card li::before {
    content: "\f058";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--angel-blue);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.fvr-workflow-benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 44px auto 0;
    padding: 22px;
    border: 1px solid rgba(4, 125, 196, 0.15);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(11, 39, 64, 0.08);
}

.fvr-workflow-benefits > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 16px;
    border-right: 1px solid var(--angel-line);
}

.fvr-workflow-benefits > div:last-child {
    border-right: 0;
}

.fvr-workflow-benefits i {
    color: var(--angel-blue);
    font-size: 29px;
}

.fvr-workflow-benefits span {
    color: var(--angel-ink);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.tms-process-section {
    padding: 86px 0 42px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.78)),
        url("../images/process-wave-bg.webp") center top / cover no-repeat;
}

.tms-process-section .fvr-workflow-heading {
    max-width: 720px;
    margin-bottom: 18px;
}

.tms-process-section .fvr-workflow-heading .eyebrow {
    justify-content: center;
    padding: 0;
    border-radius: 0;
    color: var(--angel-blue);
    background: transparent;
    box-shadow: none;
}

.tms-process-section .fvr-workflow-heading .eyebrow::before {
    display: block;
}

.tms-process-section .fvr-workflow-heading h2 {
    margin-bottom: 12px;
    /* color: #173c8b; */
}

.tms-process-section .fvr-workflow-heading p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
}

.tms-process-wave {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
    min-height: 410px;
    padding-top: 24px;
}

.tms-process-card {
    position: relative;
    min-width: 0;
    min-height: 212px;
    padding: 22px 20px;
    border: 1px solid rgba(120, 96, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(11, 39, 64, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tms-process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 231, 0.38);
    box-shadow: 0 24px 54px rgba(11, 39, 64, 0.13);
}

.tms-process-card-1,
.tms-process-card-3,
.tms-process-card-5 {
       margin-top: 59%;
    left: -4%;
}

.tms-process-card-2,
.tms-process-card-4,
.tms-process-card-6 {
       margin-top: 119%;
    right: 3%;
}

.tms-process-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--angel-white);
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.35), transparent 36%),
        linear-gradient(135deg, #55b8ef, #7a55ff);
    box-shadow: 0 14px 28px rgba(4, 125, 196, 0.18);
    font-size: 22px;
}

.tms-process-card h3 {
    margin: 0;
    color: #06184a;
    font-size: 17px;
    line-height: 1.18;
    font-weight: 700;
}

.tms-process-card .fvr-card-line {
    width: 32px;
    height: 3px;
    margin: 12px 0 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--angel-blue), var(--angel-cyan));
}

.tms-process-card p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 13px;
    line-height: 1.55;
}

.tms-process-section .fvr-workflow-benefits {
    max-width: 960px;
    margin-top: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1199.98px) {
    .fvr-workflow-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px 18px;
    }

    .tms-process-wave {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 0;
        padding-top: 24px;
    }

    .tms-process-card-1,
    .tms-process-card-2,
    .tms-process-card-3,
    .tms-process-card-4,
    .tms-process-card-5,
    .tms-process-card-6 {
        margin-top: 0;
    }

    .fvr-workflow-card:not(:last-child)::after {
        display: none;
    }

    .fvr-workflow-card {
        min-height: 500px;
    }

    .fvr-workflow-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 0;
    }

    .fvr-workflow-benefits > div:nth-child(3) {
        border-right: 0;
    }
}

@media (min-width: 768px) {
    .fvr-page-workflow-section .fvr-workflow-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
    }

    .fvr-page-workflow-section .fvr-workflow-card {
        min-height: 340px;
    }
}

@media (max-width: 767.98px) {
    .fvr-workflow-section {
        padding: 72px 0;
    }

    .tms-process-section {
        padding: 72px 0 34px;
        background: #f8fbfd;
    }

    .fvr-workflow-heading h2 {
        font-size: 30px;
    }

    .tms-process-section .fvr-workflow-heading h2 {
        font-size: 30px;
    }

    .fvr-workflow-grid {
        grid-template-columns: 1fr;
    }

    .tms-process-wave {
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: center;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding-top: 0;
    }

    .fvr-workflow-card {
        min-height: 0;
    }

    .tms-process-card {
        width: min(100%, 320px);
        min-height: 0;
        margin: 0 auto;
        padding: 20px 18px;
        text-align: center;
    }

    .tms-process-icon {
        width: 50px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;
        font-size: 20px;
    }

    .tms-process-card .fvr-card-line {
        margin-left: auto;
        margin-right: auto;
    }

    .fvr-workflow-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .fvr-workflow-benefits > div,
    .fvr-workflow-benefits > div:nth-child(3) {
        justify-content: flex-start;
        border-right: 0;
    }
}

@media (max-width: 575.98px) {
    .tms-process-section {
        padding: 62px 0 30px;
    }

    .tms-process-wave {
        max-width: 310px;
    }

    .tms-process-card {
        width: min(100%, 300px);
        padding: 18px 16px;
    }

    .tms-process-card h3 {
        font-size: 15px;
    }

    .tms-process-card p {
        font-size: 12px;
    }

    .fvr-workflow-benefits {
        grid-template-columns: 1fr;
    }
}

/* Shipment tracking audience section */
.shipment-advantage-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(0, 188, 231, 0.1), transparent 28%),
        radial-gradient(circle at 92% 72%, rgba(4, 125, 196, 0.08), transparent 30%),
        var(--angel-white);
}

.shipment-advantage-heading {
    max-width: 880px;
    margin: 0 auto 44px;
    text-align: center;
}

.shipment-advantage-heading .eyebrow {
    justify-content: center;
    color: var(--angel-blue);
}

.shipment-advantage-heading .eyebrow::before {
    display: none;
}

.shipment-advantage-heading h2 {
    margin: 12px 0 14px;
    color: var(--angel-ink);
    font-size: 32px;
    line-height: 1.08;
    font-weight: 600;
}

.shipment-advantage-heading h2 span {
    color: var(--angel-blue);
}

.shipment-advantage-heading p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--angel-muted);
    font-size: 16px;
    line-height: 1.75;
}

.shipment-advantage-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 1.2fr) minmax(260px, 0.95fr);
    grid-template-areas:
        "logistics visual operations"
        "support visual leaders";
    align-items: center;
    gap: 24px 34px;
}

.shipment-advantage-visual {
    grid-area: visual;
    align-self: center;
    justify-self: center;
    width: min(100%, 560px);
}

.shipment-advantage-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.shipment-advantage-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    min-height: 286px;
    padding: 24px;
    border: 1px solid rgba(4, 125, 196, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 50px rgba(11, 39, 64, 0.09);
}

.shipment-advantage-card-blue {
    grid-area: logistics;
}

.shipment-advantage-card-green {
    grid-area: operations;
}

.shipment-advantage-card-purple {
    grid-area: support;
}

.shipment-advantage-card-orange {
    grid-area: leaders;
}

.shipment-advantage-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    color: var(--angel-white);
    font-size: 26px;
    box-shadow: 0 16px 30px rgba(4, 125, 196, 0.18);
}

.shipment-advantage-card-blue .shipment-advantage-icon {
    background: linear-gradient(135deg, #075cc6, #1f9cff);
}

.shipment-advantage-card-green .shipment-advantage-icon {
    background: linear-gradient(135deg, #188e36, #70d85b);
}

.shipment-advantage-card-purple .shipment-advantage-icon {
    background: linear-gradient(135deg, #7027a8, #c342f2);
}

.shipment-advantage-card-orange .shipment-advantage-icon {
    background: linear-gradient(135deg, #d66a00, #ff9b22);
}

.shipment-advantage-card h3 {
    margin: 0 0 10px;
    color: var(--angel-ink);
    font-size: 21px;
    line-height: 1.18;
    font-weight: 700;
}

.shipment-advantage-card p {
    margin: 0 0 16px;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.6;
}

.shipment-advantage-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    /* list-style: none; */
}

.shipment-advantage-card li {
    position: relative;
    /* padding-left: 24px; */
    color: var(--angel-ink);
    font-size: 14px;
    line-height: 1.35;
}

.shipment-advantage-card li::before {
    content: "\f058";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--angel-blue);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.shipment-advantage-card-green li::before {
    color: #31a946;
}

.shipment-advantage-card-purple li::before {
    color: #8a4ed8;
}

.shipment-advantage-card-orange li::before {
    color: #f08b18;
}

.shipment-advantage-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 36px auto 0;
    padding: 22px;
    border: 1px solid rgba(4, 125, 196, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(11, 39, 64, 0.09);
}

.shipment-advantage-strip > div {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 0 18px;
    border-right: 1px solid var(--angel-line);
}

.shipment-advantage-strip > div:last-child {
    border-right: 0;
}

.shipment-advantage-strip i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
    font-size: 21px;
}

.shipment-advantage-strip strong {
    color: var(--angel-ink);
    font-size: 14px;
    line-height: 1.2;
}

.shipment-advantage-strip span {
    color: var(--angel-muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1199.98px) {
    .shipment-advantage-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "visual visual"
            "logistics operations"
            "support leaders";
    }

    .shipment-advantage-visual {
        max-width: 620px;
    }

    .shipment-advantage-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 0;
    }

    .shipment-advantage-strip > div:nth-child(2),
    .shipment-advantage-strip > div:nth-child(4) {
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .shipment-advantage-section {
        padding: 72px 0;
    }

    .shipment-advantage-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "logistics"
            "operations"
            "support"
            "leaders";
    }

    .shipment-advantage-card {
        min-height: 0;
    }

    .shipment-advantage-strip {
        grid-template-columns: 1fr;
    }

    .shipment-advantage-strip > div,
    .shipment-advantage-strip > div:nth-child(2),
    .shipment-advantage-strip > div:nth-child(4) {
        border-right: 0;
    }
}

@media (max-width: 575.98px) {
    .shipment-advantage-card {
        grid-template-columns: 1fr;
    }
}

/* FVR freight software features */
.fvr-features-section {
    padding-top: 100px;
    background: var(--angel-white);
}

.fvr-features-top {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 82px);
    padding-bottom: 70px;
}

.fvr-features-copy .eyebrow {
    color: var(--angel-blue);
}

.fvr-features-copy .eyebrow::before {
    display: none;
}

.fvr-features-copy h2 {
    max-width: 590px;
    margin: 0;
    color: var(--angel-ink);
    font-size: 40px;
    line-height: 1.06;
    font-weight: 600;
}

.fvr-features-copy h2 span {
    display: block;
    color: var(--angel-blue);
    font-weight: 600;
}

.fvr-features-copy > p {
    margin: 0;
    color: var(--angel-muted);
    font-size: 15px;
    line-height: 1.75;
}

.fvr-feature-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.fvr-feature-stats > div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    padding-right: 10px;
    border-right: 1px solid var(--angel-line);
}

.fvr-feature-stats > div:last-child {
    border-right: 0;
}

.fvr-feature-stats i {
    grid-row: 1 / span 2;
    color: var(--angel-blue);
    font-size: 23px;
}

.fvr-feature-stats strong {
    color: var(--angel-blue);
    font-size: 20px;
    line-height: 1;
}

.fvr-feature-stats span {
    color: var(--angel-muted);
    font-size: 10px;
    line-height: 1.25;
}

.fvr-features-media {
    overflow: hidden;
    border-radius: 16px 16px 60px 16px;
    box-shadow: 0 25px 58px rgba(11, 39, 64, 0.17);
}

.fvr-features-media img {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.fvr-features-band {
    position: relative;
    padding: 52px 0;
    color: rgba(255, 255, 255, 0.75);
    background:
        radial-gradient(circle at 80% 10%, rgba(0, 188, 231, 0.16), transparent 28%),
        linear-gradient(155deg, #071523, #0b2740);
}

.fvr-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fvr-feature-grid article {
    min-height: 210px;
    padding: 24px 22px;
    border-right: 1px solid rgba(0, 188, 231, 0.18);
    border-bottom: 1px solid rgba(0, 188, 231, 0.18);
    transition: background 0.25s ease, transform 0.25s ease;
}

.fvr-feature-grid article:nth-child(5n) {
    border-right: 0;
}

.fvr-feature-grid article:nth-last-child(-n + 5) {
    border-bottom: 0;
}

.fvr-feature-grid article:hover {
    z-index: 1;
    background: rgba(4, 125, 196, 0.15);
    transform: translateY(-4px);
}

.fvr-feature-grid i {
    margin-bottom: 17px;
    color: var(--angel-cyan);
    font-size: 27px;
}

.fvr-feature-grid h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.fvr-feature-grid p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

@media (max-width: 1199.98px) {
    .fvr-feature-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fvr-feature-stats > div:nth-child(2) {
        border-right: 0;
    }

    .fvr-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fvr-feature-grid article:nth-child(5n) {
        border-right: 1px solid rgba(0, 188, 231, 0.18);
    }

    .fvr-feature-grid article:nth-child(3n) {
        border-right: 0;
    }

    .fvr-feature-grid article:nth-last-child(-n + 5) {
        border-bottom: 1px solid rgba(0, 188, 231, 0.18);
    }
}

@media (max-width: 991.98px) {
    .fvr-features-section {
        padding-top: 78px;
    }

    .fvr-features-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .fvr-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fvr-feature-grid article:nth-child(3n) {
        border-right: 1px solid rgba(0, 188, 231, 0.18);
    }

    .fvr-feature-grid article:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 575.98px) {
    .fvr-features-section {
        padding-top: 62px;
    }

    .fvr-features-top {
        padding-bottom: 52px;
    }

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

    .fvr-features-media img {
        min-height: 280px;
    }

    .fvr-feature-grid {
        grid-template-columns: 1fr;
    }

    .fvr-feature-grid article,
    .fvr-feature-grid article:nth-child(2n),
    .fvr-feature-grid article:nth-child(3n) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 188, 231, 0.18);
    }

    .fvr-feature-grid article:last-child {
        border-bottom: 0;
    }
}

/* FVR why choose AngelTech */
.fvr-why-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 84% 16%, rgba(0, 188, 231, 0.18), transparent 28%),
        radial-gradient(circle at 18% 96%, rgba(4, 125, 196, 0.18), transparent 34%),
        linear-gradient(135deg, #031222 0%, #071b31 48%, #05223c 100%);
}

.fvr-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.15fr);
    align-items: stretch;
    /* gap: clamp(34px, 5vw, 74px); */
}

.fvr-why-media {
    min-width: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fvr-why-media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 720px;
    object-fit: contain;
    object-position: center right;
    margin-left: auto;
    filter: drop-shadow(0 28px 46px rgba(0, 188, 231, 0.14));
}

.fvr-why-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 20px;
    color: var(--angel-cyan);
    background: transparent;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fvr-why-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.fvr-why-content h2 {
    margin: 0;
    color: var(--angel-white);
    font-size: 32px;
    line-height: 1.08;
    font-weight: 600;
}

.fvr-why-content > p {
    max-width: 760px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
    line-height: 1.75;
}

.fvr-why-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--angel-cyan);
    font-size: 26px;
    font-weight: 600;
}

.fvr-why-content h3 i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 188, 231, 0.42);
    border-radius: 50%;
    color: var(--angel-cyan);
    background: rgba(4, 125, 196, 0.18);
    font-size: 17px;
}

.fvr-why-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fvr-why-list li {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0, 188, 231, 0.2);
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.55;
}

.fvr-why-list li > i {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-top: 0;
    border: 1px solid rgba(0, 188, 231, 0.5);
    border-radius: 50%;
    color: var(--angel-cyan);
    background: rgba(4, 125, 196, 0.16);
    box-shadow: 0 14px 34px rgba(0, 188, 231, 0.1);
    font-size: 25px;
}

.fvr-why-list span {
    display: block;
}

.fvr-why-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--angel-white);
    font-size: 17px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .fvr-why-section {
        padding: 72px 0;
    }

    .fvr-why-grid {
        grid-template-columns: 1fr;
    }

    .fvr-why-media {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        order: 2;
    }

    .fvr-why-media img {
        width: 100%;
        height: auto;
        max-height: none;
        margin: 0 auto;
    }

    .fvr-why-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .fvr-why-section {
        padding: 58px 0;
    }

    .fvr-why-content h2 {
        font-size: 2.45rem;
    }

    .fvr-why-content > p {
        font-size: 15px;
    }

    .fvr-why-content h3 {
        align-items: flex-start;
        font-size: 22px;
    }

    .fvr-why-list li {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 13px;
        font-size: 14px;
    }

    .fvr-why-list li > i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* FVR CTA and FAQ */
.fvr-faq-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 4% 90%, rgba(0, 188, 231, 0.1), transparent 25%),
        var(--angel-white);
}

.fvr-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(38px, 6vw, 80px);
}

.fvr-faq-cta {
    position: relative;
    padding: 42px;
    overflow: hidden;
    border-radius: 14px 14px 64px 14px;
    color: rgba(255, 255, 255, 0.84);
    background:
        radial-gradient(circle at 90% 8%, rgba(0, 188, 231, 0.28), transparent 30%),
        linear-gradient(145deg, #071523, #0b2740);
    box-shadow: 0 25px 58px rgba(11, 39, 64, 0.2);
}

.fvr-faq-cta .eyebrow {
    color: var(--angel-cyan);
}

.fvr-faq-cta .eyebrow::before {
    display: none;
}

.fvr-faq-cta h2 {
    margin: 0;
    color: var(--angel-white);
    font-size: 32px;
    line-height: 1.12;
    font-weight: 600;
}

.fvr-faq-cta > p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
}

.fvr-faq-ready {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(0, 188, 231, 0.24);
    border-radius: 10px;
    background: rgba(4, 125, 196, 0.16);
}

.fvr-faq-ready > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    color: var(--angel-cyan);
    background: rgba(0, 188, 231, 0.12);
    font-size: 24px;
}

.fvr-faq-ready h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 20px;
}

.fvr-faq-ready p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.fvr-faq-actions {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 14px;
    margin-top: 28px;
}

.fvr-faq-actions a {
    min-height: 52px;
}

.fvr-faq-cta .fvr-outline-button {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.fvr-faq-cta .fvr-outline-button:hover {
    color: var(--angel-dark);
    border-color: #fff;
    background: #fff;
}

.fvr-faq-list > .eyebrow {
    color: var(--angel-blue);
    margin-bottom: 20px;
}

.fvr-faq-list > .eyebrow::before {
    display: none;
}

.fvr-faq-list > h2 {
    margin: 0;
    color: var(--angel-ink);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
}

.fvr-faq-list > .fvr-overview-line {
    margin: 16px 0 24px;
}

.fvr-faq-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--angel-line);
    border-radius: 10px;
    background: #f8fbfd;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.fvr-faq-item[open] {
    border-color: rgba(4, 125, 196, 0.32);
    background: #fff;
    box-shadow: 0 15px 36px rgba(11, 39, 64, 0.09);
}

.fvr-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    color: var(--angel-ink);
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 800;
}

.fvr-faq-item summary::-webkit-details-marker {
    display: none;
}

.fvr-faq-item summary i {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--angel-blue), var(--angel-cyan));
}

.fvr-faq-item summary i::before,
.fvr-faq-item summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transform: translate(-50%, -50%);
}

.fvr-faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

.fvr-faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.fvr-faq-item > p {
    margin: 0;
    padding: 0 68px 22px 22px;
    color: var(--angel-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .fvr-faq-section {
        padding: 78px 0;
    }

    .fvr-faq-grid {
        grid-template-columns: 1fr;
    }

    .fvr-faq-cta {
        position: relative;
        top: auto;
    }
}

@media (max-width: 575.98px) {
    .fvr-faq-section {
        padding: 62px 0;
    }

    .fvr-faq-cta {
        padding: 28px 22px;
        border-radius: 12px 12px 42px 12px;
    }

    .fvr-faq-ready {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px;
    }

    .fvr-faq-ready > span {
        width: 44px;
        height: 44px;
    }

    .fvr-faq-actions {
        flex-direction: column;
        align-items: center;
    }

    .fvr-faq-actions a {
        width: min(100%, 260px);
        min-width: 0;
        text-align: center;
        line-height: 1.25;
    }

    .fvr-faq-item summary {
        padding: 17px;
        font-size: 14px;
    }

    .fvr-faq-item > p {
        padding: 0 17px 19px;
    }
}
.loader{

    width:18px;

    height:18px;

    border:2px solid #fff;

    border-top:2px solid transparent;

    border-radius:50%;

    display:inline-block;

    animation:spin .8s linear infinite;

}



@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* Mobile responsive polish */
@media (max-width: 767.98px) {
    .hero-section .container,
    .fvr-banner .container,
    .page-banner .container {
        max-width: 100%;
    }

    .hero-copy h1,
    .fvr-banner h1,
    .page-banner-copy h1 {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-copy h1 {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        font-size: 28px;
    }

    .hero-copy .eyebrow,
    .fvr-banner-label {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .fvr-banner-copy {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .fvr-banner h1,
    .fvr-overview-content h2,
    .fvr-challenges-heading h2,
    .fvr-workflow-heading h2,
    .tms-process-section .fvr-workflow-heading h2,
    .fvr-features-copy h2,
    .fvr-why-content h2,
    .erfq-ai-intelligence-heading h2,
    .shipment-advantage-heading h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .fvr-title-line,
    .fvr-overview-line,
    .fvr-card-line,
    .tms-process-card .fvr-card-line {
        display: none;
    }

    .fvr-overview-section::after,
    .tms-integrations-section::before,
    .erfq-ai-intelligence-section::before {
        display: none;
    }

    .fvr-banner-actions,
    .fvr-overview-actions {
        justify-content: center;
    }

    .fvr-overview-actions a,
    .fvr-banner-actions a {
        width: min(100%, 340px);
        min-width: 0;
    }

    .page-banner-copy {
        padding-left: 0;
        border-left: 0;
        text-align: center;
    }

    .page-breadcrumb {
        justify-content: center;
    }

    .product-showcase-row + .product-showcase-row {
        border-top: 0;
    }

    .product-showcase-panel,
    .product-showcase-row,
    .product-showcase-image img {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .hero-copy h1,
    .fvr-banner h1,
    .fvr-overview-content h2,
    .fvr-challenges-heading h2,
    .fvr-workflow-heading h2,
    .tms-process-section .fvr-workflow-heading h2,
    .fvr-features-copy h2,
    .fvr-why-content h2,
    .erfq-ai-intelligence-heading h2,
    .shipment-advantage-heading h2,
    .section-copy h2,
    .section-heading h2,
    .services-page-heading h2,
    .contact-info-heading h2,
    .about-overview-copy h2,
    .company-focus-content h2,
    .support-team-heading h2,
    .hall-fame-heading h2,
    .product-showcase-copy h2,
    .choose-content h2,
    .fvr-capabilities-heading h2,
    .fvr-faq-list > h2,
    .fvr-faq-cta h2 {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 2%;
    }

    .hero-copy h1 {
        max-width: 320px;
        font-size: 25px;
    }

    .hero-copy .eyebrow,
    .fvr-banner-label,
    .eyebrow {
        font-size: 11px;
    }

    .page-banner-copy h1 {
        font-size: 32px;
    }
}

/* Mobile component alignment fixes */
@media (max-width: 767.98px) {
    .fvr-why-content h3 {
        justify-content: flex-start;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .fvr-why-list {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .fvr-why-list li,
    .fvr-why-list span,
    .fvr-why-list strong {
        text-align: left;
    }

    .fvr-faq-ready {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .fvr-faq-ready p {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .fvr-faq-item,
    .fvr-faq-item summary,
    .fvr-faq-item > p {
        text-align: left;
    }

    .fvr-faq-item summary span {
        flex: 1 1 auto;
    }
}
