/* ==========================================================================
   InfraShift Technologies — Global CSS
   Design system: CSS custom properties + base typography + component styles
   Font stack: Poppins (headings) / Inter (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Brand colours */
    --color-brand:   #0055ff;
    --color-brand-hover: #0044cc;
    --color-ink:     #0f172a;
    --color-muted:   #475569;
    --color-canvas:  #f8fbff;
    --color-line:    #dbe7ff;
    --color-white:   #ffffff;
    --color-slate-50:  #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-700: #334155;
    --color-slate-900: #0f172a;

    /* Typography */
    --font-heading: 'Poppins', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', system-ui, sans-serif;

    /* Spacing */
    --container-max: 80rem; /* 1280px */
    --section-py:    5rem;

    /* Shadows */
    --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);

    /* Border radius */
    --radius-pill: 9999px;
    --radius-card: 0.5rem;   /* 8px */
    --radius-lg:   0.75rem;  /* 12px */
}

/* --------------------------------------------------------------------------
   2. Box-sizing & Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------------------------------
   3. Base Document & Typography
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-canvas);
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-ink);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem;     font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; }

p {
    line-height: 1.7;
    color: var(--color-muted);
}

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--color-brand-hover); }

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

ul, ol { list-style: none; }

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem;   } }

.section {
    padding-block: var(--section-py);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-brand);
}
.btn-primary:hover {
    background-color: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-ink);
    border-color: var(--color-slate-200);
}
.btn-outline:hover {
    background-color: rgba(0, 85, 255, 0.06);
    border-color: var(--color-brand);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-muted);
    border-color: transparent;
}
.btn-ghost:hover {
    background-color: var(--color-slate-100);
}

.btn-sm { padding: 0.4375rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.875rem 2rem;  font-size: 1.0625rem; }

/* --------------------------------------------------------------------------
   6. Cards
   -------------------------------------------------------------------------- */
.card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-slate-200);
    padding: 1.75rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.hero-right-hex-fade {
    position: absolute;
    inset: 0 0 0 auto;
    width: 58%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpolygon points='28,2 54,16 54,48 28,62 2,48 2,16' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 56px 64px;
    background-repeat: repeat;
    background-position: right center;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 0, 0, 0.35) 62%, transparent 82%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 0, 0, 0.35) 62%, transparent 82%);
}

@media (max-width: 1023px) {
    .hero-right-hex-fade {
        display: none;
    }
}

.card-lg {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.75rem;
    border: 1px solid var(--color-slate-200);
    border-radius: 1.25rem;
    background: var(--color-white);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 85, 255, 0.2);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.service-card-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-ink);
}

.service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(0, 85, 255, 0.08);
    color: var(--color-brand);
    flex-shrink: 0;
}

.service-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.service-card-copy {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-muted);
}

.service-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid var(--color-slate-200);
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.75);
    transform: translateX(-4px);
    opacity: 0.5;
    transition: transform 0.22s ease, opacity 0.22s ease, color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.service-card-arrow svg {
    width: 1rem;
    height: 1rem;
}

a.service-card {
    text-decoration: none;
    color: inherit;
}

.service-card:hover .service-card-arrow {
    transform: translateX(0);
    opacity: 1;
    color: var(--color-white);
    border-color: var(--color-brand);
    background: var(--color-brand);
}

.engagement-section {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.engagement-routes {
    display: grid;
    gap: 2rem;
    align-items: stretch;
    padding: 0;
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 85, 255, 0.08);
    box-shadow: 0 4px 32px rgba(15, 23, 42, 0.06);
}

.engagement-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.engagement-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.engagement-panel-icon {
    position: relative;
    width: 10.5rem;
    height: 10.5rem;
    border-radius: 999px;
    background: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.1rem;
    flex-shrink: 0;
    box-shadow: 0 18px 40px rgba(0, 85, 255, 0.22);
}

.engagement-panel-icon::before,
.engagement-panel-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid rgba(0, 85, 255, 0.34);
    pointer-events: none;
}

.engagement-panel-icon::before {
    inset: -0.7rem;
}

.engagement-panel-icon::after {
    inset: -1.35rem;
    border-color: rgba(0, 85, 255, 0.2);
}

.engagement-panel-icon-label {
    position: relative;
    z-index: 1;
    max-width: 6.9rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-align: center;
    color: var(--color-white);
    text-transform: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.engagement-panel-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-ink);
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.engagement-panel-desc {
    font-size: 0.875rem;
    color: var(--color-muted);
    max-width: 22rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.engagement-panel-stat {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 85, 255, 0.08);
    color: var(--color-brand);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}

.engagement-visual {
    position: relative;
    min-height: 26rem;
    overflow: hidden;
    background: #edf3ff;
}
.engagement-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0055ff;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    transform: rotate(-12deg);
    box-shadow: 0 10px 24px rgba(0, 85, 255, 0.25);
}

.engagement-badge::before,
.engagement-badge::after {
    content: '';
    position: absolute;
    inset: -0.35rem;
    border-radius: 999px;
    border: 2px solid #0055ff;
    opacity: 0.9;
}

.engagement-badge::before {
    transform: rotate(18deg) scale(1.05);
}

.engagement-badge::after {
    transform: rotate(-14deg) scale(1.14);
}

.engagement-stage {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
}

.engagement-grid {
    position: absolute;
    inset: 34% 0 0 14%;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.16) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.16) 1px, transparent 1px);
    background-size: 4.5rem 4.5rem;
    transform: perspective(1000px) rotateX(66deg);
    transform-origin: top center;
}

.engagement-pillar {
    position: absolute;
    left: 28%;
    bottom: 20%;
    width: 4.5rem;
    height: 9rem;
    background: linear-gradient(180deg, #ffffff, #d7dfef);
    border: 1px solid rgba(15, 23, 42, 0.18);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.10);
}

.engagement-pillar::before,
.engagement-pillar::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #f8fbff;
}

.engagement-pillar::before {
    left: -1px;
    bottom: 100%;
    width: 100%;
    height: 1.6rem;
    transform: skewY(-28deg);
    transform-origin: bottom left;
}

.engagement-pillar::after {
    left: 100%;
    bottom: 0;
    width: 1.35rem;
    height: 100%;
    transform: skewY(-62deg);
    transform-origin: left bottom;
    background: #cfd8ea;
}

.engagement-flag {
    position: absolute;
    left: 50%;
    bottom: calc(100% - 1rem);
    width: 2px;
    height: 4.5rem;
    background: var(--color-slate-900);
}

.engagement-flag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 2rem;
    height: 1.3rem;
    background: #0055ff;
    border: 1px solid var(--color-slate-900);
    clip-path: polygon(0 0, 100% 10%, 78% 54%, 100% 100%, 0 100%);
}

.engagement-track {
    position: absolute;
    border-radius: 999px;
    border: 1.4rem solid var(--color-slate-900);
    border-left-color: transparent;
    border-top-color: transparent;
    background: transparent;
}

.engagement-track-one {
    right: -4%;
    bottom: -12%;
    width: 22rem;
    height: 16rem;
    transform: rotate(10deg);
}

.engagement-track-two {
    right: 8%;
    bottom: -4%;
    width: 16rem;
    height: 11rem;
    transform: rotate(6deg);
}

.engagement-track-three {
    right: 18%;
    bottom: 4%;
    width: 10rem;
    height: 6.5rem;
    transform: rotate(5deg);
}

.engagement-tile {
    position: absolute;
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.engagement-tile-one {
    left: 13%;
    bottom: 8%;
    width: 7rem;
    height: 7rem;
}

.engagement-tile-two {
    left: 20%;
    bottom: 8%;
    width: 7rem;
    height: 7rem;
}

.engagement-tile-three {
    left: 27%;
    bottom: 8%;
    width: 7rem;
    height: 7rem;
}

.engagement-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 2rem 2rem 2rem;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.78);
}

