:root {
    --primary-blue: #2474b9;
    --light-blue: #47acd8;
    --orange: #f15f29;
    --light-orange: #f68d20;
    --red: #ed1c25;
    --purple: #84489c;
    --yellow: #fff302;
    --off-white: #fafbfc;
    --text-dark: #2a2a2a;
    --text-mid: #555;
    --text-light: #888;
    --border-subtle: rgba(36, 116, 185, 0.1);
}

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

body {
    background: var(--off-white);
    color: var(--text-dark);
    font-family: "Crimson Pro", serif;
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
}

body.vcard-page--body {
    align-items: center;
    background: var(--off-white);
    display: flex;
    font-family: "Crimson Pro", serif;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 2rem 1rem;
    position: relative;
}

/* Animated background */
body.vcard-page--body::before {
    animation: bgPulse 20s ease-in-out infinite;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(36, 116, 185, 0.1) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(132, 72, 156, 0.08) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 15%,
            rgba(241, 95, 41, 0.07) 0%,
            transparent 40%
        );
    content: "";
    inset: 0;
    position: fixed;
    z-index: 0;
}

@keyframes bgPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Business card page Hex background pattern */
body.vcard-page--body::after {
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            var(--primary-blue) 60px,
            var(--primary-blue) 61px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 60px,
            var(--purple) 60px,
            var(--purple) 61px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 60px,
            var(--orange) 60px,
            var(--orange) 61px
        );
    content: "";
    inset: 0;
    opacity: 0.03;
    position: fixed;
    z-index: 0;
}

/* Products page Hex background pattern */
.bg-hex {
    animation: hexDrift 50s linear infinite;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 70px,
            var(--primary-blue) 70px,
            var(--primary-blue) 71px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 70px,
            var(--purple) 70px,
            var(--purple) 71px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 70px,
            var(--orange) 70px,
            var(--orange) 71px
        );
    inset: 0;
    opacity: 0.032;
    position: fixed;
    z-index: -2;
}

@keyframes hexDrift {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(70px, 70px);
    }
}

.bg-glow {
    animation: glowPulse 25s ease-in-out infinite;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(36, 116, 185, 0.07) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at 90% 60%,
            rgba(132, 72, 156, 0.05) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at 50% 90%,
            rgba(241, 95, 41, 0.05) 0%,
            transparent 40%
        );
    inset: 0;
    position: fixed;
    z-index: -1;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Default Hexagonal pattern background */
.hex-background {
    animation: hexDrift 40s linear infinite;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 86px,
            var(--primary-blue) 86px,
            var(--primary-blue) 87px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 86px,
            var(--purple) 86px,
            var(--purple) 87px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 86px,
            var(--orange) 86px,
            var(--orange) 87px
        );
    height: 100%;
    left: 0;
    opacity: 0.04;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}

@keyframes hexDrift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Animated gradient background */
.bg-layer {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}

.bg-gradient-1 {
    animation: driftSlow 30s ease-in-out infinite;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(36, 116, 185, 0.08) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(132, 72, 156, 0.06) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(241, 95, 41, 0.05) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(71, 172, 216, 0.07) 0%,
            transparent 40%
        );
}

@keyframes driftSlow {
    0%,
    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    33% {
        opacity: 0.9;
        transform: translate(20px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 20px) scale(0.95);
        opacity: 0.85;
    }
}

/* Penrose tiling decorative elements */
.penrose-container {
    height: 100%;
    left: 0;
    opacity: 0.06;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}

.penrose-tile {
    animation: rotateSlow 60s linear infinite;
    position: absolute;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ── Team Page Background ── */
.bg-hex {
    animation: hexDrift 50s linear infinite;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 70px,
            var(--primary-blue) 70px,
            var(--primary-blue) 71px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 70px,
            var(--purple) 70px,
            var(--purple) 71px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 70px,
            var(--orange) 70px,
            var(--orange) 71px
        );
    inset: 0;
    opacity: 0.028;
    position: fixed;
    z-index: -2;
}

@keyframes hexDrift {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(70px, 70px);
    }
}

.bg-glow {
    animation: glowPulse 25s ease-in-out infinite;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(36, 116, 185, 0.06) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(132, 72, 156, 0.05) 0%,
            transparent 45%
        );
    inset: 0;
    position: fixed;
    z-index: -1;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.75;
    }
}

/* ─────────────────────────────────────────
   TEMPLATE NAVBAR  (reusable)
───────────────────────────────────────── */
.navbar {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    border-bottom: 1px solid rgba(36, 116, 185, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.5rem 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px) saturate(200%);
    backdrop-filter: blur(5px) saturate(200%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    padding: 1rem 0;
}

.navbar::before {
    background: linear-gradient(
        90deg,
        rgba(36, 116, 185, 0.05) 0%,
        rgba(132, 72, 156, 0.05) 50%,
        rgba(241, 95, 41, 0.05) 100%
    );
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar-brand:hover {
    animation: logoShimmer 4s linear infinite;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--purple),
        var(--orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

@keyframes logoShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.logo-svg {
    height: auto;
    width: 13rem;
}

.logo-svg .wordmark,
.logo-svg .wordmark path {
    color: #2474b9;
    fill: currentColor;
}

.logo-svg .wordmark-shadow,
.logo-svg .wordmark-shadow path {
    color: #1f74b9;
    fill: currentColor;
    fill-opacity: 0.13;
}

.navbar-brand:hover .logo-svg .wordmark path {
    color: var(--orange);
}

.navbar-brand:hover .logo-svg .wordmark-shadow path {
    color: var(--orange);
    opacity: 0.6;
}

#logoGradient {
    animation: gradientMove 12s linear infinite;
}

@keyframes gradientMove {
    0% {
        stop-color: var(--primary-blue);
    }
    33.33% {
        stop-color: var(--purple);
    }
    66.66% {
        stop-color: var(--orange);
    }
    100% {
        stop-color: var(--primary-blue);
    }
}

#logoGradientStop1 {
    animation: gradientMove 12s linear infinite;
}

#logoGradientStop2 {
    animation: gradientMove 12s linear infinite;
    animation-delay: -4s;
}

#logoGradientStop3 {
    animation: gradientMove 12s linear infinite;
    animation-delay: -8s;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    background: linear-gradient(90deg, var(--orange), var(--light-orange));
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
}

