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

:root {
    --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
    --primary: #063b64;
    --primary-dark: #042943;
    --primary-soft: #e8f3fb;
    --accent: #19b6d2;
    --accent-dark: #0e8ca3;
    --green: #18b77a;
    --text: #152536;
    --muted: #617185;
    --light: #f5f9fc;
    --white: #ffffff;
    --border: #dce8f0;
    --shadow: 0 24px 70px rgba(6, 59, 100, 0.14);
    --radius: 24px;

    /* Mobile-first side spacing — overridden up at larger breakpoints */
    --side-space: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

picture {
    display: block;
}

picture img {
    width: 100%;
    height: auto;
    display: block;
}

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

p {
    margin: 0 0 18px;
    font-weight: 400;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.15;
    color: var(--primary-dark);
    font-family: var(--font-sans);
}

/* Hero / page titles — Manrope ExtraBold */
h1 {
    font-size: clamp(44px, 5.7vw, 92px);
    font-weight: 800;
    letter-spacing: -2.8px;
}

/* Section headings — Manrope Bold */
h2 {
    font-size: clamp(30px, 3.5vw, 54px);
    font-weight: 700;
    letter-spacing: -1.4px;
}

h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.container {
    width: calc(100% - calc(var(--side-space) * 2));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

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

.center {
    text-align: center;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 1000;
    padding: 12px 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
}

.skip-link:focus {
    top: 16px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent-dark);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 16px 40px rgba(25, 182, 210, 0.28);
}

.btn-primary:hover {
    background: #34c5dc;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    font-family: var(--font-sans);
    color: var(--accent-dark);
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-weight: 800;
    flex-shrink: 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 800;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 20px;
    color: var(--primary-dark);
}

.brand-copy small {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-family: var(--font-sans);
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 500;
    flex-wrap: wrap;
}

.main-nav a {
    opacity: 0.86;
    white-space: nowrap;
}

.main-nav a:hover {
    opacity: 1;
    color: var(--accent-dark);
}

.nav-cta {
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 600;
    opacity: 1 !important;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--primary-soft);
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
    border-radius: 20px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    color: var(--white);
    background-color: var(--primary-dark);
    background-image:
        linear-gradient(
            105deg,
            rgba(4, 41, 67, 0.9) 0%,
            rgba(6, 59, 100, 0.58) 44%,
            rgba(6, 59, 100, 0.28) 70%,
            rgba(6, 59, 100, 0.12) 100%
        ),
        url('assets/images/hero-cold-chain.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    padding: 100px 0;
}

.hero-content {
    max-width: min(100%, 680px);
}

.hero-section .eyebrow {
    color: var(--accent);
}

.hero-content h1,
.hero-content h2 {
    color: var(--white);
}

.hero-description {
    max-width: 780px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 1.2vw, 22px);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
    max-width: 920px;
}

.hero-highlights div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-highlights strong,
.hero-highlights span {
    display: block;
}

.hero-highlights strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
}

.hero-highlights span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.shipment-card,
.monitor-card {
    width: min(100%, 540px);
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.shipment-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(24, 183, 122, 0.18);
    color: #c9ffe9;
    font-size: 14px;
}

.shipment-status span {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(24, 183, 122, 0.15);
}

.shipment-card h2 {
    margin-top: 30px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: clamp(54px, 5vw, 86px);
    font-weight: 800;
}

.shipment-card p {
    color: rgba(255, 255, 255, 0.76);
}

.temperature-chart {
    position: relative;
    height: 150px;
    margin: 30px 0;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 52px);
    overflow: hidden;
}

.temperature-chart span {
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: 42px;
    height: 54px;
    border-radius: 50%;
    border-top: 5px solid var(--accent);
    transform: rotate(-2deg);
}

.shipment-metrics,
.monitor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.shipment-metrics div,
.monitor-stats div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.11);
}

.shipment-metrics small,
.monitor-stats small {
    display: block;
    color: rgba(255, 255, 255, 0.64);
}

.shipment-metrics strong,
.monitor-stats strong {
    display: block;
    color: var(--white);
}

.trust-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding: 24px 0;
}

.trust-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px;
    border-radius: 16px;
    background: var(--light);
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 700;
    text-align: center;
}

.two-column {
    display: grid;
    gap: 24px;
}

.intro-split {
    gap: 24px;
}

.intro-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(6, 59, 100, 0.12);
    border: 1px solid var(--border);
}

.intro-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.intro-heading h2 {
    margin-top: 10px;
}