.engagement-options-intro {
    padding-bottom: 1.5rem;
}

.engagement-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(0, 85, 255, 0.10);
    color: #0055ff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.engagement-options-intro h2 {
    max-width: 34rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.engagement-options-intro p:last-child {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.engagement-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.engagement-option:first-of-type {
    border-top: 0;
}

.engagement-option:hover {
    transform: translateX(4px);
    border-top-color: var(--color-brand);
}

.engagement-option-active {
    position: relative;
}

.engagement-option-active::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.3rem;
    bottom: 1.3rem;
    width: 3px;
    border-radius: 999px;
    background: #0055ff;
}

.engagement-option-copy h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.engagement-option-copy p {
    max-width: 33rem;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.60);
}

.engagement-option-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
}

.engagement-option-link::after {
    content: '\2192';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #0055ff;
    color: var(--color-white);
    font-size: 0.85rem;
}

.engagement-option-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 85, 255, 0.30);
    background: #0055ff;
    color: var(--color-white);
    box-shadow: 0 6px 16px rgba(0, 85, 255, 0.18);
}

.engagement-option-icon svg {
    width: 0.9rem;
    height: 0.9rem;
}

.engagement-option-icon-pill {
    width: auto;
    min-width: 3.5rem;
    padding: 0 0.95rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .engagement-routes {
        grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
        gap: 0;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .engagement-routes {
        padding: 0;
    }

    .engagement-options {
        padding: 1.5rem 1.25rem;
    }

    /* On mobile the panels can't be absolutely stacked inside a fixed-height
       box — the icon alone is ~10.5rem and clips under overflow:hidden.
       Switch to normal flow: inactive panels hidden, active one displayed. */
    .engagement-visual {
        min-height: unset;
        height: auto;
        overflow: visible;
        padding: 2.5rem 1.5rem 2rem;
    }

    .engagement-panel {
        position: relative;
        inset: auto;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 0;
    }

    .engagement-panel.is-active {
        display: flex;
        opacity: 1;
        transform: none;
    }

    /* Decorative background shapes don't work in the collapsed height */
    .engagement-stage,
    .engagement-grid,
    .engagement-pillar,
    .engagement-flag,
    .engagement-track-one,
    .engagement-track-two,
    .engagement-track-three,
    .engagement-tile-one,
    .engagement-tile-two,
    .engagement-tile-three,
    .engagement-badge {
        display: none;
    }

    /* Slightly smaller icon on mobile */
    .engagement-panel-icon {
        width: 8.5rem;
        height: 8.5rem;
        margin-bottom: 1.5rem;
    }

    .engagement-badge {
        width: 5rem;
        height: 5rem;
        font-size: 0.72rem;
    }

    .engagement-option {
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .engagement-option-active::before {
        left: -1.25rem;
    }

    .engagement-option-copy h3 {
        font-size: 1.05rem;
    }
}

/* --------------------------------------------------------------------------
   7. Badge / Tag
   -------------------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-brand {
    background-color: var(--color-line);
    color: var(--color-brand);
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

.badge-warning {
    background-color: #fef9c3;
    color: #854d0e;
}

.badge-draft {
    background-color: var(--color-slate-100);
    color: var(--color-slate-700);
}

/* --------------------------------------------------------------------------
   8. Forms
   -------------------------------------------------------------------------- */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink);
    margin-bottom: 0.375rem;
    font-family: var(--font-body);
}

.form-input,
.form-select,
.form-textarea {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: var(--color-white);
    border: 1px solid var(--color-slate-300);
    border-radius: var(--radius-card);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-ink);
    line-height: 1.5;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.12);
}

.form-textarea { resize: vertical; min-height: 9rem; }

.form-error {
    font-size: 0.8125rem;
    color: #dc2626;
    margin-top: 0.35rem;
}

/* --------------------------------------------------------------------------
   9. Alert / Flash Messages
   -------------------------------------------------------------------------- */
.alert {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-card);
    font-size: 0.9375rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.alert-info {
    background-color: #eff6ff;
    border-color: var(--color-line);
    color: var(--color-brand);
}

/* --------------------------------------------------------------------------
   10. Admin Sidebar Layout
   -------------------------------------------------------------------------- */
.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-card);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
}
.admin-sidebar-link:hover,
.admin-sidebar-link.active {
    background-color: var(--color-line);
    color: var(--color-brand);
}

.admin-form-shell {
    border: 1px solid var(--color-slate-200);
    border-radius: 1rem;
    background: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.admin-form-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-form-section {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 0.875rem;
    background: #fbfdff;
    padding: 1.25rem;
}

.admin-form-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 0.25rem;
}

.admin-form-section-copy {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.admin-form-grid-2,
.admin-form-grid-3 {
    display: grid;
    gap: 1rem;
}

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

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

.admin-form-field {
    min-width: 0;
}

.admin-form-note {
    font-size: 0.8125rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
}

.admin-editor-card {
    border: 1px solid var(--color-slate-200);
    border-radius: 0.875rem;
    overflow: hidden;
    background: var(--color-white);
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

@media (max-width: 1023px) {
    .admin-form-grid-2,
    .admin-form-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   11. Table
   -------------------------------------------------------------------------- */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.data-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
    background: var(--color-slate-50);
    border-bottom: 1px solid var(--color-slate-200);
}

.data-table td {
    padding: 0.875rem 1rem;
    color: var(--color-ink);
    border-bottom: 1px solid var(--color-slate-100);
    vertical-align: middle;
}

.data-table tbody tr:hover td {
    background: var(--color-canvas);
}

/* --------------------------------------------------------------------------
   12. Section Divider / Eyebrow
   -------------------------------------------------------------------------- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   13. Tech Logo Marquee
   -------------------------------------------------------------------------- */
.tech-marquee-mask {
    position: relative;
    min-width: 0;
}

.tech-marquee-mask::before,
.tech-marquee-mask::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 3rem;
    pointer-events: none;
}

.tech-marquee-mask::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), rgba(255, 255, 255, 0));
}

.tech-marquee-mask::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), rgba(255, 255, 255, 0));
}

.tech-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tech-marquee-scroll 36s linear infinite;
    will-change: transform;
}

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

.tech-marquee-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
    flex-shrink: 0;
}

.tech-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 8.5rem;
    height: 4rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-pill);
    background: var(--color-white);
}

.tech-logo-image {
    max-width: 100%;
    max-height: 2rem;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) saturate(0) opacity(0.75);
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.tech-logo-item:hover .tech-logo-image {
    filter: grayscale(0) saturate(1);
    opacity: 1;
    transform: translateY(-1px);
}

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

@media (max-width: 767px) {
    .tech-logo-item {
        min-width: 7.25rem;
        height: 3.5rem;
        padding: 0.625rem 0.875rem;
    }

    .tech-logo-image {
        max-height: 1.65rem;
    }
}

/* --------------------------------------------------------------------------
   14. Scrollbar (Webkit)
   -------------------------------------------------------------------------- */
/* Firefox */
* { scrollbar-color: var(--color-brand) var(--color-slate-100); scrollbar-width: thin; }

::-webkit-scrollbar              { width: 6px; height: 6px; }
::-webkit-scrollbar-track        { background: var(--color-slate-100); }
::-webkit-scrollbar-thumb        { background: var(--color-brand); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover  { background: var(--color-brand-hover); }

/* --------------------------------------------------------------------------
   15. Focus Visible (Accessibility)
   -------------------------------------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px;
    border-radius: 3px;
}

/* --------------------------------------------------------------------------
   16. Misc Helpers
   -------------------------------------------------------------------------- */
.text-brand  { color: var(--color-brand) !important; }
.text-ink    { color: var(--color-ink)   !important; }
.text-muted  { color: var(--color-muted) !important; }
.bg-canvas   { background-color: var(--color-canvas); }
.bg-brand    { background-color: var(--color-brand);  }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* --------------------------------------------------------------------------
   17. Why InfraShift Section
   -------------------------------------------------------------------------- */
.why-section {
    background: #ffffff;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

/* --- Left mock --- */
.why-mock-wrap {
    position: relative;
    padding: 0 0.5rem 1.5rem;
}

@media (min-width: 1024px) {
    .why-mock-wrap {
        padding-top: 4rem;
    }
}

.why-float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-ink);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    white-space: nowrap;
    z-index: 2;
}
.why-float-badge--top  { top: 0;    right: 0.5rem; }
.why-float-badge--bottom { bottom: 0; left: 0.5rem; }

