/* ==================================================================
   Pocket Freight Detailed Showcase Website
================================================================== */

:root {
    --color-teal: #0e2f36;
    --color-teal-light: #18444c;
    --color-teal-dark: #0a2429;
    --color-teal-soft: #2e5e66;
    --color-orange: #f7931e;
    --color-orange-light: #ffa73a;
    --color-orange-dark: #e67e00;
    --color-cyan: #35d6ff;
    --color-green: #00e5a8;
    --color-white: #ffffff;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 84px;
    --max-width: 1240px;
    --glass-bg: rgba(14, 67, 80, 0.24);
    --glass-bg-strong: rgba(8, 35, 45, 0.86);
    --glass-border: rgba(53, 214, 255, 0.22);
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.38);
    --shadow-cyan: 0 0 32px rgba(53, 214, 255, 0.20);
}

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

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    min-height: 100%;
    font-family: var(--font-body);
    color: var(--color-white);
    background:
        radial-gradient(circle at 72% 12%, rgba(53, 214, 255, 0.22), transparent 30%),
        radial-gradient(circle at 18% 26%, rgba(247, 147, 30, 0.15), transparent 28%),
        radial-gradient(circle at 52% 86%, rgba(0, 229, 168, 0.12), transparent 28%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 64px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 64px),
        linear-gradient(135deg, var(--color-teal-soft) 0%, var(--color-teal) 44%, var(--color-teal-dark) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font: inherit;
    font-family: var(--font-body);
}

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

.site-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 18%, rgba(53, 214, 255, 0.11), transparent 24%),
        radial-gradient(circle at 82% 78%, rgba(247, 147, 30, 0.13), transparent 28%);
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

/* ==================================================================
   Header
================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 36, 41, 0.78);
    backdrop-filter: blur(16px);
}

.nav-bar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand img {
    height: 76px;
    width: auto;
    filter:
        drop-shadow(0 0 34px rgba(255, 255, 255, 1))
        drop-shadow(0 0 70px rgba(255, 255, 255, 0.95))
        drop-shadow(0 0 120px rgba(255, 255, 255, 0.82))
        drop-shadow(0 0 170px rgba(255, 255, 255, 0.5))
        drop-shadow(0 0 58px rgba(53, 214, 255, 0.85))
        drop-shadow(0 0 110px rgba(53, 214, 255, 0.55))
        drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.05rem;
}

.nav-links a {
    font-size: 0.84rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 14px rgba(53, 214, 255, 0.55);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(53, 214, 255, 0.26);
    border-radius: 15px;
    background: rgba(14, 67, 80, 0.36);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--color-white);
}

/* ==================================================================
   Shared Layout and Buttons
================================================================== */

.section-panel {
    position: relative;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.42rem 0.95rem;
    border: 1px solid rgba(53, 214, 255, 0.42);
    border-radius: 999px;
    color: var(--color-cyan);
    background: rgba(53, 214, 255, 0.12);
    box-shadow: 0 0 18px rgba(53, 214, 255, 0.18);
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-free-coins-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 168, 0.85);
    background:
        linear-gradient(
            135deg,
            rgba(0, 229, 168, 0.22),
            rgba(53, 214, 255, 0.18)
        ),
        rgba(10, 36, 41, 0.82);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow:
        0 0 20px rgba(0, 229, 168, 0.38),
        0 0 34px rgba(53, 214, 255, 0.24);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.hero-free-coins-badge i {
    color: var(--color-green);
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 229, 168, 0.8));
}

.hero-free-coins-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 168, 1);
    box-shadow:
        0 0 28px rgba(0, 229, 168, 0.55),
        0 0 46px rgba(53, 214, 255, 0.35);
}

.hero-free-coins-badge:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 4px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.88rem 1.55rem;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #062329;
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    box-shadow: 0 14px 34px rgba(53, 214, 255, 0.28);
}

.button-secondary {
    color: var(--color-white);
    background: linear-gradient(145deg, var(--color-orange-light), var(--color-orange-dark));
    box-shadow: 0 14px 34px rgba(247, 147, 30, 0.25);
}

.section-copy h2,
.section-heading h2,
.final-card h2 {
    font-size: clamp(2.25rem, 4.8vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    margin-bottom: 1rem;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.journey-copy p,
.feature-card p,
.final-card p {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
    line-height: 1.72;
}

.section-copy p + p {
    margin-top: 1rem;
}

.section-heading {
    max-width: 910px;
    margin: 0 auto clamp(2.2rem, 5vw, 4rem);
    text-align: center;
}

/* ==================================================================
   Hero
================================================================== */

.hero.section-panel {
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding-top: clamp(1.1rem, 2.4vw, 2rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.36;
}

.hero-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 22, 29, 0.98) 0%, rgba(4, 22, 29, 0.76) 44%, rgba(4, 22, 29, 0.40) 100%),
        radial-gradient(circle at 64% 42%, rgba(53, 214, 255, 0.34), transparent 38%);
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(3.2rem, 7.3vw, 7.4rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    display: block;
    color: var(--color-cyan);
    text-shadow:
        0 0 12px rgba(53, 214, 255, 0.68),
        0 0 48px rgba(53, 214, 255, 0.34);
}

.hero-copy p {
    max-width: 690px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0;
}

.hero-pill {
    display: inline-flex;
    width: fit-content;
    margin-top: 1rem;
    padding: 0.42rem 0.95rem;
    border: 1px solid rgba(255, 179, 71, 0.46);
    border-radius: 999px;
    color: #ffd27a;
    background: rgba(247, 147, 30, 0.16);
    font-size: 0.78rem;
    line-height: 1.45;
    font-weight: 800;
    box-shadow: 0 0 18px rgba(247, 147, 30, 0.16);
}

.hero-phone {
    position: relative;
    display: grid;
    place-items: center;
}

.hero-phone img {
    width: min(100%, 390px);
    border-radius: 48px;
    transform: rotate(5deg);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.58),
        0 0 42px rgba(53, 214, 255, 0.24);
}