.two-column p,
.section-heading p,
.process-stack p,
.monitoring-grid p,
.coverage-card p,
.cta-card p,
.faq-grid p {
    color: var(--muted);
    font-size: 17px;
}

.section-heading {
    max-width: 920px;
    margin: 0 auto 48px;
}

.solutions-intro {
    padding: 68px 0 40px;
}

.solutions-intro .section-heading {
    margin-bottom: 0;
}

.solutions-intro .section-heading .eyebrow {
    margin-bottom: 14px;
}

.solutions-intro .section-heading h2 {
    margin-bottom: 18px;
}

.solutions-intro .section-heading > p:last-child {
    margin-bottom: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-section,
.temperature-section,
.service-keywords-section {
    background: var(--light);
}

.service-keywords-section {
    background:
        linear-gradient(180deg, #fafdff 0%, #f5f9fc 100%);
}

.service-keywords-section .section-heading {
    max-width: 860px;
    margin-bottom: 36px;
}

.service-keywords-section .section-heading h2 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.service-keywords-section .section-heading > p:last-child {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-keywords-card {
    padding: 22px 22px 20px;
    border-radius: 20px;
    border: 1px solid #d9e6ef;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 8px 22px rgba(6, 59, 100, 0.05),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.service-keywords-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #eaf7fc;
    color: #00aeef;
}

.service-keywords-card__icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.service-keywords-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.service-keywords-card p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.52;
}

.solution-split {
    margin: 0;
}

.solution-split--tone-a {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.solution-split--tone-b {
    border-top: 1px solid var(--border);
}

.solution-split__grid {
    display: grid;
    gap: 28px;
}

.solution-split__media {
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
}

.solution-split__heading {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.85vw, 58px);
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.12;
    color: var(--primary-dark);
}

.solution-split__body > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
}

.solution-split__body ul {
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.solution-split__body li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 17px;
}

.solution-split__body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.solution-split__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 14px 26px;
    min-height: 50px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(25, 182, 210, 0.14);
    border: 2px solid rgba(14, 140, 163, 0.45);
    box-shadow: 0 10px 28px rgba(6, 59, 100, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.solution-split__cta:hover {
    transform: translateY(-2px);
    background: rgba(25, 182, 210, 0.22);
    border-color: var(--accent-dark);
    box-shadow: 0 14px 36px rgba(6, 59, 100, 0.12);
}

.solution-split__cta:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.solution-card,
.why-grid article {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(6, 59, 100, 0.06);
}

.temperature-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(6, 59, 100, 0.06);
}

.temperature-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--border);
}

.temperature-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.temperature-card__body {
    padding: 28px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--accent-dark);
    font-family: var(--font-sans);
    font-weight: 700;
}

.solution-card p,
.solution-card li,
.why-grid p,
.temperature-card p {
    color: var(--muted);
}

.solution-card ul,
.check-list {
    margin: 16px 0 22px;
    padding: 0;
    list-style: none;
}

.solution-card li,
.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.solution-card li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.solution-card a {
    margin-top: auto;
    font-family: var(--font-sans);
    color: var(--accent-dark);
    font-weight: 600;
}

.dark-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-color: transparent;
}

.dark-card h3,
.dark-card p,
.dark-card li,
.dark-card a {
    color: var(--white);
}

.dark-card .card-number {
    background: rgba(255, 255, 255, 0.14);
    color: var(--accent);
}

.process-section {
    background: var(--white);
}

.process-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(44px, 5vw, 68px);
}

.process-section__heading {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.process-section__heading.section-heading {
    margin-bottom: 0;
}

.process-section__heading > p:not(.eyebrow) {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.process-section__cta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.process-intro__cta {
    margin-top: 0;
}

.process-section .btn-secondary {
    background: var(--primary);
    color: var(--white);
    border: 0;
}

.process-timeline-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Continuous line between 01 and 06 only – clipped so it does not extend past first/last badges */
.process-timeline::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(25, 182, 210, 0.75) 0%,
        rgba(14, 140, 163, 0.45) 45%,
        rgba(14, 140, 163, 0.28) 100%
    );
    pointer-events: none;
    z-index: 0;
    -webkit-clip-path: inset(68px 0 68px 0);
    clip-path: inset(68px 0 68px 0);
}

@media (max-width: 700px) {
    .process-timeline::before {
        -webkit-clip-path: inset(52px 0 52px 0);
        clip-path: inset(52px 0 52px 0);
    }
}