/* DevOps CI/CD Pipeline visual */
.devops-vis {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(0, 85, 255, 0.12);
    border-radius: var(--radius-card);
    overflow: hidden;
}

/* Chrome bar */
.devops-vis-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 85, 255, 0.04);
    border-bottom: 1px solid rgba(0, 85, 255, 0.1);
}
.devops-vis-header-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.devops-vis-header-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.devops-vis-title {
    flex: 1;
    margin-left: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.devops-vis-live {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: #15803d;
    flex-shrink: 0;
}
.devops-vis-live em {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    font-style: normal;
    animation: why-pulse 1.8s ease-in-out infinite;
}
@keyframes why-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

/* Pipeline stages row */
.devops-vis-pipeline {
    display: flex;
    align-items: center;
    padding: 1.75rem 1.5rem 1rem;
    background:
        radial-gradient(circle at top left, rgba(0, 85, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(248, 251, 255, 0.9) 100%);
}
.devops-vis-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}
.devops-vis-stage-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(148, 163, 184, 0.35);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(71, 85, 105, 0.75);
    transition: border-color 0.3s, background 0.3s, color 0.3s;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.devops-vis-stage--done .devops-vis-stage-node {
    border-color: rgba(0, 85, 255, 0.4);
    background: rgba(0, 85, 255, 0.08);
    color: var(--color-brand);
}
.devops-vis-stage--active .devops-vis-stage-node {
    border-color: var(--color-brand);
    background: rgba(0, 85, 255, 0.14);
    color: var(--color-brand);
    animation: devops-pulse-ring 2.2s ease-in-out infinite;
}
@keyframes devops-pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,85,255,0.5); }
    50%       { box-shadow: 0 0 0 7px rgba(0,85,255,0); }
}
.devops-vis-stage-label {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.devops-vis-stage--done .devops-vis-stage-label  { color: #0047d9; }
.devops-vis-stage--active .devops-vis-stage-label { color: #0047d9; }

/* Connecting track */
.devops-vis-track {
    flex: 1;
    height: 2px;
    background: rgba(148, 163, 184, 0.35);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.35rem;
    min-width: 0;
}
.devops-vis-track--done { background: rgba(0, 85, 255, 0.3); }

.devops-vis-track-ball {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 85, 255, 0.92);
    box-shadow: 0 0 10px rgba(0, 85, 255, 0.45);
    animation: devops-flow 2s linear infinite;
}
.devops-vis-track--done .devops-vis-track-ball {
    background: var(--color-brand);
    box-shadow: 0 0 10px rgba(0, 85, 255, 0.45);
    animation-duration: 1.6s;
}
@keyframes devops-flow {
    0%   { left: -10px; opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

/* Terminal block */
.devops-terminal {
    margin: 0 1.25rem 1.25rem;
    background: #f8fbff;
    border: 1px solid rgba(0, 85, 255, 0.12);
    border-radius: 8px;
    padding: 1rem 1.1rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.devops-terminal-line {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.75;
    display: block;
}
.devops-terminal-line--prompt  { color: #0f172a; }
.devops-terminal-line--ok      { color: #0055ff; }
.devops-terminal-line--info    { color: #1d4ed8; }
.devops-terminal-line--comment { color: #64748b; font-style: italic; font-weight: 500; }
.devops-terminal-cursor {
    display: inline-block;
    animation: why-pulse 1s step-start infinite;
    color: var(--color-brand);
}

/* Stat bar */
.devops-vis-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0, 85, 255, 0.1);
    background: rgba(0, 85, 255, 0.02);
}
.devops-vis-stat {
    padding: 0.85rem 0.4rem;
    text-align: center;
    border-right: 1px solid rgba(0, 85, 255, 0.08);
}
.devops-vis-stat:last-child { border-right: none; }
.devops-vis-stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}
.devops-vis-stat-key {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: #475569;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* =============================================
   STATS CARD (inside Why InfraShift)
   ============================================= */
.stats-strip-card {
    border: 1px solid rgba(0, 85, 255, 0.12);
    border-radius: 1rem;
    background: #f8faff;
    overflow: hidden;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-strip-item {
    padding: 1.375rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(0, 85, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-strip-item:last-child { border-right: none; }

.stats-strip-val {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-brand);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats-strip-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: #475569;
    margin-top: 0.25rem;
}

@media (max-width: 767px) {
    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-strip-item:nth-child(2) { border-right: none; }
    .stats-strip-item:nth-child(3) {
        border-top: 1px solid rgba(0, 85, 255, 0.1);
        border-right: 1px solid rgba(0, 85, 255, 0.1);
    }
    .stats-strip-item:nth-child(4) {
        border-top: 1px solid rgba(0, 85, 255, 0.1);
    }
}

/* --- Right copy --- */
.why-feature-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--color-brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.05rem;
}

.why-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2rem;
    background: var(--color-brand);
    color: #ffffff;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.why-cta-btn:hover {
    background: #0044dd;
    color: #ffffff;
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   18. Industries Section
   -------------------------------------------------------------------------- */
.industries-section {
    position: relative;
    background: #ffffff;
}

.industries-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.industries-intro .section-badge {
    margin-bottom: 1.1rem;
}

.industries-grid-shell {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

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

.industry-tile {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 1.15rem 1.15rem 1.2rem;
    background: #ffffff;
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.industry-tile:nth-child(2n) {
    border-right: none;
}

.industry-tile:nth-last-child(-n + 2) {
    border-bottom: none;
}

.industry-tile::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--color-brand);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.industry-tile:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 85, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(0, 85, 255, 0.08);
}

.industry-tile:hover::before {
    opacity: 1;
}

.industry-tile-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.9rem;
    background: #eef4ff;
    color: var(--color-brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.industry-tile:hover .industry-tile-icon {
    transform: scale(1.06);
    background: #e3edff;
}

.industry-tile-icon svg {
    width: 1rem;
    height: 1rem;
}

.industry-tile-copy {
    position: relative;
    z-index: 1;
}

.industry-tile-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

.industry-tile-body {
    margin: 0.35rem 0 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: #475569;
    max-width: 32ch;
}

@media (max-width: 1023px) {
    .industries-intro {
        height: auto;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-tile {
        border-right: none;
    }

    .industry-tile:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .industry-tile:last-child {
        border-bottom: none;
    }
}

.cert-strip-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background:
        radial-gradient(circle at 12% 50%, rgba(0, 85, 255, 0.1), transparent 24%),
        linear-gradient(90deg, #f8fbff 0%, #ffffff 48%, #f8fbff 100%);
}

.cert-strip-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    width: min(100%, 100rem);
    margin: 0 auto;
    padding: 0.65rem 0.75rem 0.65rem 0.9rem;
}

.cert-strip-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
    white-space: nowrap;
}

.cert-strip-kicker {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand);
}

.cert-strip-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: var(--color-ink);
}

.cert-strip-marquee {
    position: relative;
    overflow: hidden;
    min-width: 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.cert-strip-track {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: max-content;
    animation: cert-strip-scroll 32s linear infinite;
}

.cert-strip-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 15.75rem;
    min-height: 7.15rem;
    padding: 0.15rem 0.25rem;
}

.cert-strip-logo-image {
    max-width: 100%;
    max-height: 5.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes cert-strip-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.4rem));
    }
}

@media (max-width: 1023px) {
    .cert-strip-shell {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }

    .cert-strip-copy {
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .cert-strip-shell {
        gap: 0.55rem;
        padding: 0.55rem 0.6rem 0.65rem;
    }

    .cert-strip-kicker {
        font-size: 0.64rem;
    }

    .cert-strip-title {
        font-size: 0.84rem;
    }

    .cert-strip-track {
        gap: 0.65rem;
        animation-duration: 26s;
    }

    .cert-strip-logo-card {
        min-width: 12rem;
        min-height: 5.9rem;
        padding: 0.1rem 0.2rem;
    }

    .cert-strip-logo-image {
        max-height: 4.3rem;
    }
}

/* --------------------------------------------------------------------------
   19. Testimonials Showcase Section
   -------------------------------------------------------------------------- */
.testimonials-showcase-section {
    background: #f8fbff;
    border-top: 1px solid rgba(0, 85, 255, 0.08);
}

.testimonials-showcase-header {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 3rem;
}

.testimonials-showcase-carousel {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.testimonials-showcase-track {
    position: relative;
}

.testimonials-showcase-slide {
    display: none;
}

.testimonials-showcase-slide.is-active {
    display: block;
}

.testimonials-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial-showcase-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.8rem 1.9rem;
    border: 1px solid rgba(0, 85, 255, 0.16);
    border-radius: 1.5rem;
    background: #ffffff;
}

.testimonial-showcase-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 0.18em;
}

.testimonial-showcase-quote {
    margin: 1.15rem 0 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-ink);
    flex: 1;
}

.testimonial-showcase-footer {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.2rem;
    margin-top: 1.6rem;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.testimonial-showcase-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #2f6dff 0%, #0055ff 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.testimonial-showcase-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-ink);
}

.testimonial-showcase-role {
    margin-top: 0.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b;
}

.testimonials-showcase-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.testimonials-showcase-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-showcase-dot {
    width: 0.7rem;
    height: 0.7rem;
    border: 0;
    border-radius: 999px;
    background: #dbe6f7;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-showcase-dot.is-active {
    background: var(--color-brand);
    transform: scale(1.08);
}

.testimonials-showcase-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-showcase-arrow {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 85, 255, 0.2);
    background: var(--color-brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.testimonial-showcase-arrow svg {
    width: 1rem;
    height: 1rem;
}

.testimonial-showcase-arrow:hover {
    background: #0047d9;
    border-color: #0047d9;
    color: #ffffff;
    transform: translateY(-1px);
}

.testimonial-showcase-arrow.is-disabled,
.testimonial-showcase-arrow.is-disabled:hover {
    background: #e6efff;
    color: #94a3b8;
    border-color: rgba(0, 85, 255, 0.08);
    transform: none;
}

.testimonial-showcase-count {
    min-width: 3rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.case-studies-showcase-section {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.case-studies-showcase-header {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 3rem;
}

.case-studies-showcase-carousel {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.case-studies-showcase-slide {
    display: none;
}

.case-studies-showcase-slide.is-active {
    display: block;
}

.case-studies-showcase-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}

@media (min-width: 640px) {
    .case-studies-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .case-studies-showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.case-studies-showcase-grid > :only-child {
    grid-column: 1 / -1;
    max-width: 32rem;
    justify-self: center;
    width: 100%;
}

.case-study-showcase-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0.8rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    background: #ffffff;
    width: 100%;
    padding: 1.32rem 1.22rem 1.18rem;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-study-showcase-card:hover {
    border-color: rgba(0, 85, 255, 0.18);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.case-study-showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    margin-bottom: 0.35rem;
}

.case-study-showcase-type {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    justify-content: center;
    min-height: 2.35rem;
    max-width: 10rem;
    padding: 0.46rem 0.82rem;
    background: rgba(0, 85, 255, 0.1);
    color: var(--color-brand);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: normal;
}

.case-study-showcase-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 500;
    margin-left: auto;
    white-space: nowrap;
}

.case-study-showcase-duration svg {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}

.case-study-showcase-title {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: clamp(1.08rem, 0.98rem + 0.28vw, 1.3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.22;
    margin: 0;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-showcase-excerpt {
    color: var(--color-muted);
    font-size: 0.84rem;
    line-height: 1.58;
    margin: 0;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-showcase-meta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-top: 0.2rem;
    padding-bottom: 0.35rem;
}

.case-study-showcase-meta-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #5b6778;
    font-size: 0.82rem;
    line-height: 1.4;
}

.case-study-showcase-meta-item strong {
    color: #374151;
    font-weight: 700;
}

.case-study-showcase-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    color: var(--color-brand);
    flex-shrink: 0;
}

.case-study-showcase-meta-icon svg {
    width: 0.9rem;
    height: 0.9rem;
}

.case-study-showcase-result-block {
    padding-top: 0.45rem;
}

.case-study-showcase-result-heading {
    display: block;
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.case-study-showcase-result-copy {
    color: #556172;
    font-size: 0.83rem;
    line-height: 1.58;
    margin: 0;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-showcase-footer {
    margin-top: auto;
    padding-top: 0.8rem;
}

.case-study-showcase-link {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 2.8rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--color-brand);
    background: var(--color-brand);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.case-study-showcase-card:hover .case-study-showcase-link {
    background: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
    color: var(--color-white);
}

.case-study-showcase-link svg {
    width: 0.95rem;
    height: 0.95rem;
}

.case-study-content {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.case-study-content > :first-child {
    margin-top: 0;
}

.case-study-content > :last-child {
    margin-bottom: 0;
}

.case-study-content h2,
.case-study-content h3,
.case-study-content h4 {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 1.6rem 0 0.85rem;
}

.case-study-content h2 {
    font-size: 1.5rem;
}

.case-study-content h3 {
    font-size: 1.2rem;
}

.case-study-content p,
.case-study-content ul,
.case-study-content ol,
.case-study-content blockquote {
    margin: 0 0 1rem;
}

.case-study-content ul,
.case-study-content ol {
    padding-left: 1.3rem;
}

.case-study-content li + li {
    margin-top: 0.45rem;
}

.case-study-content strong {
    color: var(--color-ink);
    font-weight: 600;
}

.case-study-content a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.case-study-content blockquote {
    border-left: 3px solid rgba(0, 85, 255, 0.18);
    color: #334155;
    padding-left: 1rem;
}

.case-studies-showcase-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
}

.case-studies-showcase-middle {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.case-studies-showcase-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.case-study-showcase-dot {
    appearance: none;
    background: rgba(148, 163, 184, 0.4);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    height: 0.7rem;
    padding: 0;
    transition: transform 180ms ease, background-color 180ms ease;
    width: 0.7rem;
}

.case-study-showcase-dot.is-active {
    background: var(--color-brand);
    transform: scale(1.15);
}

.case-studies-showcase-count {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.case-study-showcase-arrow {
    align-items: center;
    appearance: none;
    background: #ffffff;
    border: 1px solid rgba(0, 85, 255, 0.22);
    border-radius: 999px;
    color: var(--color-brand);
    cursor: pointer;
    display: inline-flex;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.2rem;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.case-study-showcase-arrow svg {
    height: 1rem;
    width: 1rem;
}

.case-study-showcase-arrow:hover,
.case-study-showcase-arrow:focus-visible {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
    outline: none;
    transform: translateY(-1px);
}

.case-study-showcase-arrow.is-disabled,
.case-study-showcase-arrow.is-disabled:hover,
.case-study-showcase-arrow.is-disabled:focus-visible {
    background: #eff6ff;
    border-color: rgba(0, 85, 255, 0.12);
    color: rgba(0, 85, 255, 0.4);
    cursor: default;
    transform: none;
}

.contact-section {
    background:
        radial-gradient(circle at top left, rgba(0, 85, 255, 0.06), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0, 85, 255, 0.035), transparent 24%),
        #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-section-shell {
    display: grid;
    gap: 2.75rem;
    align-items: start;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.contact-section-copy {
    max-width: 31rem;
}

.contact-section-points {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.9rem;
}

.contact-point {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 600;
    width: fit-content;
}

.contact-aside {
    padding: 0.5rem 0.25rem;
}

.contact-link-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.contact-link-list > li {
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.contact-link-inline {
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 0.1rem;
    color: var(--color-ink);
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link-inline:hover {
    color: var(--color-brand);
}

.contact-link-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    color: var(--color-brand);
}

.contact-link-inline-icon svg {
    width: 1rem;
    height: 1rem;
}

.contact-request-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.68rem;
}

.contact-request-list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-muted);
}

.contact-request-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: var(--color-brand);
}

.contact-point-icon {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.85rem;
    background: rgba(0, 85, 255, 0.07);
    color: var(--color-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-point-icon svg {
    width: 1rem;
    height: 1rem;
}

.contact-section-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.055);
    padding: 1.85rem;
    backdrop-filter: blur(6px);
    width: 100%;
    max-width: 54rem;
    justify-self: stretch;
}

.contact-form-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-section-card .form-input::placeholder,
.contact-section-card .form-textarea::placeholder {
    color: #94a3b8;
}

.contact-form-message {
    grid-column: 1 / -1;
}

.form-textarea {
    min-height: 8.5rem;
    resize: vertical;
}

.contact-submit-button {
    grid-column: 1 / -1;
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: var(--color-brand);
    color: #ffffff;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
    background: var(--color-brand-hover);
    transform: translateY(-1px);
    outline: none;
}

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(0, 85, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #0b1220 0%, #08101d 100%);
    color: rgba(226, 232, 240, 0.88);
}

.site-footer-grid {
    display: grid;
    gap: 2.25rem;
    grid-template-columns: minmax(0, 1.25fr) repeat(5, minmax(0, 0.82fr));
}

.site-footer-brand {
    max-width: 23rem;
}

.site-footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-footer-logo {
    width: auto;
    max-width: 220px;
    height: 56px;
    object-fit: contain;
}

.site-footer-summary {
    margin-top: 1.35rem;
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.98rem;
    line-height: 1.75;
}

.site-footer-socials {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.site-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer-social:hover,
.site-footer-social:focus-visible {
    color: #ffffff;
    background: var(--color-brand);
    border-color: var(--color-brand);
    transform: translateY(-1px);
    outline: none;
}

.site-footer-social svg {
    width: 1rem;
    height: 1rem;
}

.site-footer-heading {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.site-footer-links,
.site-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.1rem;
}

.site-footer-links a,
.site-footer-contact-list a,
.site-footer-contact-list span {
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible,
.site-footer-contact-list a:hover,
.site-footer-contact-list a:focus-visible {
    color: #ffffff;
    outline: none;
}

.site-footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.site-footer-bottom p {
    color: rgba(226, 232, 240, 0.62);
    font-size: 0.92rem;
}

.site-footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}

.site-footer-legal a {
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.92rem;
}

.site-footer-legal a:hover,
.site-footer-legal a:focus-visible {
    color: #ffffff;
    outline: none;
}

@media (max-width: 899px) {
    .testimonials-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .site-footer-brand {
        max-width: none;
        grid-column: 1 / -1;
    }
}

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

    .testimonials-showcase-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-showcase-card {
        padding: 1.5rem;
    }

    .case-studies-showcase-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-studies-showcase-grid {
        grid-template-columns: 1fr;
    }

    .case-study-showcase-card {
        max-width: none;
        padding: 1.25rem;
    }

    .case-study-showcase-top {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .case-study-showcase-duration {
        margin-left: 0;
    }

    .case-study-showcase-footer {
        padding-top: 0.25rem;
    }

    .case-study-showcase-arrow {
        justify-content: center;
        width: 100%;
    }

    .contact-section-card {
        padding: 1.25rem;
        border-radius: 1.25rem;
        max-width: none;
        justify-self: stretch;
    }

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

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .site-footer-logo {
        height: 50px;
    }

    .site-footer-bottom .mx-auto {
        align-items: flex-start;
    }

    .site-footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   Mobile swipe carousels — Customer Stories & Case Studies (≤639px)
   display:contents flattens page/grid wrappers into the track's flex
   context so every card is a single snap item in one continuous lane.
   Native CSS scroll-snap handles touch swipe — no JS changes needed.
   -------------------------------------------------------------------------- */
@media (max-width: 639px) {

    /* ── Customer Stories ── */
    .testimonials-showcase-track {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    .testimonials-showcase-track::-webkit-scrollbar { display: none; }

    /* Show ALL slides (active + inactive) by lifting cards into the scroll lane */
    .testimonials-showcase-slide,
    .testimonials-showcase-slide.is-active {
        display: contents;
    }
    .testimonials-showcase-grid {
        display: contents;
    }

    /* Each card = one snap item */
    .testimonial-showcase-card {
        flex-shrink: 0;
        width: 82vw;
        scroll-snap-align: start;
        min-height: unset;
    }

    /* Hide page-based navigation — swipe covers all cards */
    .testimonials-showcase-controls {
        display: none;
    }

    /* ── Case Studies ── */
    .case-studies-showcase-track {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    .case-studies-showcase-track::-webkit-scrollbar { display: none; }

    .case-studies-showcase-slide,
    .case-studies-showcase-slide.is-active {
        display: contents;
    }
    .case-studies-showcase-track .case-studies-showcase-grid {
        display: contents;
    }

    .case-studies-showcase-track .case-study-showcase-card {
        flex-shrink: 0;
        width: 82vw;
        scroll-snap-align: start;
    }

    .case-studies-showcase-controls {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   20. Process Section
   -------------------------------------------------------------------------- */
.process-section {
    background-color: var(--color-brand);
    width: 100%;
}

.process-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1.125rem;
    background: rgba(0, 85, 255, 0.08);
    color: var(--color-brand);
    border: 1px solid rgba(0, 85, 255, 0.1);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
}

.section-badge-on-brand {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
}

.service-hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--color-brand);
}

.service-hero-title {
    color: var(--color-white);
}

.service-hero-copy {
    color: rgba(255, 255, 255, 0.84);
}

.service-hero .btn-primary {
    padding: 0.75rem 1.5rem;
    border-width: 1px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--color-white);
    color: #000000;
    border-color: var(--color-white);
    box-shadow: none;
}

.service-hero .btn-primary:hover {
    background-color: #f1f5f9;
    border-color: #f1f5f9;
    color: #000000;
}

.service-hero .btn-outline {
    padding: 0.75rem 1.5rem;
    border-width: 1px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-hero .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

/* Keep vertical rhythm consistent for all service heroes */
.service-hero > .mx-auto.max-w-7xl,
.service-hero > .relative.mx-auto.max-w-7xl {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 1024px) {
    .service-hero > .mx-auto.max-w-7xl,
    .service-hero > .relative.mx-auto.max-w-7xl {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.about-hero {
    background: var(--color-brand);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero .btn-primary {
    background-color: var(--color-white);
    color: var(--color-brand);
    border-color: var(--color-white);
}

.about-hero .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    color: var(--color-brand);
}

.about-hero .btn-outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.36);
}

.about-hero .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.about-hero-hex-card {
    --about-hex-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 116'%3E%3Cpath fill='white' d='M 44.8,15 Q 50,12 55.2,15 L 84.6,32 Q 89.8,35 89.8,41 L 89.8,75 Q 89.8,81 84.6,84 L 55.2,101 Q 50,104 44.8,101 L 15.3,84 Q 10.1,81 10.1,75 L 10.1,41 Q 10.1,35 15.3,32 Z'/%3E%3C/svg%3E");
    width: 100%;
    aspect-ratio: 100 / 116;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.12);
    -webkit-mask-image: var(--about-hex-mask);
    mask-image: var(--about-hex-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20% 14%;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
    transition: background 180ms ease, filter 180ms ease;
}

.about-hero-hex-card:hover {
    background: rgba(255, 255, 255, 0.18);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22));
}

.about-hero-hex-grid {
    --hex-gap: 0.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    column-gap: var(--hex-gap);
    row-gap: var(--hex-gap);
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
}

.about-hero-hex-grid > .about-hero-hex-card {
    width: 100%;
}

.about-hero-hex-grid > :nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.about-hero-hex-grid > :nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.about-hero-hex-grid > :nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    width: calc(50% - (var(--hex-gap) / 2));
    margin-top: calc(-5.7 * var(--hex-gap));
}

@media (max-width: 767px) {
    .about-hero-hex-grid {
        --hex-gap: 0.55rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto;
        width: 100%;
        max-width: 100%;
    }

    .about-hero-hex-grid > :nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .about-hero-hex-grid > :nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .about-hero-hex-grid > :nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
        justify-self: center;
        width: calc(50% - (var(--hex-gap) / 2));
        margin-top: calc(-5.7 * var(--hex-gap));
    }

    .about-hero-hex-card {
        padding: 20% 12%;
    }
}

.about-partners-section {
    background:
        radial-gradient(circle at top left, rgba(0, 85, 255, 0.08), transparent 32%),
        linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
}

.about-partners-subhead {
    margin-bottom: 1.1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-brand);
}

.about-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 3rem;
}

.about-partner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    padding: 2rem 2rem 1.9rem;
}

.about-partner-card:first-child {
    border-right: 1px solid rgba(148, 163, 184, 0.24);
}

.about-partner-brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 4.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.about-partner-brand::before {
    content: none;
}

.about-partner-logo {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: 11.75rem;
    max-height: 3.4rem;
    object-fit: contain;
    filter: brightness(0.72) contrast(1.18) saturate(0.92);
}

.about-partner-title {
    margin: 1.15rem 0 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

.about-partner-body {
    margin: 0.75rem 0 0;
    max-width: 34rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.68;
    color: var(--color-muted);
}

@media (max-width: 767px) {
    .about-partners-subhead {
        margin-bottom: 0.85rem;
        font-size: 0.72rem;
    }

    .about-partners-grid {
        grid-template-columns: 1fr;
        margin-top: 2.25rem;
    }

    .about-partner-card {
        padding: 1.25rem 0;
    }

    .about-partner-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .about-partner-brand {
        min-height: 4rem;
        padding-bottom: 0.85rem;
    }

    .about-partner-logo {
        max-width: 9.5rem;
        max-height: 2.8rem;
    }

    .about-partner-title {
        margin-top: 1rem;
        font-size: 1.15rem;
    }

    .about-partner-body {
        font-size: 0.94rem;
    }
}

/* --------------------------------------------------------------------------
   About – Mission Section (Vision / Mission / Objective)
   -------------------------------------------------------------------------- */

.about-mission-section {
    background: #f8fbff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.about-mission-em {
    font-style: normal;
    color: var(--color-brand);
}

/* Card */
.about-vmo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem 2.25rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-vmo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
    border-color: rgba(0, 85, 255, 0.16);
}

.about-vmo-card--featured {
    background: var(--color-brand);
    border-color: var(--color-brand);
    box-shadow: 0 16px 48px rgba(0, 85, 255, 0.28);
}

.about-vmo-card--featured:hover {
    border-color: #0047d9;
    box-shadow: 0 22px 56px rgba(0, 85, 255, 0.34);
}

/* Outer ring */
.about-vmo-icon-ring {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 999px;
    border: 2px solid rgba(0, 85, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
}

.about-vmo-icon-ring--featured {
    border-color: rgba(255, 255, 255, 0.28);
}

/* Inner filled circle */
.about-vmo-icon-inner {
    width: 6rem;
    height: 6rem;
    border-radius: 999px;
    background: rgba(0, 85, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
}

.about-vmo-icon-inner--featured {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.about-vmo-svg {
    width: 2.25rem;
    height: 2.25rem;
}

/* Text */
.about-vmo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin-bottom: 0.75rem;
}

.about-vmo-card--featured .about-vmo-title {
    color: #ffffff;
}

.about-vmo-body {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-muted);
    max-width: 22rem;
}

.about-vmo-card--featured .about-vmo-body {
    color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------------------------
   About – Core Values Flow Section
   -------------------------------------------------------------------------- */

.about-values-section {
    background: #f8fbff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

/* Flow container — 4 columns on desktop, single column on mobile */
.about-values-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

/* Dashed connector line behind the cards */
.about-values-connector {
    position: absolute;
    top: 3rem;
    left: calc(12.5% - 0.75rem);
    right: calc(12.5% - 0.75rem);
    height: 2px;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.about-values-connector svg {
    width: 100%;
    height: 2px;
}

/* Individual flow card */
.about-value-flow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 85, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem 1.75rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-value-flow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 85, 255, 0.12);
    border-color: rgba(0, 85, 255, 0.28);
}

/* Step number badge */
.about-value-flow-num {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-brand);
    background: #e8efff;
    border: 1px solid rgba(0, 85, 255, 0.18);
    border-radius: 999px;
    padding: 0.18rem 0.65rem;
    white-space: nowrap;
}

/* Icon circle */
.about-value-flow-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: rgba(0, 85, 255, 0.07);
    border: 1.5px solid rgba(0, 85, 255, 0.14);
    color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
    transition: background 200ms ease, border-color 200ms ease;
}

.about-value-flow-card:hover .about-value-flow-icon {
    background: rgba(0, 85, 255, 0.12);
    border-color: rgba(0, 85, 255, 0.3);
}

.about-value-flow-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.about-value-flow-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    margin-bottom: 0.55rem;
}

.about-value-flow-body {
    font-size: 0.83rem;
    line-height: 1.62;
    color: var(--color-muted);
    margin: 0;
}

/* Mobile: stack vertically, hide connector line */
@media (max-width: 767px) {
    .about-values-flow {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .about-values-connector {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   About – Why InfraShift Section
   -------------------------------------------------------------------------- */

.about-why-section {
    background: #ffffff;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3.25rem;
}

.about-why-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
    border-color: rgba(0, 85, 255, 0.18);
}

.about-why-cap {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.68rem 0.8rem;
    margin: 0.65rem 0.65rem 0;
    border-radius: 1rem;
}

.about-why-card--blue .about-why-cap {
    background: linear-gradient(135deg, #e8f1ff 0%, #dbe8ff 100%);
}

.about-why-card--mid .about-why-cap {
    background: linear-gradient(135deg, #eef4ff 0%, #e3edff 100%);
}

.about-why-card--slate .about-why-cap {
    background: linear-gradient(135deg, #f2f6ff 0%, #e7efff 100%);
}

.about-why-icon-wrap {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.68rem;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.025);
}

.about-why-icon-wrap svg {
    width: 0.82rem;
    height: 0.82rem;
}

.about-why-cap-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #0f2f63;
}

.about-why-body-wrap {
    flex: 1;
    padding: 1rem 1.35rem 1.35rem;
}

.about-why-body {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.68;
    color: #35425f;
}

@media (max-width: 1023px) {
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-why-cap-title {
        font-size: 0.88rem;
    }
}

.service-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.service-hero-content {
    max-width: 42rem;
}

.service-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: clamp(21rem, 40vw, 24rem);
}

.service-hero-visual::before,
.service-hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.service-hero-visual::before {
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
    top: 1rem;
    right: 2rem;
}

.service-hero-visual::after {
    width: 12rem;
    height: 12rem;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.14), transparent 70%);
    left: 1rem;
    bottom: 2rem;
}

.service-hero-panel {
    position: relative;
    width: min(100%, 30rem);
    padding: 0.5rem 0;
    overflow: visible;
}

.service-hero-panel--hex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-hex-card {
    width: min(100%, 26rem);
    aspect-ratio: 2 / 1.732;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4.1rem 3.1rem;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.10));
    clip-path: polygon(
        24% 2%,   27% 0%,
        73% 0%,   76% 2%,
        99% 48%,  99% 52%,
        76% 98%,  73% 100%,
        27% 100%, 24% 98%,
        1%  52%,   1% 48%
    );
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
}