.phone-glow {
    position: absolute;
    width: 90%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53, 214, 255, 0.42), transparent 65%);
    filter: blur(38px);
}

/* ==================================================================
   Hero Actions and iOS Status
================================================================== */

.hero-cta-status-row {
    display: grid;
    grid-template-columns: 280px minmax(330px, 430px);
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
    max-width: 760px;
    margin-top: 1.25rem;
}

.hero-actions-side {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 280px;
    margin: 0;
}

.google-play-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: auto;
    text-decoration: none;
}

.google-play-badge {
    display: block;
    width: 280px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.hero-see-app-button {
    width: 280px;
    min-height: 52px;
    justify-content: center;
    white-space: nowrap;
}

.hero-ios-status.compact {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    min-height: 100%;
    margin-top: 0;
    padding: 0.85rem 1rem;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 229, 168, 0.28), transparent 42%),
        linear-gradient(135deg, rgba(2, 26, 32, 0.96), rgba(10, 56, 66, 0.92));
    border: 1px solid rgba(0, 229, 168, 0.66);
    box-shadow:
        0 0 34px rgba(0, 229, 168, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.hero-ios-status.compact::before {
    content: '';
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle, rgba(0, 229, 168, 0.16), transparent 58%);
    filter: blur(24px);
    opacity: 0.95;
    pointer-events: none;
    z-index: -1;
}

.ios-status-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--color-teal-dark);
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    box-shadow: 0 0 22px rgba(0, 229, 168, 0.30);
}

.ios-status-icon i {
    font-size: 1.75rem;
}

.ios-status-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.ios-status-copy span {
    display: block;
    margin-bottom: 0.22rem;
    color: var(--color-green);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ios-status-copy strong {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    line-height: 1.15;
    font-weight: 800;
}

.ios-status-copy p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.68rem;
    line-height: 1.4;
}

.ios-status-dot {
    position: relative;
    z-index: 1;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 0 6px rgba(0, 229, 168, 0.10), 0 0 18px rgba(0, 229, 168, 0.75);
}


/* ==================================================================
   Supported Industries
================================================================== */
.industries-showcase-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 229, 168, 0.10), transparent 30%),
        radial-gradient(circle at 84% 70%, rgba(247, 147, 30, 0.12), transparent 34%);
}

.showcase-industry-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 1rem;
}

.showcase-industry-card {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border: 1px solid rgba(53, 214, 255, 0.24);
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 0%, rgba(53, 214, 255, 0.15), transparent 36%),
        var(--glass-bg-strong);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
    backdrop-filter: blur(14px);
}

.showcase-industry-card:last-child {
    background:
        radial-gradient(circle at 88% 0%, rgba(247, 147, 30, 0.15), transparent 34%),
        radial-gradient(circle at 8% 100%, rgba(0, 229, 168, 0.1), transparent 36%),
        var(--glass-bg-strong);
}

.showcase-industry-heading {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.showcase-industry-heading > i {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    color: var(--color-teal-dark);
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    box-shadow: 0 0 24px rgba(53, 214, 255, 0.26);
    font-size: 1.75rem;
}

.showcase-industry-heading span {
    display: block;
    margin-bottom: 0.28rem;
    color: var(--color-green);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.showcase-industry-heading h3 {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.2;
}

.showcase-industry-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.showcase-industry-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.58rem 0.82rem;
    border: 1px solid rgba(53, 214, 255, 0.22);
    border-radius: 999px;
    background: rgba(14, 67, 80, 0.42);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 800;
}

.showcase-work-model {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.showcase-work-model > div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(0, 229, 168, 0.28);
    border-radius: 22px;
    background: rgba(8, 35, 45, 0.68);
}

.showcase-work-model i {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--color-teal-dark);
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    font-size: 1.45rem;
}

.showcase-work-model p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
    line-height: 1.5;
}

.showcase-work-model strong {
    color: var(--color-white);
}