.process-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0 18px;
    align-items: stretch;
    margin-bottom: 16px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step__rail {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 52px;
    min-height: 100%;
}

.process-step__rail-spacer {
    flex: 1 1 0;
    min-height: 0;
}

.process-step__badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary-soft);
    border: 1px solid rgba(14, 140, 163, 0.18);
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--white);
}

.process-step__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(245, 249, 252, 0.92) 100%);
    border: 1px solid var(--border);
    box-shadow: 0 10px 32px rgba(6, 59, 100, 0.06);
}

.process-step__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 169, 243, 0.1);
    color: #00a9f3;
}

.process-step__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.process-step__body {
    flex: 1;
    min-width: 0;
}

.process-step__title {
    display: block;
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.process-step__desc {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

.temperature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.temperature-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-dark);
    font-family: var(--font-sans);
    font-weight: 700;
}

.temperature-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.monitoring-grid {
    display: grid;
    gap: 28px;
}

.monitoring-visual {
    padding: 0;
    border-radius: 36px;
    background: transparent;
}

.monitoring-visual__frame {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 56px rgba(6, 59, 100, 0.1);
}

.monitoring-visual__frame img {
    display: block;
    width: 100%;
    height: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 22px;
    row-gap: 28px;
}

.why-card {
    display: flex;
    flex-direction: column;
}

.why-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #eaf7fc;
    color: #00aeef;
    flex-shrink: 0;
}

.why-card__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.why-card__icon--dual {
    flex-direction: column;
    gap: 3px;
}

.why-card__icon--dual svg {
    width: 17px;
    height: 17px;
}

.why-card h3 {
    margin-bottom: 10px;
}

.why-card p:last-child {
    margin-bottom: 0;
}

.coverage-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    padding: 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    box-shadow: var(--shadow);
}

.coverage-card h2,
.coverage-card p,
.coverage-card .eyebrow {
    color: var(--white);
}

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

.office-grid address {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-style: normal;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.office-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}

.office-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(0, 174, 239, 0.2);
    color: #b9efff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 7px;
}

.office-card__company {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
}

.office-phone {
    display: block;
    margin-top: 8px;
    color: #d2f3ff;
    font-family: var(--font-sans);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.office-phone:hover {
    color: #ffffff;
}

.office-email {
    display: block;
    margin-top: 6px;
    color: #d2f3ff;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.office-email:hover {
    color: #ffffff;
}

.office-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(189, 243, 255, 0.35);
    background: rgba(189, 243, 255, 0.12);
    color: #d8f6ff;
    text-decoration: none;
}

.office-map-link:hover {
    color: #ffffff;
    border-color: rgba(216, 246, 255, 0.55);
    background: rgba(189, 243, 255, 0.22);
}

.faq-section {
    background: var(--white);
}

.faq-grid {
    max-width: 980px;
    margin: 0 auto;
}

.faq-heading {
    margin-bottom: 28px;
}

.faq-heading p:last-child {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--light);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
    border-color: rgba(14, 140, 163, 0.5);
    box-shadow: 0 10px 30px rgba(6, 59, 100, 0.06);
}

.faq-list summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 20px 50px 20px 22px;
    font-family: var(--font-sans);
    color: var(--primary-dark);
    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-dark);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    padding: 0 22px 22px;
    margin: 0;
}

.cta-section {
    background: var(--light);
}