/* Shared overlapping hex cluster across service detail heroes */
.service-hero .service-hero-panel {
    width: min(100%, 48rem);
}

.about-hero .service-hero-panel {
    width: min(100%, 48rem);
}

.service-hero-hex-cluster {
    --cs-hex-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 116'%3E%3Cpath fill='white' d='M 44.8,15 Q 50,12 55.2,15 L 84.6,32 Q 89.8,35 89.8,41 L 89.8,75 Q 89.8,81 84.6,84 L 55.2,101 Q 50,104 44.8,101 L 15.3,84 Q 10.1,81 10.1,75 L 10.1,41 Q 10.1,35 15.3,32 Z'/%3E%3C/svg%3E");
    --cs-hex-w: min(15.5rem, 48vw);
    position: relative;
    width: min(100%, 48rem);
    height: calc(var(--cs-hex-w) * 1.82);
}

.service-hero-hex {
    position: absolute;
    width: var(--cs-hex-w);
    aspect-ratio: 100 / 116;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.6rem 1.3rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 1.1));
    -webkit-mask-image: var(--cs-hex-mask);
    mask-image: var(--cs-hex-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    filter: drop-shadow(0 9px 22px rgba(0, 0, 0, 0.2));
}

.service-hero-hex:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.service-hero-hex:nth-child(2) {
    top: 23%;
    left: 50%;
    transform: translateX(-96%);
    z-index: 3;
}