@media (max-width: 900px) {
    .showcase-industry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .showcase-work-model {
        grid-template-columns: 1fr;
    }

    .showcase-industry-chips span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ==================================================================
   Core Content Sections
================================================================== */

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.contrast-section {
    background:
        radial-gradient(circle at 20% 32%, rgba(247, 147, 30, 0.12), transparent 30%),
        radial-gradient(circle at 86% 70%, rgba(53, 214, 255, 0.12), transparent 32%);
}

.image-card,
.journey-media,
.feature-card,
.final-card {
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    background: var(--glass-bg);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-section {
    overflow: hidden;
}

.journey-list {
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
}

.journey-item {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.journey-item:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.journey-item:nth-child(even) .journey-media {
    order: 2;
}

.journey-item:nth-child(even) .journey-copy {
    order: 1;
}

.journey-media {
    padding: 0.65rem;
}

.journey-media img {
    width: 100%;
    border-radius: 24px;
}

.journey-copy {
    position: relative;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: clamp(1.5rem, 4vw, 3rem);
    background:
        radial-gradient(circle at top left, rgba(53, 214, 255, 0.14), transparent 36%),
        radial-gradient(circle at bottom right, rgba(247, 147, 30, 0.12), transparent 36%),
        var(--glass-bg-strong);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
}

.journey-copy span,
.feature-card span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--color-orange);
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journey-copy h3,
.feature-card h3 {
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    line-height: 1.1;
    margin-bottom: 0.85rem;
}

.phone-gallery {
    display: grid;
    gap: 1rem;
}

.gallery-seven {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.gallery-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phone-gallery img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-soft), 0 0 20px rgba(53, 214, 255, 0.12);
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft), 0 0 38px rgba(53, 214, 255, 0.30);
}

.feature-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
}

.feature-card div {
    padding: 1.25rem;
}

.finance-grid .feature-card img {
    object-position: top center;
}

.final-section {
    padding-bottom: clamp(5rem, 8vw, 8rem);
}

.final-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: clamp(1.5rem, 5vw, 4rem);
    background:
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.20), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(53, 214, 255, 0.20), transparent 34%),
        rgba(8, 31, 39, 0.88);
}

.final-card > img {
    max-height: 390px;
    margin: 0 auto;
    filter:
        drop-shadow(0 0 28px rgba(247, 147, 30, 0.40))
        drop-shadow(0 26px 46px rgba(0, 0, 0, 0.45));
}

.final-card .button {
    margin-top: 1.5rem;
}

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

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


/* ==================================================================
   Responsive Layout
================================================================== */