.cta-card {
    padding: 58px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 90% 10%, rgba(25, 182, 210, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-card h2,
.cta-card p,
.cta-card .eyebrow {
    color: var(--white);
}

.cta-card p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    justify-content: center;
}

.site-footer {
    font-family: var(--font-sans);
    background: #031f34;
    color: rgba(255, 255, 255, 0.72);
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 44px;
}

.site-footer .brand-copy strong,
.site-footer h2 {
    color: var(--white);
}

.site-footer h2 {
    margin-bottom: 16px;
    font-size: 18px;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Desktop two-column layouts */
@media (min-width: 980px) {
    /* Restore generic two-column grids used by remaining elements */
    .two-column {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 58px;
        align-items: start;
    }

    /* Intro section: visual LEFT, heading+body RIGHT */
    .intro-split {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "visual heading"
            "visual body";
        gap: 52px;
        align-items: start;
    }

    .intro-visual {
        grid-area: visual;
        align-self: center;
    }

    .intro-heading {
        grid-area: heading;
        align-self: end;
    }

    .intro-body {
        grid-area: body;
        align-self: start;
    }

    /* Solution splits */
    .solution-split__grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(36px, 5vw, 56px);
        align-items: start;
    }

    /* tone-a: heading+body LEFT, visual RIGHT */
    .solution-split--tone-a .solution-split__grid {
        grid-template-areas:
            "head visual"
            "body visual";
    }

    /* tone-b: visual LEFT, heading+body RIGHT */
    .solution-split--tone-b .solution-split__grid {
        grid-template-areas:
            "visual head"
            "visual body";
    }

    .solution-split__head {
        grid-area: head;
        align-self: end;
    }

    .solution-split__body {
        grid-area: body;
        align-self: start;
        max-width: 560px;
    }

    .solution-split__media {
        grid-area: visual;
        align-self: stretch;
        max-height: clamp(460px, 34vw, 580px);
    }

    .solution-split__media img {
        height: clamp(460px, 34vw, 580px);
        object-fit: cover;
        object-position: center;
    }

    /* Monitoring section: visual LEFT, heading+body RIGHT */
    .monitoring-grid {
        grid-template-columns: 0.9fr 1.1fr;
        grid-template-areas:
            "visual heading"
            "visual body";
        gap: 70px;
        align-items: start;
    }

    .monitoring-visual {
        grid-area: visual;
        align-self: center;
    }

    .monitoring-heading {
        grid-area: heading;
        align-self: end;
    }

    .monitoring-body {
        grid-area: body;
        align-self: start;
    }
}

/* Mobile-first spacing scale */
@media (min-width: 431px) {
    :root {
        --side-space: 28px;
    }
}

@media (min-width: 701px) {
    :root {
        --side-space: 50px;
    }

    .section-padding {
        padding: 96px 0;
    }

    .solutions-intro {
        padding: 96px 0 48px;
    }
}

/* Large screens */
@media (min-width: 1600px) {
    .main-nav {
        gap: 24px;
    }

    .section-padding {
        padding: 110px 0;
    }

    .solution-card,
    .why-grid article {
        padding: 34px;
    }

    .temperature-card__body {
        padding: 34px;
    }

    .service-keywords-card {
        padding: 24px;
    }
}

/* Laptop and small desktop */
@media (max-width: 1200px) {
    .main-nav {
        gap: 12px;
        font-size: 14px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

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

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

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

/* Tablet and mobile nav */
@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: var(--side-space);
        right: var(--side-space);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

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

    .hero-grid,
    .coverage-card,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 76px 0;
    }

    .hero-highlights,
    .temperature-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .coverage-card,
    .cta-card {
        padding: 34px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Mobile optimisation */
@media (max-width: 700px) {
    .solutions-intro {
        padding: 68px 0 40px;
    }

    .solution-split__cta {
        width: 100%;
        justify-content: center;
        margin-top: 22px;
    }

    h1 {
        font-size: clamp(38px, 11vw, 54px);
        letter-spacing: -1.5px;
    }

    h2 {
        font-size: clamp(28px, 8vw, 38px);
        letter-spacing: -0.9px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .why-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .service-keywords-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-keywords-card {
        padding: 18px;
        border-radius: 18px;
    }

    .service-keywords-card h3 {
        font-size: 19px;
    }

    .shipment-card,
    .monitor-card {
        padding: 24px;
        border-radius: 26px;
    }

    .shipment-card h2 {
        font-size: 52px;
    }

    .temperature-card strong {
        font-size: 38px;
    }

    .coverage-card,
    .cta-card {
        padding: 28px;
        border-radius: 26px;
    }
}

/* Small phones */
@media (max-width: 430px) {
    .header-inner {
        min-height: 74px;
    }

    .main-nav {
        top: 74px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy small {
        font-size: 11px;
    }

    .hero-grid {
        padding: 60px 0;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .temperature-chart {
        height: 120px;
    }

    .shipment-metrics {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.whatsapp-menu {
    display: none;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(3, 31, 52, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-widget.is-open .whatsapp-menu {
    display: grid;
}

.whatsapp-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(37, 211, 102, 0.16);
    color: #e9fff2;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.whatsapp-menu a:hover {
    background: rgba(37, 211, 102, 0.28);
}

.whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0px 8px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-menu {
        margin-bottom: 8px;
        padding: 8px;
    }

    .whatsapp-menu a {
        min-height: 34px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* Logo Styles */
.brand-logo, .footer-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 640px) {
    .brand-logo, .footer-logo {
        height: 38px;
    }
}