.service-hero-hex:nth-child(3) {
    top: 23%;
    left: 50%;
    transform: translateX(-4%);
    z-index: 3;
}

.service-hero-hex:nth-child(4) {
    top: 46%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 767px) {
    .about-hero > .mx-auto.max-w-7xl,
    .page-hero > .relative.mx-auto.max-w-7xl {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .about-hero > .mx-auto.max-w-7xl > .grid,
    .page-hero > .relative.mx-auto.max-w-7xl > .grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.75rem;
        align-items: start;
    }

    .about-hero > .mx-auto.max-w-7xl > .grid > *,
    .page-hero > .relative.mx-auto.max-w-7xl > .grid > * {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .page-hero > .relative.mx-auto.max-w-7xl > .grid > div:last-child {
        padding-left: 0;
    }

    .about-hero h1,
    .page-hero h1 {
        margin-top: 0 !important;
        font-size: clamp(2rem, 8.6vw, 2.45rem);
        line-height: 1.15;
    }

    .service-hero > .mx-auto.max-w-7xl,
    .service-hero > .relative.mx-auto.max-w-7xl {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .service-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.75rem;
        align-items: start;
    }

    .service-hero-grid > * {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .service-hero-visual {
        width: 100%;
        min-height: auto;
        align-items: flex-start;
        justify-content: center;
    }

    .service-hero .service-hero-panel,
    .service-hero-hex-cluster,
    .about-hero-hex-cluster {
        margin-inline: auto;
    }

    .service-hero h1 {
        margin-top: 0.75rem;
        font-size: clamp(2rem, 8.6vw, 2.45rem);
        line-height: 1.15;
    }

    .service-hero .service-hero-panel {
        width: min(calc(100vw - 0.75rem), 30rem);
    }

    .about-hero .service-hero-panel {
        width: min(calc(100vw - 0.75rem), 30rem);
    }

    .service-hero-hex-cluster {
        --cs-hex-w: min(12.2rem, 50vw);
        width: min(calc(100vw - 0.75rem), 30rem);
        height: calc(var(--cs-hex-w) * 1.78);
    }

    .service-hero-hex {
        padding: 1.35rem 1.05rem;
        font-size: 0.8rem;
    }

    .service-hero-hex:nth-child(2),
    .service-hero-hex:nth-child(3) {
        top: 25%;
    }

    .service-hero-hex:nth-child(2) {
        left: 50%;
        transform: translateX(-94%);
    }

    .service-hero-hex:nth-child(3) {
        left: 50%;
        transform: translateX(-6%);
    }

    .service-hero-hex:nth-child(4) {
        top: 49%;
    }

}

.service-hero-hex-eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.service-hero-hex-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.service-hero-hex-copy {
    margin: 1rem 0 0;
    max-width: 17rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.service-hero-icon-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17rem;
    height: 17rem;
    margin: 1rem auto 1.75rem;
    border-radius: 999px;
    color: var(--color-white);
}

.service-hero-icon-shell::before,
.service-hero-icon-shell::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.service-hero-icon-shell::before {
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-hero-icon-shell::after {
    inset: 2.5rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 58%, transparent 72%);
}

.service-hero-icon-shell svg {
    position: relative;
    z-index: 1;
    width: 7rem;
    height: 7rem;
}

.service-hero-caption {
    position: relative;
    z-index: 1;
    max-width: 18rem;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
}

.service-trust-strip {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(90deg, #0f172a 0%, #12306f 52%, #0f172a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-trust-strip-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-trust-strip-label {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.service-trust-strip-logos {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
}

.service-trust-strip-logo-item {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-trust-strip-logo {
    max-height: 2.25rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.28));
}

.service-faq-list {
    display: grid;
    gap: 0;
}

.service-faq-item {
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
    background: transparent;
}

.service-faq-item:first-child {
    border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.service-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0.25rem;
    list-style: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--color-ink);
}

.service-faq-question::-webkit-details-marker {
    display: none;
}

.service-faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 0.9rem;
    height: 0.9rem;
    opacity: 0.9;
}