@media (max-width: 1100px) {
    .nav-links {
        gap: 0.7rem;
    }

    .nav-links a {
        font-size: 0.76rem;
    }

    .hero-grid,
    .split-layout,
    .journey-item,
    .journey-item:nth-child(even),
    .final-card {
        grid-template-columns: 1fr;
    }

    .journey-item:nth-child(even) .journey-media,
    .journey-item:nth-child(even) .journey-copy {
        order: initial;
    }

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

    .gallery-seven {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .hero-phone img {
        transform: none;
    }
}

@media (max-width: 900px) {
    .hero-cta-status-row {
        grid-template-columns: 1fr;
        max-width: 430px;
    }

    .hero-actions-side {
        align-items: center;
        width: 100%;
    }

    .google-play-link,
    .google-play-badge,
    .hero-see-app-button {
        width: 280px;
        max-width: 100%;
    }

    .google-play-badge {
        height: auto;
        object-fit: contain;
    }

    .hero-ios-status.compact {
        width: 100%;
        min-height: auto;
        padding: 0.75rem 0.9rem;
    }
}

@media (max-width: 760px) {
    body {
        background-attachment: scroll;
    }

    .site-background {
        position: absolute;
    }

    .container {
        width: min(100% - 1.2rem, var(--max-width));
    }

    .site-header,
    .image-card,
    .journey-media,
    .feature-card,
    .final-card,
    .journey-copy,
    .document-selector-panel,
    .document-viewer-panel,
    .template-selector-panel,
    .template-viewer-panel,
    .hero-ios-status.compact {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .brand img,
    .footer-logo {
        filter:
            drop-shadow(0 0 18px rgba(255, 255, 255, 0.65))
            drop-shadow(0 0 28px rgba(53, 214, 255, 0.35));
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0.75rem;
        right: 0.75rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border: 1px solid rgba(53, 214, 255, 0.26);
        border-radius: 20px;
        background: rgba(10, 36, 41, 0.96);
        box-shadow: var(--shadow-soft);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.82rem;
        font-size: 0.92rem;
    }

    .section-panel {
        padding-block: 4rem;
    }

    .hero.section-panel {
        min-height: auto;
        padding-top: 2.25rem;
        padding-bottom: 4rem;
        overflow: hidden;
    }

    .hero h1 {
        letter-spacing: -0.045em;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-phone img {
        width: min(100%, 320px);
        border-radius: 38px;
    }

    .hero-phone img,
    .phone-gallery img,
    .image-card,
    .journey-media,
    .feature-card,
    .final-card,
    .journey-copy,
    .document-selector-panel,
    .document-viewer-panel,
    .template-selector-panel,
    .template-viewer-panel {
        box-shadow:
            0 14px 34px rgba(0, 0, 0, 0.34),
            0 0 14px rgba(53, 214, 255, 0.12);
    }

    .phone-glow,
    .hero-ios-status.compact::before {
        display: none;
    }

    .hero-cta-status-row {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-top: 1rem;
    }

    .hero-actions-side {
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions-side .button,
    .google-play-link,
    .google-play-badge,
    .hero-see-app-button {
        width: 280px;
        max-width: 100%;
    }

    .google-play-badge {
        height: auto;
        object-fit: contain;
    }

    .hero-ios-status.compact {
        padding: 0.65rem;
        border-radius: 18px;
    }

    .hero-ios-status.compact {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .ios-status-dot {
        display: none;
    }

    .feature-card-grid,
    .gallery-seven,
    .gallery-four {
        grid-template-columns: 1fr;
    }

    .phone-gallery img {
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .journey-copy,
    .feature-card div {
        padding: 1.2rem;
    }

    .final-card {
        text-align: center;
    }

    .final-card > img {
        max-height: 310px;
    }

    .template-viewer-panel,
    .document-viewer-panel,
    .document-viewer-loaded {
        min-height: 420px;
    }

    .template-viewer-panel iframe,
    .document-viewer-loaded iframe {
        min-height: 360px;
    }
}

@media (max-width: 420px) {
    .hero-ios-status.compact {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .ios-status-dot {
        display: none;
    }
}

/* ==================================================================
   Document Examples
================================================================== */

.document-examples-section {
    background:
        radial-gradient(circle at 18% 24%, rgba(247, 147, 30, 0.13), transparent 30%),
        radial-gradient(circle at 82% 72%, rgba(53, 214, 255, 0.14), transparent 32%);
}
.document-preview-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}

.document-selector-panel,
.document-viewer-panel {
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(53, 214, 255, 0.12), transparent 38%),
        radial-gradient(circle at bottom right, rgba(247, 147, 30, 0.10), transparent 38%),
        var(--glass-bg-strong);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
    backdrop-filter: blur(14px);
}

.document-selector-panel {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 2.5vw, 1.4rem);
}

.document-group {
    display: grid;
    gap: 0.75rem;
}

.document-group h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.document-card {
    width: 100%;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon text";
    gap: 0.15rem 0.85rem;
    align-items: center;
    min-height: 94px;
    padding: 1rem;
    border: 1px solid rgba(53, 214, 255, 0.20);
    border-radius: 22px;
    color: var(--color-white);
    background: rgba(14, 67, 80, 0.28);
    cursor: pointer;
    text-align: left;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.document-card:hover,
.document-card.active {
    transform: translateY(-3px);
    border-color: rgba(53, 214, 255, 0.58);
    background: rgba(53, 214, 255, 0.10);
    box-shadow: 0 0 24px rgba(53, 214, 255, 0.22);
}

.document-card span {
    grid-area: icon;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #062329;
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 0 20px rgba(53, 214, 255, 0.26);
}

.document-card strong {
    grid-area: title;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.2;
}

.document-card small {
    grid-area: text;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.4;
}

.document-viewer-panel {
    min-height: 760px;
    overflow: hidden;
    display: grid;
}

.document-viewer-empty {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 760px;
    padding: 2rem;
    text-align: center;
}

.document-viewer-empty h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.document-viewer-empty p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.document-viewer-loaded {
    min-height: 760px;
    display: grid;
    grid-template-rows: auto 1fr;
}

.document-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(53, 214, 255, 0.18);
    background: rgba(4, 22, 29, 0.42);
}

.document-viewer-header h3 {
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.document-viewer-header a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    color: #062329;
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    font-weight: 800;
}

.document-viewer-loaded iframe {
    width: 100%;
    height: 100%;
    min-height: 700px;
    border: 0;
    background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 1000px) {
    .document-preview-layout {
        grid-template-columns: 1fr;
    }

    .document-viewer-panel,
    .document-viewer-empty,
    .document-viewer-loaded {
        min-height: 640px;
    }

    .document-viewer-loaded iframe {
        min-height: 580px;
    }
}

@media (max-width: 640px) {
    .document-card {
        grid-template-columns: 54px minmax(0, 1fr);
        min-height: 86px;
        padding: 0.85rem;
    }

    .document-card span {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 0.84rem;
    }

    .document-viewer-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .document-viewer-panel,
    .document-viewer-empty,
    .document-viewer-loaded {
        min-height: 560px;
    }

    .document-viewer-loaded iframe {
        min-height: 500px;
    }
}

/* ==================================================================
   Email Template Preview
================================================================== */

.email-template-section {
    background:
        radial-gradient(circle at 18% 24%, rgba(53, 214, 255, 0.13), transparent 30%),
        radial-gradient(circle at 82% 72%, rgba(247, 147, 30, 0.12), transparent 32%);
}

.template-preview-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.28fr) minmax(0, 0.72fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}

.template-selector-panel,
.template-viewer-panel {
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(53, 214, 255, 0.12), transparent 38%),
        radial-gradient(circle at bottom right, rgba(247, 147, 30, 0.10), transparent 38%),
        var(--glass-bg-strong);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
    backdrop-filter: blur(14px);
}

.template-selector-panel {
    display: grid;
    grid-template-rows: repeat(2, minmax(150px, 1fr));
    gap: 1rem;
    padding: clamp(1rem, 2.5vw, 1.4rem);
}

.template-card {
    width: 100%;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon text";
    gap: 0.15rem 0.85rem;
    align-items: center;
    min-height: 150px;
    padding: 1rem;
    border: 1px solid rgba(53, 214, 255, 0.20);
    border-radius: 22px;
    color: var(--color-white);
    background: rgba(14, 67, 80, 0.28);
    cursor: pointer;
    text-align: left;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.template-card:hover,
.template-card.active {
    transform: translateY(-3px);
    border-color: rgba(53, 214, 255, 0.58);
    background: rgba(53, 214, 255, 0.10);
    box-shadow: 0 0 24px rgba(53, 214, 255, 0.22);
}

.template-card span {
    grid-area: icon;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #062329;
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 0 20px rgba(53, 214, 255, 0.26);
}

.template-card strong {
    grid-area: title;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.2;
}

.template-card small {
    grid-area: text;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.4;
}

.template-viewer-panel {
    overflow: hidden;
    min-height: 820px;
    display: grid;
    grid-template-rows: auto 1fr;
}

.template-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(53, 214, 255, 0.18);
    background: rgba(4, 22, 29, 0.42);
}

.template-viewer-header h3 {
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.template-viewer-header a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    color: #062329;
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    font-weight: 800;
}

.template-viewer-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 760px;
    border: 0;
    background: #0E3A45;
}

/* ==================================================================
   Compact Document Examples
================================================================== */

.document-preview-layout {
    grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
    align-items: stretch;
}

.compact-document-selector {
    align-content: start;
}

.compact-document-group {
    gap: 0.8rem;
}

.compact-document-group h3 {
    margin-bottom: 0;
}

.compact-document-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.compact-document-card {
    min-height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
}

.compact-document-card span {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 0.88rem;
}

.compact-document-card strong {
    font-size: 0.96rem;
    line-height: 1.22;
}

.document-viewer-empty {
    display: none;
}

.document-viewer-panel,
.document-viewer-loaded {
    min-height: 820px;
}

.document-viewer-loaded iframe {
    min-height: 760px;
}



@media (max-width: 1100px) {
    .template-preview-layout,
    .document-preview-layout {
        grid-template-columns: 1fr;
    }

    .template-selector-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .template-viewer-panel,
    .document-viewer-panel,
    .document-viewer-loaded {
        min-height: 680px;
    }

    .template-viewer-panel iframe,
    .document-viewer-loaded iframe {
        min-height: 620px;
    }
}

@media (max-width: 760px) {
    .template-selector-panel {
        grid-template-columns: 1fr;
    }

    .compact-document-row {
        grid-template-columns: 1fr;
    }

    .template-card,
    .compact-document-card {
        min-height: 108px;
    }

    .template-viewer-header,
    .document-viewer-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .template-viewer-panel,
    .document-viewer-panel,
    .document-viewer-loaded {
        min-height: 560px;
    }

    .template-viewer-panel iframe,
    .document-viewer-loaded iframe {
        min-height: 500px;
    }
}
/* ==================================================================
   Footer
================================================================== */

.site-footer {
    padding: 2.5rem 0 4rem;
    border-top: 1px solid rgba(53, 214, 255, 0.16);
    background:
        radial-gradient(circle at 20% 20%, rgba(53, 214, 255, 0.12), transparent 32%),
        radial-gradient(circle at 82% 82%, rgba(247, 147, 30, 0.10), transparent 34%),
        rgba(4, 22, 29, 0.72);
    color: rgba(255, 255, 255, 0.62);
    text-align: left;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-left {
    display: grid;
    gap: 0.45rem;
}

.footer-logo {
    width: auto;
    height: 76px;
    filter:
        drop-shadow(0 0 28px rgba(255, 255, 255, 0.72))
        drop-shadow(0 0 58px rgba(53, 214, 255, 0.54))
        drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42));
}