.nav-link:hover {
    color: var(--orange) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* ─────────────────────────────────────────
   TEMPLATE HERO BANNER  (reusable zone)
   Usage: .page-hero > .container > .hero-inner
───────────────────────────────────────── */
.hero-section {
    align-items: center;
    display: flex;
    /* min-height: 100vh; */
    overflow: visible;
    padding: 16rem 0 5rem;
    position: relative;
}

/* Hexagonal cluster in hero */
.hero-hex-cluster {
    height: 90%;
    opacity: 0.08;
    pointer-events: none;
    position: absolute;
    right: -5%;
    top: 5%;
    width: 60%;
    z-index: 0;
}

/* Molecular hexagon structures - more visible */
.hero-molecule {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-molecule-1 {
    animation: moleculeFloat1 20s ease-in-out infinite;
    height: 250px;
    right: 10%;
    top: 15%;
    width: 250px;
}

.hero-molecule-2 {
    animation: moleculeFloat2 25s ease-in-out infinite;
    bottom: 20%;
    height: 180px;
    right: 25%;
    width: 180px;
}

.hero-molecule-3 {
    animation: moleculeFloat3 22s ease-in-out infinite;
    height: 150px;
    right: 5%;
    top: 40%;
    width: 150px;
}

@keyframes moleculeFloat1 {
    0%,
    100% {
        opacity: 0.2;
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        opacity: 0.3;
        transform: translate(-20px, 30px) rotate(15deg);
    }
}

@keyframes moleculeFloat2 {
    0%,
    100% {
        opacity: 0.18;
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        opacity: 0.28;
        transform: translate(25px, -25px) rotate(-12deg);
    }
}

@keyframes moleculeFloat3 {
    0%,
    100% {
        opacity: 0.22;
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        opacity: 0.32;
        transform: translate(-15px, -20px) rotate(20deg);
    }
}

.hero-section h1 {
    color: var(--primary-blue);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-section h1 strong {
    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple),
        var(--primary-blue)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-section p.lead {
    color: #555;
    font-size: 1.4rem;
    line-height: 1.8;
}

/* Section styling */
section {
    padding: 6rem 0;
    position: relative;
}

.section-research,
.section-about {
    padding-top: 9rem;
}

.section-tag {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.page-hero {
    overflow: hidden;
    padding: 9rem 0 5.5rem;
    position: relative;
}

/* Ambient glow blob — swap colour per page */
.page-hero .hero-glow {
    animation: heroGlow 20s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(70px);
    height: 650px;
    pointer-events: none;
    position: absolute;
    right: -15%;
    top: -20%;
    width: 650px;
}

@keyframes heroGlow {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(1.18);
    }
}

/* ── Breadcrumb / page intro ── */
.breadcrumb-bar {
    padding: 7.5rem 0 0;
    position: relative;
}

.page-breadcrumb {
    color: var(--text-light);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.page-breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

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

.page-breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.4;
}

.page-tag {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.88rem;
    letter-spacing: 3px;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.page-title {
    color: var(--primary-blue);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-title strong {
    font-weight: 600;
}

.page-lead {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

/* Hero title */
.page-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--primary-blue);
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.page-title strong {
    font-weight: 600;
}

/* Hero lead */
.page-lead {
    font-size: 1.2rem;
    color: var(--text-mid);
    max-width: 720px;
    line-height: 1.85;
    margin-bottom: 2rem;
}

/* Hero hex cluster — swap SVG per page */
.hero-hex-bg {
    height: 100%;
    opacity: 0.07;
    pointer-events: none;
    position: absolute;
    right: -8%;
    top: 0;
    width: 55%;
}

/* ─────────────────────────────────────────
   TEMPLATE SECTION CHROME  (reusable)
───────────────────────────────────────── */
.page-section {
    opacity: 0;
    padding: 5rem 0;
    position: relative;
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    transform: translateY(36px);
}
.page-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alternating ambient blob */
.page-section::before {
    border-radius: 50%;
    content: "";
    filter: blur(100px);
    height: 500px;
    opacity: 0.055;
    pointer-events: none;
    position: absolute;
    top: 5%;
    width: 500px;
}

.page-section.blob-right::before {
    background: radial-gradient(circle, var(--purple), transparent 70%);
    right: -120px;
}

.page-section.blob-left::before {
    background: radial-gradient(circle, var(--orange), transparent 70%);
    left: -120px;
}

.page-section.blob-blue::before {
    background: radial-gradient(circle, var(--primary-blue), transparent 70%);
    right: -120px;
}

/* Section label + title */
.section-tag {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.83rem;
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary-blue);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.section-title strong {
    font-weight: 600;
}

.section-body {
    color: var(--text-mid);
    font-size: 1.12rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────
   PULL-QUOTE  (reusable zone)
───────────────────────────────────────── */
.pull-quote {
    background: linear-gradient(
        135deg,
        rgba(36, 116, 185, 0.05),
        rgba(132, 72, 156, 0.04)
    );
    border-left: 4px solid var(--light-blue);
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
    padding: 1.4rem 2rem;
}

.pull-quote p {
    color: var(--primary-blue);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.pull-quote cite {
    color: var(--text-light);
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    letter-spacing: 1px;
    margin-top: 0.7rem;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   PILLAR CARDS  (methodology)
───────────────────────────────────────── */
.pillar-card {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    box-shadow: 0 4px 22px rgba(36, 116, 185, 0.07);
    height: 100%;
    overflow: visible;
    padding: 2.2rem 2rem;
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.pillar-card:hover {
    box-shadow: 0 12px 40px rgba(36, 116, 185, 0.15);
    transform: translateY(-8px);
}

/* Breakout hex accent */
.pillar-card .hex-accent {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 100px;
    opacity: 0.12;
    position: absolute;
    right: -22px;
    top: -22px;
    transition: opacity 0.4s;
    width: 90px;
}

.pillar-card:hover .hex-accent {
    opacity: 0.22;
}

/* Step number */
.pillar-step {
    color: var(--text-light);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

/* Wide flat-top hex icon */
.pillar-icon {
    align-items: center;
    clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
    display: flex;
    height: 54px;
    justify-content: center;
    margin-bottom: 1.4rem;
    width: 130px;
}

.pillar-icon svg {
    fill: white;
    height: 24px;
    width: 24px;
}

.pillar-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.pillar-body {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Connector arrows between pillar cards (desktop only) */
.pillar-arrow {
    align-items: center;
    color: var(--light-blue);
    display: flex;
    justify-content: center;
    opacity: 0.5;
    padding-top: 3.5rem;
}

.pillar-arrow svg {
    fill: currentColor;
    height: 32px;
    width: 32px;
}

/* ─────────────────────────────────────────
   PROCESS TIMELINE  (methodology steps)
───────────────────────────────────────── */
.timeline {
    padding-left: 2.5rem;
    position: relative;
}

.timeline::before {
    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--purple),
        var(--orange)
    );
    border-radius: 2px;
    bottom: 10px;
    content: "";
    left: 10px;
    position: absolute;
    top: 10px;
    width: 2px;
}

.timeline-item {
    padding: 0 0 2.5rem 2rem;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    background: white;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary-blue);
    height: 22px;
    left: -2.5rem;
    position: absolute;
    top: 4px;
    transition: background 0.3s;
    width: 22px;
}

.timeline-item:nth-child(2) .timeline-dot {
    box-shadow: 0 0 0 2px var(--purple);
}

.timeline-item:nth-child(3) .timeline-dot {
    box-shadow: 0 0 0 2px var(--light-blue);
}

.timeline-item:nth-child(4) .timeline-dot {
    box-shadow: 0 0 0 2px var(--orange);
}

.timeline-item:nth-child(5) .timeline-dot {
    box-shadow: 0 0 0 2px var(--light-orange);
}

.timeline-label {
    color: var(--text-light);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.timeline-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-body {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ─────────────────────────────────────────
   BUSINESS MODEL — REVENUE STREAMS
───────────────────────────────────────── */
.revenue-card {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    box-shadow: 0 4px 22px rgba(36, 116, 185, 0.07);
    height: 100%;
    overflow: visible;
    padding: 2rem 1.8rem;
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.revenue-card:hover {
    box-shadow: 0 12px 36px rgba(36, 116, 185, 0.14);
    transform: translateY(-6px);
}

.revenue-card .hex-accent {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 90px;
    opacity: 0.1;
    position: absolute;
    right: -18px;
    top: -18px;
    transition: opacity 0.4s;
    width: 80px;
}

.revenue-card:hover .hex-accent {
    opacity: 0.2;
}

.revenue-icon {
    align-items: center;
    border-radius: 12px;
    display: flex;
    height: 48px;
    justify-content: center;
    margin-bottom: 1.2rem;
    width: 48px;
}

.revenue-icon svg {
    fill: white;
    height: 22px;
    width: 22px;
}

.revenue-title {
    color: var(--primary-blue);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.revenue-body {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.revenue-tag {
    border-radius: 50px;
    display: inline-block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1px;
    padding: 0.25rem 0.7rem;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   GRAPHIC PANEL — Model diagram
───────────────────────────────────────── */
.model-diagram {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(36, 116, 185, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.model-diagram::before {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 270px;
    opacity: 0.06;
    pointer-events: none;
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
}

/* ─────────────────────────────────────────
   TEMPLATE CTA STRIP  (reusable zone)
───────────────────────────────────────── */
.cta-strip {
    background: linear-gradient(
        135deg,
        rgba(36, 116, 185, 0.06) 0%,
        rgba(132, 72, 156, 0.05) 50%,
        rgba(241, 95, 41, 0.04) 100%
    );
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0;
    text-align: center;
}

.cta-strip .cta-tag {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.cta-strip h2 {
    color: var(--primary-blue);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-strip h2 strong {
    font-weight: 600;
}

.cta-strip p {
    color: var(--text-mid);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* Buttons — reusable */
.btn-cta-primary {
    align-items: center;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    background-size: 200% 100%;
    background-position: 0 0;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(241, 95, 41, 0.35);
    color: white;
    display: inline-flex;
    font-size: 1.1rem;
    font-family: "Crimson Pro", serif;
    font-weight: 500;
    gap: 0.5rem;
    padding: 0.95rem 2.5rem;
    text-decoration: none;
    transition:
        transform 0.5s ease-in-out,
        box-shadow 0.5s ease-in-out,
        background-position 0.5s ease-in-out;
}

.btn-cta-primary:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 28px rgba(241, 95, 41, 0.45);
    color: white;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    align-items: center;
    background: transparent;
    border: 2px solid var(--purple);
    border-radius: 50px;
    color: var(--purple);
    display: inline-flex;
    font-family: "Crimson Pro", serif;
    font-size: 1.1rem;
    font-weight: 500;
    gap: 0.5rem;
    padding: 0.95rem 2.5rem;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.btn-cta-secondary:hover {
    background: var(--purple);
    color: white;
}

/* Research Cards with hexagonal accents */
.research-card {
    background: white;
    border: 1px solid rgba(36, 116, 185, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    overflow: visible;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.research-card::before {
    background: linear-gradient(
        135deg,
        rgba(36, 116, 185, 0.05),
        rgba(132, 72, 156, 0.05)
    );
    border-radius: 20px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.4s ease;
    width: 100%;
}

.research-card:nth-child(1) {
    border-top: 3px solid var(--light-blue);
}

.research-card:nth-child(2) {
    border-top: 3px solid var(--orange);
}

.research-card:nth-child(3) {
    border-top: 3px solid var(--purple);
}

.research-card:hover {
    box-shadow: 0 15px 50px rgba(36, 116, 185, 0.2);
    transform: translateY(-12px);
}

.research-card:hover::before {
    opacity: 1;
}

.card-icon {
    height: 70px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    transition: transform 0.4s ease;
    width: 70px;
    z-index: 1;
}

.research-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Hexagonal accent breaking out of card */
.card-hex-accent {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 140px;
    opacity: 0.15;
    position: absolute;
    right: -30px;
    top: -30px;
    transition: all 0.4s ease;
    width: 120px;
}

.research-card:nth-child(1) .card-hex-accent {
    background: linear-gradient(135deg, var(--yellow), var(--light-orange));
}

.research-card:nth-child(2) .card-hex-accent {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.research-card:nth-child(3) .card-hex-accent {
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
}

.research-card:hover .card-hex-accent {
    opacity: 0.25;
    transform: scale(1.3) rotate(15deg);
}

.research-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.research-card p {
    color: #555;
    font-size: 1.1rem;
    position: relative;
}

/* Statistics Section with hexagonal borders */
.statistics-bar {
    margin: 6rem 0;
    overflow: visible;
    padding: 6rem 0;
    position: relative;
}

.statistics-bar__bg,
.statistics-bar__bg--blue,
.statistics-bar__bg--orange {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 10%,
        var(--purple) 40%,
        var(--orange) 80%,
        var(--light-orange) 100%
    );
    clip-path: polygon(
        /* Top hexagonal peak - bar bleeds UP into body */ -150% 80px,
        37.5% 80px,
        50% 0%,
        62.5% 80px,
        250% 80px,
        /* Right edge down to bottom */ 250% 100%,
        /* Bottom straight edge */ -150% 100%
    );
    bottom: 0;
    left: -150%;
    position: absolute;
    right: -150%;
    top: -80px;
    z-index: -2;
}

.statistics-bar__bg--blue {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 25%,
        var(--purple) 44%,
        var(--orange) 70%
    );
}

.statistics-bar__bg--orange {
    background: linear-gradient(
        135deg,
        var(--orange) 35%,
        var(--purple) 48%,
        var(--primary-blue) 75%
    );
}

/* Bottom hexagon cutout - body color eating into bar */
.statistics-bar__bottom-cutout {
    background: #fafbfc;
    bottom: 0;
    clip-path: polygon(
        /* Hexagon pointing UPWARD into the bar */ -150% 80px,
        37.5% 80px,
        50% 0%,
        62.5% 80px,
        250% 80px,
        250% 80px,
        -150% 80px
    );
    height: 80px;
    left: -150%;
    position: absolute;
    right: -150%;
    z-index: -1;
}

/* Hexagonal pattern overlay on statistics bar */
.statistics-bar__hex-overlay {
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.3) 60px,
            rgba(255, 255, 255, 0.3) 61px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.3) 60px,
            rgba(255, 255, 255, 0.3) 61px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.3) 60px,
            rgba(255, 255, 255, 0.3) 61px
        );
    bottom: 0;
    left: 0;
    opacity: 0.08;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

/* Dynamic hexagonal and Penrose cutouts */
.statistics-bar__cutout {
    animation: cutoutFloat 25s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    position: absolute;
}

.statistics-bar__cutout-1 {
    animation: cutoutFloat1 28s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 460px;
    right: 8%;
    top: -8%;
    transform: rotate(23deg);
    width: 400px;
}

.statistics-bar__cutout-2 {
    animation: cutoutFloat2 32s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: -5%;
    height: 400px;
    left: 12%;
    transform: rotate(-17deg);
    width: 350px;
}

.statistics-bar__cutout-3 {
    animation: cutoutFloat3 30s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 350px;
    left: -3%;
    top: 15%;
    transform: rotate(41deg);
    width: 300px;
}

/* Penrose kite shape */
.statistics-bar__cutout-4 {
    animation: cutoutFloat4 26s ease-in-out infinite;
    clip-path: polygon(50% 0%, 85% 60%, 50% 85%, 15% 60%);
    height: 320px;
    left: 35%;
    top: -10%;
    transform: rotate(-28deg);
    width: 280px;
}

/* Penrose dart shape */
.statistics-bar__cutout-5 {
    animation: cutoutFloat5 34s ease-in-out infinite;
    bottom: -8%;
    clip-path: polygon(50% 0%, 100% 70%, 50% 100%, 0% 70%);
    height: 280px;
    right: 25%;
    transform: rotate(35deg);
    width: 250px;
}

@keyframes cutoutFloat1 {
    0%,
    100% {
        transform: rotate(23deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(28deg) translateY(-20px) translateX(15px);
    }
}

@keyframes cutoutFloat2 {
    0%,
    100% {
        transform: rotate(-17deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(-22deg) translateY(25px) translateX(-10px);
    }
}

@keyframes cutoutFloat3 {
    0%,
    100% {
        transform: rotate(41deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(36deg) translateY(-15px) translateX(-20px);
    }
}

@keyframes cutoutFloat4 {
    0%,
    100% {
        transform: rotate(-28deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(-33deg) translateY(18px) translateX(12px);
    }
}

@keyframes cutoutFloat5 {
    0%,
    100% {
        transform: rotate(35deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(40deg) translateY(-22px) translateX(-15px);
    }
}

.statistics-bar h3 {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.statistics-bar p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

/* Team Section with hexagonal photo frames */
.team-member {
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-photo-border {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 202px;
    left: 50%;
    position: absolute;
    top: -1px;
    transform: translateX(-50%);
    width: 202px;
}

.member-photo {
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: white;
    display: flex;
    font-size: 3rem;
    font-weight: 300;
    height: 200px;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    width: 200px;
}

.member-photo img,
.product-logo-hex img,
.product-image {
    height: 100%;
    height: auto;
    width: 100%;
}

.team-member:nth-child(1) .member-photo {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.team-member:nth-child(2) .member-photo {
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.team-member:nth-child(3) .member-photo {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
}

/* Hexagonal border decoration */
.member-photo::after {
    animation: hexRotate 40s linear infinite;
    border: 2px solid currentColor;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 230px;
    left: 50%;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    width: 230px;
}

@keyframes hexRotate {
    from {
        transform: translate(-50%, -50%) rotate(30deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(390deg);
    }
}

.team-member h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team__team-member-name-link {
    text-decoration: none;
}

.team-role {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ─────────────────────────────────────────
   PARTNERS SECTION (reusable)
───────────────────────────────────────── */
#partners .section-title {
    margin-bottom: 0.5rem;
}

/* Category tabs */
.partner-tab {
    background: transparent;
    border-radius: 50px;
    border: 1.5px solid rgba(36, 116, 185, 0.2);
    color: var(--primary-blue);
    cursor: pointer;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 0.45rem 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.partner-tab:hover,
.partner-tab.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* Partner grid */
.partner-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Partner card */
.partner-card {
    background: white;
    border: 1px solid rgba(36, 116, 185, 0.09);
    border-radius: 20px;
    box-shadow: 0 3px 18px rgba(36, 116, 185, 0.07);
    overflow: visible;
    padding: 1.8rem 1.8rem 1.6rem;
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        opacity 0.35s ease;
}

.partner-card:hover {
    box-shadow: 0 12px 36px rgba(36, 116, 185, 0.14);
    transform: translateY(-7px);
}

.partner-card.hidden {
    display: none;
}

/* Category tag */
.partner-cat-tag {
    border-radius: 50px;
    display: inline-block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
}

/* Logo area */
.partner-logo-area {
    align-items: center;
    border-bottom: 1px solid rgba(36, 116, 185, 0.07);
    display: flex;
    height: 60px;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
}

.partner-logo-area svg {
    max-height: 56px;
    width: 100%;
}

.partner-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.partner-region {
    color: #bbb;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   TEMPLATE FOOTER  (reusable)
───────────────────────────────────────── */
footer {
    margin-top: 10rem;
    overflow: visible;
    padding: 6rem 0 2rem;
    position: relative;
}

.footer-bg {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--purple) 50%,
        var(--orange) 100%
    );
    clip-path: polygon(
        0% 150px,
        25% 80px,
        50% 0%,
        75% 80px,
        100% 150px,
        100% 100%,
        0% 100%
    );
    bottom: 0;
    left: -5%;
    position: absolute;
    right: -5%;
    top: -150px;
    z-index: -1;
}

/* Hexagonal pattern overlay on footer */
.footer-hex-pattern {
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 70px,
            rgba(255, 255, 255, 0.3) 70px,
            rgba(255, 255, 255, 0.3) 71px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 70px,
            rgba(255, 255, 255, 0.3) 70px,
            rgba(255, 255, 255, 0.3) 71px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 70px,
            rgba(255, 255, 255, 0.3) 70px,
            rgba(255, 255, 255, 0.3) 71px
        );
    bottom: 0;
    left: 0;
    opacity: 0.06;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

/* Penrose tile decorations - more hexagons floating through footer */
.footer-penrose {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.08;
    pointer-events: none;
    position: absolute;
}

.footer-penrose-1 {
    animation: hexFloat1 28s ease-in-out infinite;
    background: linear-gradient(135deg, var(--yellow), var(--light-orange));
    height: 200px;
    right: 12%;
    top: 20%;
    width: 180px;
}

.footer-penrose-2 {
    animation: hexFloat2 32s ease-in-out infinite;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    bottom: 25%;
    height: 160px;
    left: 10%;
    width: 140px;
}

.footer-penrose-3 {
    animation: hexFloat3 35s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    height: 180px;
    left: 25%;
    top: 50%;
    width: 160px;
}

.footer-penrose-4 {
    animation: hexFloat4 30s ease-in-out infinite;
    background: linear-gradient(135deg, var(--red), transparent);
    height: 140px;
    right: 35%;
    top: 35%;
    width: 120px;
}

.footer-penrose-5 {
    animation: hexFloat5 38s ease-in-out infinite;
    background: linear-gradient(135deg, var(--purple), transparent);
    bottom: 15%;
    height: 220px;
    right: 20%;
    width: 200px;
}

@keyframes hexFloat1 {
    0%,
    100% {
        opacity: 0.08;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.12;
        transform: translateY(-40px) translateX(-20px) rotate(15deg);
    }
}

@keyframes hexFloat2 {
    0%,
    100% {
        opacity: 0.08;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.1;
        transform: translateY(30px) translateX(25px) rotate(-12deg);
    }
}

@keyframes hexFloat3 {
    0%,
    100% {
        opacity: 0.08;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.15;
        transform: translateY(-25px) translateX(30px) rotate(20deg);
    }
}

@keyframes hexFloat4 {
    0%,
    100% {
        opacity: 0.08;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.11;
        transform: translateY(35px) translateX(-15px) rotate(-18deg);
    }
}

@keyframes hexFloat5 {
    0%,
    100% {
        opacity: 0.08;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.13;
        transform: translateY(-30px) translateX(20px) rotate(10deg);
    }
}

@keyframes penroseFloat1 {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(20deg);
    }
}

@keyframes penroseFloat2 {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(-15deg);
    }
}

footer h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    transform: translateY(30px);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button styling */
.btn-custom-primary {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(241, 95, 41, 0.4);
    color: white;
    font-size: 1.1rem;
    font-family: "Crimson Pro", serif;
    font-weight: 500;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
    box-shadow: 0 6px 30px rgba(241, 95, 41, 0.5);
    color: white;
    transform: translateY(-2px);
}

.btn-custom-secondary {
    background: rgba(132, 72, 156, 0.1);
    border: 2px solid var(--purple);
    border-radius: 50px;
    color: var(--purple);
    font-size: 1.1rem;
    font-family: "Crimson Pro", serif;
    font-weight: 500;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
    background: var(--purple);
    box-shadow: 0 4px 20px rgba(132, 72, 156, 0.3);
    color: white;
}

.button-group {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.btn-pdf {
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--purple) 0%,
        var(--primary-blue) 100%
    );
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(132, 72, 156, 0.3);
    display: inline-flex;
    color: white;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: "Crimson Pro", serif;
    font-weight: 500;
    gap: 0.6rem;
    overflow: hidden;
    padding: 0.9rem 2rem;
    position: relative;
    text-decoration: none;
    transition:
        transform 0.5s ease-in-out,
        box-shadow 0.5s ease-in-out,
        background-position 0.5s ease-in-out;
}

.btn-pdf::before {
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 30px;
    opacity: 0.6;
    position: absolute;
    right: -2px;
    top: -2px;
    transition: opacity 0.5s ease-in-out;
    width: 30px;
}

.btn-pdf:hover {
    box-shadow: 0 5px 25px rgba(132, 72, 156, 0.4);
    background-position: 100% 0%;
    color: white;
    transform: translateY(-2px);
}

.btn-pdf:hover::before {
    opacity: 0.8;
}

.btn-pdf-icon {
    fill: currentColor;
    height: 22px;
    transition: transform 0.5s ease-in-out;
    width: 22px;
}

.btn-pdf:hover .btn-pdf-icon {
    transform: scale(1.1);
}

/* Alternative orange variant */
.btn-pdf-alt {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--light-orange) 100%
    );
    box-shadow: 0 3px 15px rgba(241, 95, 41, 0.3);
}

.btn-pdf-alt:hover {
    background: linear-gradient(
        135deg,
        var(--light-orange) 0%,
        var(--orange) 100%
    );
    box-shadow: 0 5px 25px rgba(241, 95, 41, 0.4);
}

/* Hexagonal variant */
.btn-pdf-hex {
    border-radius: 0;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    padding: 0.9rem 2.5rem;
}

.btn-pdf-hex::before {
    display: none;
}

.label {
    color: #555;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-hex-cluster {
        display: none;
    }

    .button-group {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .btn-pdf {
        align-items: center;
        background: linear-gradient(
            135deg,
            var(--purple) 0%,
            var(--primary-blue) 100%
        );
        background-size: 200% 100%;
        background-position: 0% 0%;
        border: none;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(132, 72, 156, 0.3);
        color: white;
        cursor: pointer;
        display: inline-flex;
        font-size: 1.05rem;
        font-family: "Crimson Pro", serif;
        font-weight: 500;
        gap: 0.6rem;
        overflow: hidden;
        padding: 0.9rem 2rem;
        position: relative;
        text-decoration: none;
        transition:
            transform 0.5s ease-in-out,
            box-shadow 0.5s ease-in-out,
            background-position 0.5s ease-in-out;
    }

    .btn-pdf::before {
        background: rgba(255, 255, 255, 0.15);
        clip-path: polygon(
            50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%
        );
        content: "";
        height: 30px;
        opacity: 0.6;
        position: absolute;
        right: -2px;
        top: -2px;
        transition: opacity 0.5s ease-in-out;
        width: 30px;
    }

    .btn-pdf:hover {
        background-position: 100% 0%;
        box-shadow: 0 5px 25px rgba(132, 72, 156, 0.4);
        color: white;
        transform: translateY(-2px);
    }

    .btn-pdf:hover::before {
        opacity: 0.8;
    }

    .btn-pdf-icon {
        fill: currentColor;
        height: 22px;
        transition: transform 0.5s ease-in-out;
        width: 22px;
    }

    .btn-pdf:hover .btn-pdf-icon {
        transform: scale(1.1);
    }

    /* Alternative orange variant */
    .btn-pdf-alt {
        background: linear-gradient(
            135deg,
            var(--orange) 0%,
            var(--light-orange) 100%
        );
        box-shadow: 0 3px 15px rgba(241, 95, 41, 0.3);
    }

    .btn-pdf-alt:hover {
        background: linear-gradient(
            135deg,
            var(--light-orange) 0%,
            var(--orange) 100%
        );
        box-shadow: 0 5px 25px rgba(241, 95, 41, 0.4);
    }

    /* Hexagonal variant */
    .btn-pdf-hex {
        border-radius: 0;
        clip-path: polygon(
            10% 0%,
            90% 0%,
            100% 50%,
            90% 100%,
            10% 100%,
            0% 50%
        );
        padding: 0.9rem 2.5rem;
    }

    .btn-pdf-hex::before {
        display: none;
    }

    .label {
        color: #555;
        font-size: 0.9rem;
        font-style: italic;
        margin-top: 0.5rem;
    }
}

/*-------------------------------------------------------------------*\
|  START of Business card block
\*-------------------------------------------------------------------*/

.page-wrap {
    margin-top: 9rem;
    max-width: 480px;
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Card */
.biz-card {
    background: white;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(36, 116, 185, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: visible;
    position: relative;
}

/* Hexagonal gradient header */
.biz-card-header {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--purple) 55%,
        var(--orange) 100%
    );
    border-radius: 24px 24px 0 0;
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% calc(100% - 40px),
        75% calc(100% - 20px),
        50% 100%,
        25% calc(100% - 20px),
        0% calc(100% - 40px)
    );
    overflow: hidden;
    padding: 2.5rem 2rem 4.5rem;
    position: relative;
}

/* Hex pattern in header */
.biz-card-header::before {
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.5) 40px,
            rgba(255, 255, 255, 0.5) 41px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.5) 40px,
            rgba(255, 255, 255, 0.5) 41px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.5) 40px,
            rgba(255, 255, 255, 0.5) 41px
        );
    content: "";
    inset: 0;
    opacity: 0.07;
    position: absolute;
}

/* Floating hex accent in header */
.biz-card-header::after {
    animation: hexFloat 15s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 220px;
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
}

@keyframes hexFloat {
    0%,
    100% {
        transform: rotate(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(20deg) translate(-10px, 15px);
    }
}

.header-role {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.header-name {
    color: white;
    font-family: "Crimson Pro", serif;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.header-name strong {
    font-weight: 600;
}

.header-company {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Photo - breakout circle */
.photo-wrap {
    height: 90px;
    margin-bottom: -45px;
    margin-bottom: -5rem;
    position: relative;
    right: 2.7rem;
    top: -3.6rem;
    width: 90px;
    z-index: 10;
}

.photo-hex {
    align-items: center;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    box-shadow: 0 8px 25px rgba(36, 116, 185, 0.4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: white;
    display: flex;
    font-size: 2rem;
    font-weight: 300;
    height: 90px;
    justify-content: center;
    width: 90px;
}

.profile-photo-hex img,
.photo-hex img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Card body */
.biz-card-body {
    padding: 1.5rem 2rem 0;
    position: relative;
}

/* Tagline */
.tagline {
    border-left: 3px solid var(--light-blue);
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

/* Tags */
.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    border-radius: 50px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
}

.tag-blue {
    color: var(--primary-blue);
    background: rgba(36, 116, 185, 0.1);
}
.tag-purple {
    color: var(--purple);
    background: rgba(132, 72, 156, 0.1);
}
.tag-orange {
    color: var(--orange);
    background: rgba(241, 95, 41, 0.1);
}

/* Contact list */
.contact-list {
    border-top: 1px solid rgba(36, 116, 185, 0.1);
    list-style: none;
}

.contact-list li {
    align-items: center;
    border-bottom: 1px solid rgba(36, 116, 185, 0.07);
    color: #333;
    display: flex;
    font-size: 1.05rem;
    gap: 1rem;
    padding: 0.85rem 0;
}

.contact-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--primary-blue);
}

.contact-icon {
    align-items: center;
    border-radius: 8px;
    display: flex;
    flex-shrink: 0;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.contact-icon svg {
    fill: white;
    height: 18px;
    width: 18px;
}

.icon-blue {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}
.icon-green {
    background: linear-gradient(135deg, #43b089, #2a8a6b);
}
.icon-orange {
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
}
.icon-purple {
    background: linear-gradient(135deg, var(--purple), #5a2d7a);
}
.icon-red {
    background: linear-gradient(135deg, var(--red), #c0141c);
}

.contact-label {
    color: #aaa;
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
}

/* Buttons */
.biz-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 2rem 2rem;
}

.btn-vcard {
    align-items: center;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(241, 95, 41, 0.35);
    color: white;
    cursor: pointer;
    display: flex;
    font-family: "Crimson Pro", serif;
    font-size: 1.1rem;
    font-weight: 500;
    gap: 0.6rem;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
    transition:
        transform 0.5s ease-in-out,
        box-shadow 0.5s ease-in-out,
        background-position 0.5s ease-in-out;
    width: 100%;
}

.btn-vcard:hover {
    background-position: 100% 0%;
    box-shadow: 0 6px 30px rgba(241, 95, 41, 0.45);
    color: white;
    transform: translateY(-2px);
}

.btn-vcard svg {
    fill: currentColor;
    height: 20px;
    width: 20px;
}

.btn-row {
    display: flex;
    gap: 0.75rem;
}

.btn-secondary-sm {
    align-items: center;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    flex: 1;
    font-family: "Crimson Pro", serif;
    font-size: 1rem;
    font-weight: 500;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.8rem;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.btn-secondary-sm:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-secondary-sm svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
}

.btn-calendar {
    border-color: var(--purple);
    color: var(--purple);
}

.btn-calendar:hover {
    background: var(--purple);
    color: white;
}

/* Divider */
.divider {
    align-items: center;
    color: #ccc;
    display: flex;
    font-size: 0.85rem;
    gap: 1rem;
    margin: 0.5rem 0;
    padding: 0 2rem;
}

.divider::before,
.divider::after {
    background: rgba(36, 116, 185, 0.1);
    content: "";
    flex: 1;
    height: 1px;
}

/* Bottom company bar */
.company-bar {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    border-radius: 0 0 24px 24px;
    clip-path: polygon(0% 2rem, 50% 0rem, 100% 2rem, 100% 100%, 0% 100%);
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    padding-top: 3.2rem;
}

.company-bar-name {
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.company-bar-url {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
}

/* Floating hex accent */
.hex-accent {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.06;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.hex-accent-1 {
    animation: hexDrift1 25s ease-in-out infinite;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    height: 250px;
    right: -60px;
    top: 5%;
    width: 220px;
}

.hex-accent-2 {
    animation: hexDrift2 30s ease-in-out infinite;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    bottom: 10%;
    height: 200px;
    left: -50px;
    width: 180px;
}

@keyframes hexDrift1 {
    0%,
    100% {
        transform: rotate(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(22deg) translate(-15px, 25px);
    }
}

@keyframes hexDrift2 {
    0%,
    100% {
        transform: rotate(-10deg) translate(0, 0);
    }
    50% {
        transform: rotate(-17deg) translate(20px, -20px);
    }
}
/*-------------------------------------------------------------------*\
|  END of Business card block
\*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------*\
|  START of Products block
\*-------------------------------------------------------------------*/

/* Ecosystem bar */
.ecosystem-bar {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--purple) 45%,
        var(--orange) 100%
    );
    clip-path: polygon(
        -150% 60px,
        37.5% 60px,
        50% 0%,
        62.5% 60px,
        250% 60px,
        250% 100%,
        -150% 100%
    );
    overflow: visible;
    padding: 5rem 0;
    position: relative;
}
.ecosystem-bar::before {
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.4) 50px,
            rgba(255, 255, 255, 0.4) 51px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.4) 50px,
            rgba(255, 255, 255, 0.4) 51px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.4) 50px,
            rgba(255, 255, 255, 0.4) 51px
        );
    content: "";
    inset: 0;
    opacity: 0.07;
    position: absolute;
}
.ecosystem-stat {
    color: white;
    position: relative;
    text-align: center;
    z-index: 1;
}
.ecosystem-stat .num {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.ecosystem-stat .lbl {
    font-size: 1rem;
    opacity: 0.88;
}
.eco-divider {
    align-self: stretch;
    background: rgba(255, 255, 255, 0.25);
    height: 4rem;
    width: 1px;
}

/* ── Wide flat-top hexagon logo container ── */
.product-logo-hex {
    align-items: center;
    /* flat-top hex: left/right points at 0% and 100% x, top/bottom indented */
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    display: flex;
    height: 90px;
    justify-content: center;
    margin-bottom: 1.8rem;
    margin: 0 auto 1.8rem;
    max-width: 80%;
    padding: 0 2rem;
    padding: 0 4rem;
    position: relative;
    /*width: 220px;*/
}

.product-logo-hex::before {
    background: white;
    clip-path: polygon(15% 2%, 85% 2%, 99% 50%, 85% 98%, 15% 98%, 1% 50%);
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
}

.product-logo-hex--wordmark {
    align-items: center;
    /* flat-top hex: left/right points at 0% and 100% x, top/bottom indented */
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    display: flex;
    height: 90px;
    justify-content: center;
    margin-bottom: 1.8rem;
    margin: 0 auto 1.8rem;
    max-width: 80%;
    padding: 0 2rem;
    position: relative;
    /*width: 220px;*/
}

.product-logo-hex--wordmark .logo-text {
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.4rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    position: relative;
    text-align: center;
    z-index: 1;
}

.product-logo-hex--wordmark .logo-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.85;
}

/* Product sections */
.product-section {
    border-bottom: 1px solid rgba(36, 116, 185, 0.08);
    opacity: 0;
    padding: 5rem 0;
    position: relative;
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    transform: translateY(40px);
}

.product-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-section::before {
    border-radius: 50%;
    content: "";
    filter: blur(90px);
    height: 500px;
    opacity: 0.06;
    pointer-events: none;
    position: absolute;
    top: 5%;
    width: 500px;
}

.product-section:nth-child(odd)::before {
    background: radial-gradient(circle, var(--purple), transparent 70%);
    right: -100px;
}
.product-section:nth-child(even)::before {
    background: radial-gradient(circle, var(--orange), transparent 70%);
    left: -100px;
}

.priority-badge {
    border-radius: 50px;
    display: inline-block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.35rem 0.9rem;
    text-transform: uppercase;
}

.priority-1 {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    color: white;
}

.priority-2 {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: white;
}

.priority-3 {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    color: white;
}

.priority-4 {
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: white;
}

.priority-5 {
    background: rgba(36, 116, 185, 0.12);
    color: var(--primary-blue);
}

.product-name {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.product-type {
    color: var(--purple);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.product-desc {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

/* Attributes list */
.attr-block {
    margin-bottom: 1.5rem;
}

.attr-block h6 {
    color: var(--primary-blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.attr-list {
    list-style: none;
    padding: 0;
}

.attr-list li {
    align-items: flex-start;
    color: #555;
    display: flex;
    font-size: 1.05rem;
    gap: 0.6rem;
    line-height: 1.5;
    padding: 0.3rem 0;
}

.attr-list li::before {
    border-radius: 50%;
    content: "";
    display: block;
    flex-shrink: 0;
    height: 7px;
    margin-top: 0.45rem;
    width: 7px;
}

.attr-list.blue li::before {
    background: var(--primary-blue);
}

.attr-list.orange li::before {
    background: var(--orange);
}

.attr-list.purple li::before {
    background: var(--purple);
}

.attr-list.red li::before {
    background: var(--red);
}

/* Results callout */
.results-callout {
    background: linear-gradient(
        135deg,
        rgba(36, 116, 185, 0.06),
        rgba(132, 72, 156, 0.06)
    );
    border-left: 4px solid var(--light-blue);
    border-radius: 0 12px 12px 0;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.results-callout h6 {
    color: var(--light-blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.results-callout p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ftag {
    border-radius: 50px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
}

.ftag-blue {
    background: rgba(36, 116, 185, 0.1);
    color: var(--primary-blue);
}

.ftag-purple {
    background: rgba(132, 72, 156, 0.1);
    color: var(--purple);
}

.ftag-orange {
    background: rgba(241, 95, 41, 0.1);
    color: var(--orange);
}

.ftag-red {
    background: rgba(237, 28, 37, 0.1);
    color: var(--red);
}

/* Right column: stacked mockup + pipeline */
.product-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Shelf mockup card */
.shelf-card,
.product-image-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(36, 116, 185, 0.09);
    border: 1px solid rgba(36, 116, 185, 0.08);
    overflow: hidden;
    position: relative;
}

.shelf-card-inner {
    align-items: flex-end;
    background: linear-gradient(180deg, #f8f9ff 0%, #eef2f8 100%);
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    min-height: 190px;
    padding: 1.5rem 1.5rem 0;
    position: relative;
}

/* Shelf surface line */
.shelf-card-inner::after {
    background: linear-gradient(
        135deg,
        rgba(36, 116, 185, 0.15),
        rgba(132, 72, 156, 0.1)
    );
    border-radius: 0;
    bottom: 0;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    right: 0;
}

.shelf-label {
    background: linear-gradient(
        135deg,
        rgba(36, 116, 185, 0.08),
        rgba(132, 72, 156, 0.06)
    );
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.7;
    padding: 0.6rem 1rem;
    text-transform: uppercase;
}

/* ── SVG Vial ── */
.vial-wrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vial-label-text {
    color: #888;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    max-width: 50px;
    text-align: center;
}

/* Pipeline card */
.pipeline-wrap {
    background: white;
    border: 1px solid rgba(36, 116, 185, 0.08);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(36, 116, 185, 0.09);
    overflow: visible;
    padding: 1.8rem 2rem;
    position: relative;
}

.pipeline-title {
    color: #aaa;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.pipeline-stages {
    display: flex;
    gap: 0;
    position: relative;
}

.pipeline-stages::before {
    background: rgba(36, 116, 185, 0.12);
    content: "";
    height: 3px;
    left: 22px;
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 0;
}

.stage {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.stage-dot {
    align-items: center;
    background: white;
    border: 3px solid rgba(36, 116, 185, 0.15);
    border-radius: 50%;
    display: flex;
    height: 44px;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    width: 44px;
}

.stage-dot svg {
    fill: #ccc;
    height: 18px;
    transition: fill 0.4s;
    width: 18px;
}

.stage.done .stage-dot {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-color: var(--primary-blue);
    box-shadow: 0 4px 14px rgba(36, 116, 185, 0.35);
}

.stage.done .stage-dot svg {
    fill: white;
}

.stage.active .stage-dot {
    animation: pulseDot 2s ease-in-out infinite;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    border-color: var(--orange);
    box-shadow: 0 4px 14px rgba(241, 95, 41, 0.35);
}

.stage.active .stage-dot svg {
    fill: white;
}

@keyframes pulseDot {
    0%,
    100% {
        box-shadow: 0 4px 14px rgba(241, 95, 41, 0.35);
    }
    50% {
        box-shadow: 0 4px 22px rgba(241, 95, 41, 0.55);
    }
}

.stage-line {
    height: 3px;
    left: 50%;
    position: absolute;
    right: -50%;
    top: 22px;
    transition: background 0.4s;
    z-index: -1;
}

.stage.done .stage-line {
    background: var(--primary-blue);
}

.stage.active .stage-line {
    background: linear-gradient(90deg, var(--primary-blue), var(--orange));
}

.stage:last-child .stage-line {
    display: none;
}

.stage-label {
    color: #888;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    transition: color 0.4s;
}

.stage.done .stage-label {
    color: var(--primary-blue);
}

.stage.active .stage-label {
    color: var(--orange);
}

.stage-sub {
    color: #bbb;
    font-size: 0.75rem;
    text-align: center;
}

.stage.done .stage-sub {
    color: rgba(36, 116, 185, 0.6);
}

.stage.active .stage-sub {
    color: rgba(241, 95, 41, 0.7);
}

/* ─── Pipeline table ─── */
.pipeline-section {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid rgba(36, 116, 185, 0.08);
}
.section-tag {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-intro {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
}

.pipeline-table-wrap {
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(36, 116, 185, 0.1);
    overflow-x: auto;
}

table.ptable {
    border-collapse: collapse;
    font-family: "Crimson Pro", serif;
    font-size: 1rem;
    width: 100%;
}

table.ptable thead tr {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
}

table.ptable thead th {
    border: none;
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 1rem 1.2rem;
    text-transform: uppercase;
    white-space: nowrap;
}

table.ptable tbody tr {
    border-bottom: 1px solid rgba(36, 116, 185, 0.07);
    transition: background 0.3s;
}

table.ptable tbody tr:last-child {
    border-bottom: none;
}

table.ptable tbody tr:hover {
    background: rgba(36, 116, 185, 0.03);
}

table.ptable tbody tr:nth-child(even) {
    background: rgba(36, 116, 185, 0.02);
}

table.ptable tbody tr:nth-child(even):hover {
    background: rgba(36, 116, 185, 0.04);
}

table.ptable td {
    border: none;
    color: #333;
    padding: 0.9rem 1.2rem;
    vertical-align: middle;
}

table.ptable td:first-child,
table.ptable td:first-child a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* Mini stage dots in table */
.mini-stages {
    align-items: center;
    display: flex;
    gap: 6px;
}

.mini-dot {
    align-items: center;
    background: white;
    border: 2px solid rgba(36, 116, 185, 0.15);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 22px;
    justify-content: center;
    width: 22px;
}

.mini-dot svg {
    fill: #ccc;
    height: 10px;
    width: 10px;
}

.mini-dot.done {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-color: var(--primary-blue);
}

.mini-dot.done svg {
    fill: white;
}

.mini-dot.active {
    animation: pulseDot 2s ease-in-out infinite;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    border-color: var(--orange);
}

.mini-dot.active svg {
    fill: white;
}

.mini-line {
    background: rgba(36, 116, 185, 0.12);
    flex: 1;
    height: 2px;
    min-width: 12px;
}

.mini-line.done {
    background: var(--primary-blue);
}

.mini-line.active {
    background: linear-gradient(90deg, var(--primary-blue), var(--orange));
}

.status-pill {
    border-radius: 50px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.sp-active {
    background: rgba(241, 95, 41, 0.12);
    color: var(--orange);
}

.sp-done {
    background: rgba(36, 116, 185, 0.12);
    color: var(--primary-blue);
}

.sp-ready {
    background: rgba(43, 176, 137, 0.12);
    color: #2ab089;
}

.sp-pending {
    background: rgba(200, 200, 200, 0.2);
    color: #999;
}

.eta-cell {
    color: #888;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Hero */
.products-page .page-hero {
    overflow: hidden;
    padding: 9rem 0 5rem;
    position: relative;
}

.products-page .page-hero::before {
    animation: heroGlow 20s ease-in-out infinite;
    background: radial-gradient(
        circle,
        rgba(132, 72, 156, 0.18) 0%,
        rgba(241, 95, 41, 0.12) 50%,
        transparent 70%
    );
    border-radius: 50%;
    content: "";
    filter: blur(60px);
    height: 600px;
    position: absolute;
    right: -15%;
    top: -20%;
    width: 600px;
}

@keyframes heroGlow {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

.products-page .hero-tag {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.products-page .hero-title {
    color: var(--primary-blue);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.products-page .hero-title strong {
    font-weight: 600;
}

.products-page .hero-lead {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
}

.products-page .hero-hex-bg {
    height: 100%;
    opacity: 0.07;
    pointer-events: none;
    position: absolute;
    right: -8%;
    top: 0;
    width: 55%;
}

@media (max-width: 991px) {
    .products-page .product-right {
        margin-top: 2rem;
    }
}
@media (max-width: 768px) {
    .products-page .pipeline-stages::before {
        left: 18px;
        right: 18px;
        top: 18px;
    }
    .products-page .stage-dot {
        height: 36px;
        width: 36px;
    }
    .products-page .stage-label {
        font-size: 0.72rem;
    }
    .products-page .product-logo-hex,
    .products-page .product-logo-hex--wordmark {
        height: 76px;
        width: 180px;
    }
}
/*-------------------------------------------------------------------*\
|  END of Products block
\*-------------------------------------------------------------------*/

/* ─────────────────────────────────────────
           MISC UTILITIES
        ───────────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-hex {
    align-items: center;
    color: var(--border-subtle);
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
}

.divider-hex::before,
.divider-hex::after {
    background: var(--border-subtle);
    content: "";
    flex: 1;
    height: 1px;
}

.divider-hex svg {
    fill: rgba(36, 116, 185, 0.2);
    flex-shrink: 0;
    height: 22px;
    width: 20px;
}

@media (max-width: 991px) {
    .pillar-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .accent-div {
        display: none;
    }
}

/* ── Variant label ── */
.variant-label {
    color: #bbb;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   VARIANT A — Hex-bullet list
   Best for: single-column, medium items
══════════════════════════════════════ */
.hex-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
}

.hex-list li {
    align-items: flex-start;
    border-bottom: 1px solid rgba(36, 116, 185, 0.07);
    border-radius: 8px;
    display: flex;
    gap: 1.1rem;
    padding: 1.1rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    position: relative;
    transition: background 0.3s ease;
}
a .hex-list li:last-child {
    border-bottom: none;
}

.hex-list li:hover {
    background: rgba(36, 116, 185, 0.03);
}

.hex-bullet {
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-shrink: 0;
    height: 32px;
    justify-content: center;
    margin-top: 0.15rem;
    transition: transform 0.3s ease;
    width: 28px;
}

.hex-list li:hover .hex-bullet {
    transform: scale(1.15);
}

.hex-bullet svg {
    fill: white;
    height: 13px;
    width: 13px;
}

.hex-list .item-text {
    color: #3a3a3a;
    font-size: 1.12rem;
    line-height: 1.6;
    padding-top: 0.1rem;
}

.hex-list .item-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Colour variants for hex bullets */
.hb-blue {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.hb-orange {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
}

.hb-purple {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
}

.hb-red {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.hb-green {
    background: linear-gradient(135deg, #43b089, #2a7a5a);
}

/* Accent line on left on hover */
.hex-list li::before {
    background: linear-gradient(180deg, var(--primary-blue), var(--purple));
    border-radius: 2px;
    bottom: 20%;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    top: 20%;
    transition: opacity 0.3s ease;
    width: 3px;
}

.hex-list li:hover::before {
    opacity: 0.6;
}

/* ══════════════════════════════════════
   VARIANT B — Numbered hex cards
   Best for: ordered steps / ranked items
══════════════════════════════════════ */
.hex-card-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.hex-card-list li {
    align-items: center;
    background: white;
    border: 1px solid rgba(36, 116, 185, 0.09);
    border-radius: 16px;
    box-shadow: 0 3px 16px rgba(36, 116, 185, 0.06);
    display: flex;
    gap: 1.4rem;
    overflow: visible;
    padding: 1.4rem 1.6rem;
    position: relative;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.hex-card-list li:hover {
    box-shadow: 0 6px 28px rgba(36, 116, 185, 0.13);
    transform: translateX(6px);
}

/* Breakout hex accent top-right */
.hex-card-list li::after {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 56px;
    opacity: 0.1;
    position: absolute;
    right: -14px;
    top: -14px;
    transition: opacity 0.35s ease;
    width: 50px;
}

.hex-card-list li:hover::after {
    opacity: 0.18;
}

.hex-card-list li:nth-child(1)::after {
    background: var(--orange);
}

.hex-card-list li:nth-child(2)::after {
    background: var(--purple);
}

.hex-card-list li:nth-child(3)::after {
    background: var(--primary-blue);
}

.hex-card-list li:nth-child(4)::after {
    background: var(--red);
}

.hex-card-list li:nth-child(5)::after {
    background: var(--light-blue);
}

.card-num {
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: white;
    display: flex;
    flex-shrink: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    letter-spacing: 0;
    transition: transform 0.35s ease;
    width: 48px;
}

.hex-card-list li:hover .card-num {
    transform: scale(1.08);
}

.hex-card-list li:nth-child(1) .card-num {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
}

.hex-card-list li:nth-child(2) .card-num {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
}

.hex-card-list li:nth-child(3) .card-num {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.hex-card-list li:nth-child(4) .card-num {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.hex-card-list li:nth-child(5) .card-num {
    background: linear-gradient(135deg, #43b089, var(--primary-blue));
}

.card-item-text {
    color: #3a3a3a;
    font-size: 1.12rem;
    line-height: 1.6;
    text-align: left;
}

.card-item-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Left gradient border per card */
.hex-card-list li::before {
    border-radius: 4px 0 0 4px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}

.hex-card-list li:nth-child(1)::before {
    background: linear-gradient(180deg, var(--orange), var(--light-orange));
}

.hex-card-list li:nth-child(2)::before {
    background: linear-gradient(180deg, var(--purple), var(--primary-blue));
}

.hex-card-list li:nth-child(3)::before {
    background: linear-gradient(180deg, var(--light-blue), var(--primary-blue));
}

.hex-card-list li:nth-child(4)::before {
    background: linear-gradient(180deg, var(--red), var(--orange));
}

.hex-card-list li:nth-child(5)::before {
    background: linear-gradient(180deg, #43b089, var(--primary-blue));
}

/* ══════════════════════════════════════
   VARIANT C — Two-column tiled grid
   Best for: attributes / feature lists
══════════════════════════════════════ */
.hex-tile-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
}

@media (max-width: 580px) {
    .hex-tile-grid {
        grid-template-columns: 1fr;
    }
}

.hex-tile-grid li {
    background: white;
    border: 1px solid rgba(36, 116, 185, 0.09);
    border-radius: 16px;
    box-shadow: 0 3px 14px rgba(36, 116, 185, 0.05);
    overflow: visible;
    padding: 1.4rem 1.5rem 1.3rem;
    position: relative;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.hex-tile-grid li:hover {
    box-shadow: 0 10px 32px rgba(36, 116, 185, 0.13);
    transform: translateY(-5px);
}

/* Wide flat-top hex badge top-left */
.tile-badge {
    align-items: center;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 80px;
}

.tile-badge svg {
    fill: white;
    height: 16px;
    width: 16px;
}

.tile-item-text {
    color: #3a3a3a;
    font-size: 1.08rem;
    line-height: 1.65;
}

.tile-item-text strong {
    color: var(--primary-blue);
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

/* Breakout hex corner accent */
.hex-tile-grid li::after {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 50px;
    opacity: 0.1;
    position: absolute;
    right: -12px;
    top: -12px;
    transition: opacity 0.35s;
    width: 44px;
}

.hex-tile-grid li:hover::after {
    opacity: 0.2;
}

.hex-tile-grid li:nth-child(1)::after {
    background: var(--orange);
}

.hex-tile-grid li:nth-child(2)::after {
    background: var(--purple);
}

.hex-tile-grid li:nth-child(3)::after {
    background: var(--light-blue);
}

.hex-tile-grid li:nth-child(4)::after {
    background: var(--red);
}

.hex-tile-grid li:nth-child(5)::after {
    background: var(--light-orange);
}

.hex-tile-grid li:nth-child(6)::after {
    background: var(--primary-blue);
}

.tb-orange {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
}

.tb-purple {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
}

.tb-blue {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.tb-red {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.tb-amber {
    background: linear-gradient(135deg, var(--light-orange), var(--yellow));
}

.tb-green {
    background: linear-gradient(135deg, #43b089, #2474b9);
}

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
/* ── Contact info strip ── */
.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-chip {
    align-items: center;
    color: #555;
    display: flex;
    font-size: 1rem;
    gap: 0.7rem;
}

.contact-chip .chip-icon {
    align-items: center;
    border-radius: 9px;
    display: flex;
    flex-shrink: 0;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.contact-chip .chip-icon svg {
    fill: white;
    height: 17px;
    width: 17px;
}

.contact-chip a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-chip a:hover {
    color: var(--orange);
}

/* ── Tab navigation ── */
.form-tabs {
    background: white;
    border: 1px solid rgba(36, 116, 185, 0.08);
    border-radius: 60px;
    box-shadow: 0 2px 14px rgba(36, 116, 185, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0.5rem;
    width: fit-content;
}

.form-tab {
    border: none;
    border-radius: 50px;
    background: transparent;
    color: #888;
    cursor: pointer;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    padding: 0.55rem 1.4rem;
    text-transform: uppercase;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.form-tab:hover {
    color: var(--primary-blue);
}

.form-tab.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    box-shadow: 0 3px 14px rgba(36, 116, 185, 0.3);
    color: white;
}

.form-tab.active-orange {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    box-shadow: 0 3px 14px rgba(241, 95, 41, 0.3);
}

.form-tab.active-purple {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    box-shadow: 0 3px 14px rgba(132, 72, 156, 0.3);
}

.form-tab.active-teal {
    background: linear-gradient(135deg, #43b089, var(--primary-blue));
    box-shadow: 0 3px 14px rgba(67, 176, 137, 0.3);
}

/* ── Form panel ── */
.form-panel {
    animation: fadeUp 0.4s ease;
    display: none;
}

.form-panel.active {
    display: block;
}

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

/* ── Form card ── */
.form-card {
    background: white;
    border: 1px solid rgba(36, 116, 185, 0.08);
    border-radius: 24px;
    box-shadow: 0 6px 36px rgba(36, 116, 185, 0.1);
    overflow: hidden;
    position: relative;
}

.form-card-header {
    border-bottom: 1px solid rgba(36, 116, 185, 0.07);
    padding: 2.2rem 2.5rem 1.8rem;
    position: relative;
}

.form-card-header::after {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 136px;
    opacity: 0.08;
    position: absolute;
    right: -20px;
    top: -20px;
    transition: opacity 0.4s;
    width: 120px;
}

.form-card:hover .form-card-header::after {
    opacity: 0.14;
}

.form-card-body {
    padding: 2.2rem 2.5rem;
}

.form-card-title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.form-card-sub {
    color: #777;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ── Floating label fields ── */
.field-group {
    margin-bottom: 1.6rem;
    position: relative;
}

.field-group label {
    background: white;
    color: #aaa;
    font-family: "Crimson Pro", serif;
    font-size: 1rem;
    left: 1rem;
    padding: 0 0.3rem;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.25s ease;
    z-index: 1;
}

.field-group.has-value label,
.field-group:focus-within label {
    color: var(--primary-blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    top: -1px;
    transform: translateY(-50%);
}

.field-group textarea ~ label {
    top: 1.2rem;
    transform: none;
}

.field-group.has-value textarea ~ label,
.field-group:focus-within textarea ~ label {
    top: -1px;
    transform: translateY(-50%);
}

.form-control,
.form-select {
    background: white;
    border: 1.5px solid rgba(36, 116, 185, 0.2);
    border-radius: 10px;
    color: #2a2a2a;
    font-family: "Crimson Pro", serif;
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(36, 116, 185, 0.1);
    outline: none;
}

.form-control.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(237, 28, 37, 0.08);
}

.form-control.success {
    border-color: #43b089;
    box-shadow: 0 0 0 3px rgba(67, 176, 137, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232474b9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Field with icon -->*/
.field-icon {
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.field-icon svg {
    height: 18px;
    width: 18px;
}

.field-group.textarea-group .field-icon {
    top: 1.3rem;
    transform: none;
}

/* Validation messages */
.field-msg {
    display: none;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-top: 0.35rem;
    padding-left: 0.3rem;
    text-transform: uppercase;
}

.field-msg.error {
    color: var(--red);
    display: block;
}

.field-msg.success {
    color: #43b089;
    display: block;
}

.field-msg.hint {
    color: #aaa;
    display: block;
}

/* ── Radio / checkbox custom ── */
.custom-radio-group,
.custom-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
}

.custom-radio-group .group-label,
.custom-check-group .group-label {
    color: var(--primary-blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
    opacity: 0.8;
    text-transform: uppercase;
    width: 100%;
}

.radio-pill input,
.check-pill input {
    display: none;
}

.radio-pill label,
.check-pill label {
    border: 1.5px solid rgba(36, 116, 185, 0.2);
    border-radius: 50px;
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.45rem 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    user-select: none;
}

.radio-pill input:checked + label {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(36, 116, 185, 0.25);
    color: white;
}

.check-pill input:checked + label {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(241, 95, 41, 0.25);
    color: white;
}

.radio-pill label:hover,
.check-pill label:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ── Consent checkbox ── */
.consent-wrap {
    align-items: flex-start;
    background: rgba(36, 116, 185, 0.03);
    border: 1px solid rgba(36, 116, 185, 0.08);
    border-radius: 12px;
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
    padding: 1.1rem;
}

.consent-box {
    border: 2px solid rgba(36, 116, 185, 0.3);
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    height: 22px;
    margin-top: 0.1rem;
    position: relative;
    transition: all 0.3s;
    width: 22px;
}

.consent-box.checked {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.consent-box.checked::after {
    border: 2px solid white;
    border-top: none;
    border-left: none;
    content: "";
    height: 12px;
    left: 5px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 8px;
}

.consent-text {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.6;
}

.consent-text a {
    color: var(--primary-blue);
    text-decoration: none;
}

.consent-text a:hover {
    color: var(--orange);
}

/* ── Submit button ── */
.btn-submit {
    align-items: center;
    background-size: 200% 100%;
    background-position: 0 0;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    font-family: "Crimson Pro", serif;
    font-size: 1.15rem;
    font-weight: 500;
    gap: 0.6rem;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    transition:
        transform 0.5s ease-in-out,
        box-shadow 0.5s ease-in-out,
        background-position 0.5s ease-in-out;
    width: 100%;
}

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

.btn-submit svg {
    fill: currentColor;
    height: 20px;
    width: 20px;
}

.btn-submit-blue {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--purple) 100%
    );
    box-shadow: 0 4px 20px rgba(36, 116, 185, 0.3);
    color: white;
}

.btn-submit-blue:hover {
    box-shadow: 0 6px 28px rgba(36, 116, 185, 0.4);
    background-position: 100% 0;
}

.btn-submit-orange {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    box-shadow: 0 4px 20px rgba(241, 95, 41, 0.3);
    color: white;
}

.btn-submit-orange:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 28px rgba(241, 95, 41, 0.4);
}

.btn-submit-purple {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    box-shadow: 0 4px 20px rgba(132, 72, 156, 0.3);
    color: white;
}

.btn-submit-purple:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 28px rgba(132, 72, 156, 0.4);
}

.btn-submit-teal {
    background: linear-gradient(135deg, #43b089, var(--primary-blue));
    box-shadow: 0 4px 20px rgba(67, 176, 137, 0.3);
    color: white;
}

.btn-submit-teal:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 28px rgba(67, 176, 137, 0.4);
}

/* Loading spinner */
.spinner {
    animation: spin 0.7s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: white;
    border-radius: 50%;
    display: none;
    height: 20px;
    width: 20px;
}

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

.btn-submit.loading .spinner {
    display: block;
}

.btn-submit.loading .btn-label {
    display: none;
}

/* ── Success state ── */
.form-success {
    animation: fadeUp 0.5s ease;
    display: none;
    padding: 3rem 2rem;
    text-align: center;
}

.form-success.active {
    display: block;
}

.success-hex {
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    height: 100px;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 90px;
}

.success-hex svg {
    fill: white;
    height: 38px;
    width: 38px;
}

.success-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.success-body {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0 auto 2rem;
    max-width: 420px;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-success-action {
    align-items: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    font-family: "Crimson Pro", serif;
    font-size: 1.05rem;
    font-weight: 500;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-sa-primary {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    box-shadow: 0 4px 16px rgba(241, 95, 41, 0.3);
    color: white;
}

.btn-sa-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-sa-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* ── Download doc item ── */
.doc-item {
    align-items: center;
    background: rgba(36, 116, 185, 0.03);
    border: 1px solid rgba(36, 116, 185, 0.1);
    border-radius: 14px;
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 1rem 1.2rem;
    transition: all 0.3s;
}

.doc-item:hover {
    background: rgba(36, 116, 185, 0.06);
    transform: translateX(4px);
}

.doc-icon {
    align-items: center;
    border-radius: 10px;
    display: flex;
    flex-shrink: 0;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.doc-icon svg {
    fill: white;
    height: 20px;
    width: 20px;
}

.doc-info {
    flex: 1;
}

.doc-name {
    color: var(--primary-blue);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
}

.doc-meta {
    color: #aaa;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-top: 0.15rem;
    text-transform: uppercase;
}

.doc-check {
    border: 2px solid rgba(36, 116, 185, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    height: 22px;
    width: 22px;
}

.doc-item.selected .doc-check {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    position: relative;
}

.doc-item.selected .doc-check::after {
    border: 2px solid white;
    border-top: none;
    border-left: none;
    content: "";
    height: 11px;
    left: 5px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 8px;
}

/* ── Wizard steps ── */
.wizard-steps {
    align-items: center;
    display: flex;
    margin-bottom: 2.2rem;
    position: relative;
}

.wizard-steps::before {
    background: rgba(36, 116, 185, 0.12);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 0;
}

.wizard-step {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.w-dot {
    align-items: center;
    background: white;
    border: 2px solid rgba(36, 116, 185, 0.2);
    border-radius: 50%;
    color: #bbb;
    cursor: pointer;
    display: flex;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    transition: all 0.4s ease;
    width: 36px;
}

.wizard-step.done .w-dot {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-color: var(--primary-blue);
    color: white;
}

.wizard-step.active .w-dot {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    border-color: var(--purple);
    box-shadow: 0 3px 12px rgba(132, 72, 156, 0.3);
    color: white;
}

.w-label {
    color: #bbb;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-top: 0.4rem;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.4s;
}

.wizard-step.active .w-label {
    color: var(--primary-blue);
}

.wizard-step.done .w-label {
    color: var(--light-blue);
}

.w-step-panel {
    display: none;
}

.w-step-panel.active {
    animation: fadeUp 0.35s ease;
    display: block;
}

.wizard-nav {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-wiz {
    align-items: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    font-family: "Crimson Pro", serif;
    font-size: 1rem;
    font-weight: 500;
    gap: 0.5rem;
    padding: 0.75rem 1.8rem;
    transition: all 0.4s ease;
}

.btn-wiz-next {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    box-shadow: 0 3px 14px rgba(132, 72, 156, 0.25);
    color: white;
    flex: 1;
    justify-content: center;
}

.btn-wiz-back {
    background: transparent;
    border: 1.5px solid rgba(36, 116, 185, 0.2);
    color: #888;
}

.btn-wiz-back:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-wiz svg {
    fill: currentColor;
    height: 16px;
    width: 16px;
}

/* Char counter */
.char-count {
    color: #ccc;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
    text-transform: uppercase;
    text-align: right;
}

@media (max-width: 768px) {
    .form-tabs {
        width: 100%;
    }
    .form-card-body,
    .form-card-header {
        padding: 1.5rem;
    }
    .form-tab {
        font-size: 0.72rem;
        padding: 0.5rem 1rem;
    }
    .wizard-steps {
        gap: 0;
    }
    .w-label {
        display: none;
    }
}

/* ══════════════════════════════════════
   UNIFORM TEAM MEMBER SECTION TEMPLATE
══════════════════════════════════════ */
section.member-section,
.member-section {
    border-top: 1px solid rgba(36, 116, 185, 0.08);
    padding: 7rem 0;
}

/* Photo hex frame */
.profile-photo-wrap {
    display: inline-block;
    position: relative;
}

.profile-photo-hex {
    align-items: center;
    box-shadow: 0 16px 40px rgba(36, 116, 185, 0.22);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: white;
    display: flex;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    height: 230px;
    justify-content: center;
    position: relative;
    width: 200px;
}

.profile-photo-wrap::after {
    animation: hexRotate 50s linear infinite;
    border: 2px dashed rgba(36, 116, 185, 0.25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    content: "";
    height: 268px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 232px;
}

@keyframes hexRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.photo-accent-blob {
    border-radius: 50%;
    height: 260px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    z-index: -1;
}

/* Badges */
.advisor-badge,
.team-badge {
    align-items: center;
    border-radius: 50px;
    display: inline-flex;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.78rem;
    gap: 0.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.4rem 1.1rem;
    text-transform: uppercase;
}

.advisor-badge {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 4px 16px rgba(132, 72, 156, 0.3);
    color: white;
}

.advisor-badge svg {
    fill: white;
    height: 14px;
    width: 14px;
}

.team-badge {
    background: rgba(36, 116, 185, 0.1);
    color: var(--primary-blue);
}

.member-name {
    color: var(--primary-blue);
    font-size: clamp(1.9rem, 3.2vw, 2.4rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 0.4rem;
}

.member-name strong {
    font-weight: 600;
}

.member-role {
    color: var(--purple);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.member-affil {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.1rem;
}

.member-affil strong {
    color: #666;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.3rem;
}

.ptag {
    border-radius: 50px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.76rem;
    letter-spacing: 1px;
    padding: 0.3rem 0.85rem;
}

.ptag-blue {
    background: rgba(36, 116, 185, 0.1);
    color: var(--primary-blue);
}

.ptag-purple {
    background: rgba(132, 72, 156, 0.1);
    color: var(--purple);
}

.ptag-orange {
    background: rgba(241, 95, 41, 0.1);
    color: var(--orange);
}

.ptag-teal {
    background: rgba(67, 176, 137, 0.12);
    color: #2a7a5a;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0;
}

.btn-connect {
    align-items: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    font-family: "Crimson Pro", serif;
    font-size: 0.95rem;
    font-weight: 500;
    gap: 0.45rem;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition:
        transform 0.5s ease-in-out,
        box-shadow 0.5s ease-in-out,
        background-position 0.5s ease-in-out;
}

.btn-connect svg {
    fill: currentColor;
    height: 15px;
    width: 15px;
}

.btn-connect-primary {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    background-size: 200% 100%;
    background-position: 0 0;
    box-shadow: 0 4px 14px rgba(241, 95, 41, 0.28);
    color: white;
}

.btn-connect-primary:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 22px rgba(241, 95, 41, 0.38);
    color: white;
    transform: translateY(-2px);
}

.btn-connect-outline {
    background: transparent;
    border: 1.6px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-connect-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Bio card — opaque, measure-capped */
.bio-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(36, 116, 185, 0.07);
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(36, 116, 185, 0.08);
    padding: 2rem 2.2rem;
}

.bio-text {
    max-width: 70ch;
}

.bio-text p {
    color: #3a3a3a;
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}
.bio-text p.lead {
    font-size: 1.5rem;
    line-height: 1.333;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.bio-pull-quote {
    background: linear-gradient(
        135deg,
        rgba(36, 116, 185, 0.06),
        rgba(132, 72, 156, 0.05)
    );
    border-left: 4px solid var(--light-blue);
    border-radius: 0 14px 14px 0;
    padding: 1.1rem 1.6rem;
    margin: 1.6rem 0;
    max-width: 70ch;
}

.bio-pull-quote p {
    color: var(--primary-blue);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.65;
    margin: 0;
}

/* Sidebar cards — present for every member */
.cred-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(36, 116, 185, 0.09);
    box-shadow: 0 4px 20px rgba(36, 116, 185, 0.07);
    margin-bottom: 1.2rem;
    overflow: visible;
    padding: 1.6rem 1.7rem;
    position: relative;
}

.cred-card .hex-corner {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 80px;
    opacity: 0.1;
    position: absolute;
    right: -14px;
    top: -14px;
    width: 70px;
}

.cred-card-title {
    color: var(--primary-blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.cred-list {
    list-style: none;
}

.cred-item {
    border-bottom: 1px solid rgba(36, 116, 185, 0.06);
    display: flex;
    gap: 0.8rem;
    padding: 0.7rem 0;
}

.cred-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cred-icon {
    align-items: center;
    border-radius: 8px;
    display: flex;
    flex-shrink: 0;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.cred-icon svg {
    fill: white;
    height: 14px;
    width: 14px;
}

.cred-text strong {
    color: var(--primary-blue);
    display: block;
    font-size: 0.92rem;
    line-height: 1.3;
}

.cred-text span {
    color: #999;
    font-size: 0.83rem;
}

.spec-list {
    list-style: none;
}

.spec-item {
    align-items: flex-start;
    color: #555;
    display: flex;
    font-size: 0.95rem;
    gap: 0.7rem;
    padding: 0.45rem 0;
}

.spec-hex {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
    height: 18px;
    margin-top: 0.28rem;
    width: 16px;
}