.service-faq-icon::before,
.service-faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.9rem;
    height: 2px;
    background: var(--color-brand);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq-item[open] .service-faq-question {
    color: var(--color-brand);
}

.service-faq-item[open] .service-faq-icon::after {
    opacity: 0;
}

.service-faq-answer {
    padding: 0 2rem 0.9rem 0.25rem;
}

.service-faq-answer p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-muted);
}

@media (max-width: 767px) {
    .service-faq-question {
        padding: 0.95rem 0;
        font-size: 0.95rem;
    }

    .service-faq-answer {
        padding: 0 1.5rem 0.85rem 0;
    }
}

@media (min-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }
}

@media (max-width: 767px) {
    .service-trust-strip-shell {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .service-trust-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .service-trust-strip-label {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .service-trust-strip-logos {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .service-trust-strip-logo-item {
        min-height: 3.4rem;
        padding: 0.5rem 0.75rem;
        border-radius: 1rem;
    }

    .service-trust-strip-logo {
        max-height: 1.65rem;
    }

    .service-hero-icon-shell {
        width: 12rem;
        height: 12rem;
        margin-top: 1.25rem;
    }

    .service-hero-icon-shell svg {
        width: 5rem;
        height: 5rem;
    }

    .service-hero-panel--hex {
        width: 100%;
    }

    .service-hero-hex-card {
        width: min(100%, 17rem);
        padding: 2.2rem 1.7rem;
    }

    .service-hero-hex-eyebrow {
        margin-bottom: 0.5rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .service-hero-hex-title {
        font-size: 1rem;
        line-height: 1.08;
    }

    .service-hero-hex-copy {
        margin-top: 0.7rem;
        max-width: 11.5rem;
        font-size: 0.74rem;
        line-height: 1.45;
    }
}

.process-heading {
    color: #ffffff;
    line-height: 1.15;
    max-width: 22ch;
    margin: 0 auto;
}

.process-intro {
    max-width: 42rem;
    margin: 1rem auto 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.76);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
}

.process-steps-four {
    grid-template-columns: repeat(4, 1fr);
}

.service-process-section {
    background:
        radial-gradient(circle at top left, rgba(0, 85, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.service-process-section .process-heading {
    color: var(--color-ink);
}

.service-process-section .process-header {
    margin-bottom: 2.75rem;
}

.service-process-section .section-badge-on-brand {
    background: rgba(0, 85, 255, 0.08);
    color: var(--color-brand);
    border-color: rgba(0, 85, 255, 0.12);
}

.service-process-section .process-intro {
    color: var(--color-muted);
}

.service-process-section .process-steps {
    position: relative;
    display: grid;
    gap: 1rem;
    max-width: 64rem;
    margin: 0 auto;
    padding: 2.2rem 0 2.4rem;
}

.service-process-section .process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2rem;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at center calc(100% - 0.65rem), #ef4444 0 0.6rem, transparent 0.66rem),
        linear-gradient(180deg, #22c55e 0%, #3b82f6 52%, #ef4444 100%) center 0.95rem / 2px calc(100% - 1.9rem) no-repeat;
    opacity: 0.95;
}

.service-process-section .process-steps::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.5rem;
    height: 1.7rem;
    transform: translateX(-50%);
    background:
        linear-gradient(180deg, #64748b, #64748b) 0.42rem 0.2rem / 2px 1.15rem no-repeat,
        linear-gradient(180deg, #22c55e, #22c55e) 0.54rem 0.2rem / 0.66rem 0.36rem no-repeat,
        linear-gradient(135deg, #22c55e 50%, transparent 0) 1.18rem 0.2rem / 0.32rem 0.36rem no-repeat;
}

.service-process-section .process-step {
    position: relative;
    width: calc(50% - 2.15rem);
    min-height: 0;
    padding: 0.95rem 1rem 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    text-align: left;
    align-items: flex-start;
}

.service-process-section .process-step:nth-child(odd) {
    margin-right: auto;
}

.service-process-section .process-step:nth-child(even) {
    margin-left: auto;
}

.service-process-section .process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 3px solid #eef2ff;
    border-radius: 999px;
    background: #4f67f3;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.96);
    transform: translateY(-50%);
}

.service-process-section .process-step:nth-child(odd)::before {
    right: -2.48rem;
}

.service-process-section .process-step:nth-child(even)::before {
    left: -2.48rem;
}

.service-process-section .process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1.55rem;
    height: 1px;
    background: rgba(79, 103, 243, 0.28);
    transform: translateY(-50%);
}

.service-process-section .process-step:nth-child(odd)::after {
    right: -1.55rem;
}

.service-process-section .process-step:nth-child(even)::after {
    left: -1.55rem;
}

.service-process-section .process-step-node {
    margin: 0 0 0.55rem;
}

.service-process-section .process-step-number {
    width: 1.7rem;
    height: 1.7rem;
    border: 0;
    border-radius: 999px;
    background: var(--color-brand);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.service-process-section .process-step-title {
    color: var(--color-ink);
    font-size: 0.98rem;
    line-height: 1.35;
    margin: 0 0 0.42rem;
}

.service-process-section .process-step-body {
    color: var(--color-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.service-process-section .process-step:hover {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.service-process-section .process-step:hover .process-step-number {
    background: var(--color-brand-hover);
}

@media (max-width: 959px) {
    .service-process-section .process-steps {
        max-width: 42rem;
        gap: 0.85rem;
    }

    .service-process-section .process-step {
        width: calc(50% - 1.7rem);
        padding: 0.9rem 0.95rem 0.85rem;
    }

    .service-process-section .process-step:nth-child(odd)::before {
        right: -2.06rem;
    }

    .service-process-section .process-step:nth-child(even)::before {
        left: -2.06rem;
    }

    .service-process-section .process-step:nth-child(odd)::after {
        right: -1.24rem;
        width: 1.24rem;
    }

    .service-process-section .process-step:nth-child(even)::after {
        left: -1.24rem;
        width: 1.24rem;
    }
}

@media (max-width: 767px) {
    .service-process-section .process-header {
        margin-bottom: 2rem;
    }

    .service-process-section .process-steps {
        max-width: none;
        gap: 0.8rem;
        padding: 1.9rem 0 2.15rem 2.2rem;
    }

    .service-process-section .process-steps::before {
        left: 0.7rem;
        width: 1.5rem;
        transform: none;
        background:
            radial-gradient(circle at center calc(100% - 0.58rem), #ef4444 0 0.56rem, transparent 0.62rem),
            linear-gradient(180deg, #22c55e 0%, #3b82f6 48%, #ef4444 100%) center 0.88rem / 2px calc(100% - 1.76rem) no-repeat;
    }

    .service-process-section .process-steps::after {
        left: 0.7rem;
        width: 1.35rem;
        height: 1.55rem;
        transform: none;
        background:
            linear-gradient(180deg, #64748b, #64748b) 0.39rem 0.18rem / 2px 1.05rem no-repeat,
            linear-gradient(180deg, #22c55e, #22c55e) 0.51rem 0.18rem / 0.62rem 0.34rem no-repeat,
            linear-gradient(135deg, #22c55e 50%, transparent 0) 1.12rem 0.18rem / 0.28rem 0.34rem no-repeat;
    }

    .service-process-section .process-step,
    .service-process-section .process-step:nth-child(odd),
    .service-process-section .process-step:nth-child(even) {
        width: 100%;
        margin: 0;
        padding: 0.95rem 0.95rem 0.9rem;
    }

    .service-process-section .process-step::before,
    .service-process-section .process-step:nth-child(odd)::before,
    .service-process-section .process-step:nth-child(even)::before {
        left: -1.92rem;
        right: auto;
        width: 9px;
        height: 9px;
    }

    .service-process-section .process-step::after,
    .service-process-section .process-step:nth-child(odd)::after,
    .service-process-section .process-step:nth-child(even)::after {
        left: -1.08rem;
        right: auto;
        width: 1.08rem;
    }

    .service-process-section .process-step-node {
        margin-bottom: 0.5rem;
    }

    .service-process-section .process-step-number {
        width: 1.55rem;
        height: 1.55rem;
        font-size: 0.7rem;
    }

    .service-process-section .process-step-title {
        font-size: 0.94rem;
    }

    .service-process-section .process-step-body {
        font-size: 0.84rem;
    }
}

.service-cta-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-cta-panel {
    max-width: 72rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 1.5rem;
    background: #f1f5f9;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
}

.service-cta-panel--about {
    background: var(--color-brand);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 85, 255, 0.24);
}

.service-cta-panel--about .service-cta-title,
.service-cta-panel--about .service-cta-copy {
    color: #ffffff;
}

.service-cta-panel--about .service-cta-copy {
    color: rgba(255, 255, 255, 0.86);
}

.service-cta-panel--about .btn-primary {
    background: #ffffff;
    color: var(--color-brand);
    border-color: #ffffff;
}

.service-cta-panel--about .btn-primary:hover {
    background: #eff6ff;
    color: var(--color-brand);
    border-color: #eff6ff;
}

.service-cta-title {
    color: var(--color-ink);
}

.service-cta-copy {
    color: var(--color-muted);
}

.service-cta-action {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 0.75rem;
}

/* Connecting line from this step's circle centre to the next */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px; /* Half of the 60 px circle */
    left: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    pointer-events: none;
    z-index: 0;
}

.process-step-node {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.25s, border-color 0.25s;
}

.process-step:hover .process-step-number {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 0.975rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 0.6rem;
}

.process-step-body {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 959px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3rem;
    }
    .process-step:nth-child(3)::after,
    .process-step:last-child::after {
        display: none;
    }
}

@media (max-width: 599px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
    }
    .process-step::after {
        display: none;
    }
    .process-step:last-child {
        grid-column: span 2;
    }
}