.footer-tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 0.04em;
}

.footer-tagline .footer-add,
.footer-tagline .footer-deliver {
    color: var(--color-white);
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.55),
        0 0 24px rgba(53, 214, 255, 0.28);
}

.footer-tagline .footer-plan {
    color: var(--color-cyan);
    text-shadow:
        0 0 8px rgba(53, 214, 255, 0.75),
        0 0 24px rgba(53, 214, 255, 0.45);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.footer-right {
    display: grid;
    gap: 1.1rem;
    justify-items: end;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.05rem;
    max-width: 760px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    line-height: 1;
    font-weight: 800;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 14px rgba(53, 214, 255, 0.55);
}

.footer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.1rem;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(53, 214, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(14, 67, 80, 0.28);
    font-size: 0.78rem;
    font-weight: 900;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    color: var(--color-cyan);
    border-color: rgba(53, 214, 255, 0.58);
    box-shadow: 0 0 20px rgba(53, 214, 255, 0.22);
}

.paddymdev-credit {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.paddymdev-credit > span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.paddymdev-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 17px;
    background: #ffffff;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 22px rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.paddymdev-link:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.32),
        0 0 28px rgba(255, 255, 255, 0.28);
}

.paddymdev-link img {
    display: block;
    width: auto;
    height: 38px;
    max-width: 150px;
    object-fit: contain;
    filter: none;
}

@media (max-width: 760px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        height: 62px;
        margin-inline: auto;
    }

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

    .footer-right {
        width: 100%;
        justify-items: center;
    }

    .footer-links {
        justify-content: center;
        gap: 0.8rem 1rem;
    }

    .footer-actions {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
    }

    .footer-social {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .paddymdev-credit {
        flex-direction: column;
    }

    .paddymdev-link img {
        height: 34px;
        max-width: 140px;
    }
}

.brand img,
.footer-logo {
    filter:
        drop-shadow(0 0 34px rgba(255, 255, 255, 1))
        drop-shadow(0 0 70px rgba(255, 255, 255, 0.95))
        drop-shadow(0 0 120px rgba(255, 255, 255, 0.82))
        drop-shadow(0 0 170px rgba(255, 255, 255, 0.5))
        drop-shadow(0 0 58px rgba(53, 214, 255, 0.85))
        drop-shadow(0 0 110px rgba(53, 214, 255, 0.55))
        drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42));
}

.footer-social a {
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--color-teal-dark);
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-2px);
    color: var(--color-teal-dark);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(53, 214, 255, 0.22);
}


/* ==================================================================
   Data Import
================================================================== */

.data-import-section {
    background:
        radial-gradient(circle at 18% 24%, rgba(247, 147, 30, 0.13), transparent 30%),
        radial-gradient(circle at 82% 72%, rgba(53, 214, 255, 0.14), transparent 32%);
}

.data-import-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.data-import-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(53, 214, 255, 0.14), transparent 38%),
        radial-gradient(circle at bottom right, rgba(247, 147, 30, 0.12), transparent 38%),
        var(--glass-bg-strong);
    box-shadow: var(--shadow-soft), var(--shadow-cyan);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.data-import-card:hover {
    transform: translateY(-5px);
    border-color: rgba(53, 214, 255, 0.58);
    box-shadow: var(--shadow-soft), 0 0 38px rgba(53, 214, 255, 0.30);
}

.data-import-card i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 20px;
    color: #062329;
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    box-shadow: 0 0 24px rgba(53, 214, 255, 0.26);
    font-size: 1.8rem;
}

.data-import-card span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--color-orange);
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.data-import-card h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.95rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.data-import-card p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.98rem;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .data-import-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .data-import-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================================================================
   July 2026 supported-work refinements
================================================================== */
.showcase-industry-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.showcase-industry-card {
    min-height: 310px;
}

@media (max-width: 900px) {
    .showcase-industry-card {
        min-height: 0;
    }
}


/* ==================================================================
   Main-site supported-work layout parity
================================================================== */
.industries-showcase-section {
    background: transparent;
}

.industries-showcase-container {
    width: min(100% - 2rem, 1200px);
}

.industries-showcase-section .industries-section-heading {
    max-width: 820px;
    margin: 0 auto clamp(1.5rem, 3vw, 2.4rem);
    text-align: center;
}

.industries-showcase-section .section-kicker {
    display: inline-flex;
    width: fit-content;
    margin: 0 auto 0.9rem;
    padding: 0.42rem 0.9rem;
    border: 1px solid rgba(0, 229, 168, 0.42);
    border-radius: 999px;
    color: var(--color-green);
    background: rgba(0, 229, 168, 0.1);
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.industries-showcase-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.8rem;
}

.industries-showcase-section .section-subtitle {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.65;
}

.industry-groups {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1rem;
    align-items: stretch;
}

.industry-group {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.25rem, 2.5vw, 1.8rem);
    border: 1px solid rgba(53, 214, 255, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(53, 214, 255, 0.18), transparent 38%),
        rgba(8, 35, 45, 0.76);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.industry-group-trades {
    background:
        radial-gradient(circle at 88% 0%, rgba(247, 147, 30, 0.17), transparent 36%),
        radial-gradient(circle at 10% 100%, rgba(0, 229, 168, 0.12), transparent 38%),
        rgba(8, 35, 45, 0.76);
}

.industry-group-heading {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

.industry-group-icon,
.work-model-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--color-teal-dark);
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    box-shadow: 0 0 24px rgba(53, 214, 255, 0.26);
}

.industry-group-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
}

.industry-group-icon i,
.work-model-icon i {
    font-size: 1.75rem;
}

.industry-group-heading span,
.work-model-card article > div:last-child > span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-green);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.industry-group-heading h3,
.work-model-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.industry-group-heading h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.1;
}

.industry-group > p {
    margin-bottom: 1.05rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    line-height: 1.6;
}

.industry-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.industry-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.58rem 0.82rem;
    border: 1px solid rgba(53, 214, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(14, 67, 80, 0.42);
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 800;
}

.industry-group-trades .industry-chips span:nth-child(3n + 1) {
    border-color: rgba(0, 229, 168, 0.28);
}

.industry-group-trades .industry-chips span:nth-child(3n + 2) {
    border-color: rgba(247, 147, 30, 0.3);
}

.work-model-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
    margin-top: 1rem;
    padding: clamp(1rem, 2.2vw, 1.35rem);
    border: 1px solid rgba(0, 229, 168, 0.3);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(0, 229, 168, 0.08), rgba(53, 214, 255, 0.08)),
        rgba(8, 35, 45, 0.72);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.work-model-card article {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.work-model-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
}

.work-model-card h3 {
    margin-bottom: 0.28rem;
    font-size: 1rem;
    line-height: 1.2;
}

.work-model-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.5;
}

.work-model-divider {
    width: 1px;
    background: linear-gradient(transparent, rgba(53, 214, 255, 0.42), transparent);
}

@media (max-width: 900px) {
    .industry-groups {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .work-model-card {
        grid-template-columns: 1fr;
    }

    .work-model-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(53, 214, 255, 0.42), transparent);
    }

    .industry-chips span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Keep this showcase section vertically aligned with the main website version. */
.industries-showcase-section.section-panel {
    min-height: calc(100svh - var(--header-height));
    padding-block: clamp(2.5rem, 5vw, 4.5rem);
    scroll-margin-top: var(--header-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ==================================================================
   July 2026 mobile stability and presentation fixes
   Desktop presentation remains unchanged.
================================================================== */
.nav-links .mobile-portal-button {
    display: none;
}

.hero-art picture,
.hero-phone picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-phone picture {
    display: grid;
    place-items: center;
}

@media (max-width: 760px) {
    /* Remove GPU-heavy fixed/glow layers that can exhaust mobile Safari. */
    html {
        scroll-behavior: auto;
    }

    body {
        background-attachment: scroll !important;
        background:
            linear-gradient(145deg, #214b52 0%, #0e2f36 42%, #081f26 100%) !important;
    }

    .site-background {
        display: none !important;
    }

    .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(8, 31, 38, 0.97) !important;
    }

    .brand img,
    .footer-logo {
        filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.48)) !important;
    }

    .hero-art {
        opacity: 0.2;
    }

    .hero-art::after {
        background: linear-gradient(180deg, rgba(4, 22, 29, 0.82), rgba(4, 22, 29, 0.96)) !important;
    }

    .hero-art picture,
    .hero-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .phone-glow {
        display: none !important;
        filter: none !important;
    }

    .hero-phone {
        contain: layout paint;
    }

    .hero-phone img {
        width: min(100%, 300px) !important;
        border-radius: 34px;
        transform: none !important;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38), 0 0 14px rgba(53, 214, 255, 0.12) !important;
    }

    /* Never leave mobile content hidden if an observer is delayed or unavailable. */
    .reveal,
    .reveal.visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Reduce off-screen rendering work on this image-heavy showcase. */
    main > .section-panel:not(.hero) {
        content-visibility: auto;
        contain-intrinsic-size: 900px;
    }

    .nav-links .mobile-portal-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        width: 100%;
        min-height: 50px;
        margin-top: 0.35rem;
        padding: 0.75rem 1rem !important;
        border: 1px solid rgba(0, 229, 168, 0.62);
        border-radius: 16px;
        color: var(--color-white) !important;
        background:
            linear-gradient(135deg, rgba(0, 229, 168, 0.2), rgba(53, 214, 255, 0.14)),
            #0a3039;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 20px rgba(53, 214, 255, 0.14);
        font-weight: 900;
    }

    .nav-links .mobile-portal-button i:first-child {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        color: var(--color-teal-dark);
        background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
    }

    .nav-links .mobile-portal-button i:last-child {
        color: var(--color-cyan);
    }

    /* Keep the iOS status as a complete card, not plain text. */
    .hero-ios-status.compact {
        position: relative;
        isolation: auto;
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) !important;
        align-items: center;
        gap: 0.8rem;
        width: 100% !important;
        max-width: 100%;
        min-height: 122px !important;
        padding: 0.95rem !important;
        overflow: hidden;
        border: 1px solid rgba(0, 229, 168, 0.62) !important;
        border-radius: 20px !important;
        background-color: #0a3039 !important;
        background-image:
            radial-gradient(circle at 12% 0%, rgba(0, 229, 168, 0.24), transparent 46%),
            linear-gradient(135deg, #071e25, #0c3b45) !important;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), 0 0 22px rgba(0, 229, 168, 0.16) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hero-ios-status.compact::before {
        display: none !important;
    }

    .ios-status-icon {
        display: grid !important;
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .ios-status-copy,
    .ios-status-copy span,
    .ios-status-copy strong,
    .ios-status-copy p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .ios-status-copy strong {
        font-size: 1rem;
    }

    .ios-status-copy p {
        margin: 0;
        font-size: 0.74rem;
        line-height: 1.45;
    }

    /* Preserve the complete supported-work cards and icon panels. */
    .industries-showcase-section.section-panel {
        display: block !important;
        min-height: auto !important;
        padding-block: 4rem !important;
    }

    .industries-showcase-container {
        width: min(100% - 1.2rem, 1200px) !important;
    }

    .industry-groups {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.9rem;
    }

    .industry-group {
        display: block !important;
        padding: 1.1rem !important;
        overflow: hidden;
        border: 1px solid rgba(53, 214, 255, 0.34) !important;
        border-radius: 24px !important;
        background-color: #092b34 !important;
        background-image:
            radial-gradient(circle at 10% 0%, rgba(53, 214, 255, 0.18), transparent 42%),
            linear-gradient(145deg, #0a3039, #071f27) !important;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .industry-group-trades {
        background-image:
            radial-gradient(circle at 92% 0%, rgba(247, 147, 30, 0.18), transparent 40%),
            radial-gradient(circle at 8% 100%, rgba(0, 229, 168, 0.12), transparent 42%),
            linear-gradient(145deg, #0a3039, #071f27) !important;
    }

    .industry-group-heading {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .industry-group-icon {
        display: grid !important;
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        border-radius: 17px;
        background: linear-gradient(145deg, var(--color-green), var(--color-cyan)) !important;
        box-shadow: 0 0 18px rgba(53, 214, 255, 0.22) !important;
    }

    .industry-group-icon i,
    .work-model-icon i {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .industry-chips {
        gap: 0.5rem;
    }

    .industry-chips span {
        width: auto !important;
        max-width: 100%;
        min-height: 36px;
        justify-content: flex-start !important;
        padding: 0.55rem 0.72rem;
        text-align: left !important;
        background: rgba(14, 67, 80, 0.62) !important;
    }

    .work-model-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.85rem;
        margin-top: 0.9rem;
        padding: 1rem !important;
        border: 1px solid rgba(0, 229, 168, 0.38) !important;
        border-radius: 24px !important;
        background-color: #092f37 !important;
        background-image: linear-gradient(145deg, rgba(0, 229, 168, 0.1), rgba(53, 214, 255, 0.07)) !important;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .work-model-card article {
        display: flex !important;
        align-items: center;
        gap: 0.8rem;
    }

    .work-model-icon {
        display: grid !important;
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }

    .work-model-divider {
        width: 100%;
        height: 1px;
    }

    /* Preserve the white rounded PaddyMDev badge on mobile. */
    .paddymdev-credit {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .paddymdev-link {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 168px;
        min-height: 66px !important;
        padding: 0.55rem 1rem !important;
        border: 1px solid rgba(255, 255, 255, 0.96) !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.16) !important;
    }

    .paddymdev-link img {
        display: block !important;
        width: auto !important;
        height: 46px !important;
        max-width: 150px !important;
        object-fit: contain;
        filter: none !important;
    }

    /* Keep remaining mobile cards stable without expensive blur passes. */
    .image-card,
    .journey-media,
    .feature-card,
    .final-card,
    .journey-copy,
    .document-selector-panel,
    .document-viewer-panel,
    .template-selector-panel,
    .template-viewer-panel,
    .data-import-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), 0 0 12px rgba(53, 214, 255, 0.1) !important;
    }

    .final-card > img {
        filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34)) !important;
    }
}

/* Self-contained mobile icon fallbacks for the newly added panels. */
@media (max-width: 760px) {
  .hero-ios-status.compact .ios-status-icon i,
  .industry-group .industry-group-icon i,
  .work-model-card .work-model-icon i {
    display: none !important;
  }

  .hero-ios-status.compact .ios-status-icon::after,
  .industry-group .industry-group-icon::after,
  .work-model-card .work-model-icon::after {
    content: '';
    display: block;
    width: 27px;
    height: 27px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .hero-ios-status.compact .ios-status-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
  }

  .industry-group-freight .industry-group-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h11v10H3z'/%3E%3Cpath d='M14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E");
  }

  .industry-group-trades .industry-group-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5-5l2.1 2.1-2.4 2.4-2.1-2.1a4 4 0 0 0 5 5L19 15.4 21.6 18 18 21.6 15.4 19l-6.7-6.7a4 4 0 0 0-5 5l2.1-2.1 2.4 2.4-2.1 2.1a4 4 0 0 0 5-5z'/%3E%3C/svg%3E");
  }

  .work-model-card article:first-child .work-model-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8l-9-5-9 5 9 5z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/svg%3E");
  }

  .work-model-card article:last-child .work-model-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5-5l2.1 2.1-2.4 2.4-2.1-2.1a4 4 0 0 0 5 5L19 15.4 21.6 18 18 21.6 15.4 19l-6.7-6.7a4 4 0 0 0-5 5l2.1-2.1 2.4 2.4-2.1 2.1a4 4 0 0 0 5-5z'/%3E%3C/svg%3E");
  }
}

/* Compact Pocket Freight logo container — same portal-style treatment. */
.brand,
.pocket-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: fit-content;
    max-width: max-content;
    align-self: flex-start;
    justify-self: start;
    padding: 2px 4px;
    line-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 12px;
    background: #d9dde0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.brand img,
.footer-logo {
    width: auto;
    object-fit: contain;
    filter: none !important;
}

.brand img {
    height: 58px;
}

.footer-logo {
    height: 52px;
}

@media (max-width: 760px) {
    .brand,
    .pocket-logo-shell {
        width: fit-content !important;
        max-width: max-content !important;
        padding: 2px 3px;
        border-radius: 10px;
    }

    .brand img {
        height: 44px !important;
    }

    .footer-logo {
        height: 46px !important;
    }
}


/* Final Pocket Freight logo alignment. */
.brand {
  align-self: center;
}

@media (max-width: 760px) {
  .pocket-logo-shell {
    align-self: center !important;
    justify-self: center !important;
    margin-inline: auto !important;
  }
}

/* Pocket Freight & Trade brand refresh */
:root {
  --brand-orange: #f36b0a;
  --brand-blue: #2f6f9f;
  --brand-navy: #062b49;
}
.eyebrow { color: var(--brand-orange); }
.button-primary { background: linear-gradient(135deg, var(--brand-orange), #ff943f); border-color: rgba(255,148,63,.65); }
.section-heading h2 strong, .journey-copy > span { color: var(--brand-orange); }
.site-header { box-shadow: 0 10px 32px rgba(0, 30, 52, .28); }
