/* ==========================================================================
   TRUSTIV — Design tokens (Warm & Vibrant direction)
   Palette: coral, sunflower, violet, mint on warm white, grounded by deep indigo-ink.
   Type: Space Grotesk (display) / Plus Jakarta Sans (body) / Space Mono (utility).
   ========================================================================== */

:root {
    --ink: #171533;
    --ink-2: #211D45;
    --paper: #FFFDF9;
    --paper-2: #FFFFFF;
    --coral: #FF5C72;
    --coral-deep: #E8425A;
    --sun: #FFC845;
    --sun-deep: #F2A900;
    --violet: #5B4FE9;
    --violet-deep: #4436C4;
    --mint: #1FC8A3;
    --mint-deep: #12A483;
    --tint-violet: #EFECFE;
    --tint-sun: #FFF3D6;
    --tint-mint: #DEF9F1;
    --tint-coral: #FFE7EA;
    --ink-text: #171533;
    --ink-text-60: rgba(23, 21, 51, 0.64);
    --ink-text-40: rgba(23, 21, 51, 0.44);
    --paper-text: #FFFDF9;
    --paper-text-70: rgba(255, 253, 249, 0.76);
    --paper-text-45: rgba(255, 253, 249, 0.5);
    --line: rgba(23, 21, 51, 0.12);
    --line-dark: rgba(255, 253, 249, 0.18);
    --shadow-soft: 0 20px 40px -18px rgba(23, 21, 51, 0.28);
    --shadow-pop: 0 14px 0 0 var(--ink);
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', 'SFMono-Regular', Menlo, monospace;
    --max-w: 1180px;
    --pad: clamp(20px, 5vw, 64px);
    --r-lg: 22px;
    --r-md: 14px;
    --r-pill: 999px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.55;
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.015em;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
}

:focus-visible {
    outline: 3px solid var(--violet);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--violet-deep);
    font-weight: 700;
    background: var(--tint-violet);
    padding: 6px 12px 6px 10px;
    border-radius: var(--r-pill);
}

.eyebrow::before {
    content: "●";
    color: var(--coral);
    font-size: 8px;
}

.section-on-dark .eyebrow,
.page-header .eyebrow {
    background: rgba(255, 253, 249, 0.14);
    color: var(--sun);
}

.hero .eyebrow {
    background: var(--ink);
    color: var(--sun);
    position: relative;
    z-index: 2;
}

.section-on-dark .eyebrow::before,
.hero .eyebrow::before,
.page-header .eyebrow::before {
    color: var(--coral);
}


/* ==========================================================================
   Brand mark (trio-circle signature)
   ========================================================================== */

.seal svg {
    display: block;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header .container {
    padding-left: clamp(14px, 2.5vw, 32px);
}

.site-header::before {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--coral), var(--sun), var(--mint), var(--violet));
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-text);
}

.brand-mark {
    width: 36px;
    height: 36px;
    flex: none;
    background: var(--paper-2);
    border-radius: 50%;
    padding: 4px;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px var(--line);
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark-footer {
    background: var(--paper);
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
}

.brand-word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.01em;
}

.brand-tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-text-40);
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-text-60);
    position: relative;
    padding: 6px 2px;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--violet-deep);
}

.nav-links a.is-active {
    color: var(--ink-text);
}

.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--coral);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-phone {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ink-text-60);
    display: none;
}

.nav-toggle {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink-text);
    position: relative;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span::before {
    position: absolute;
    top: -7px;
}

.nav-toggle span::after {
    position: absolute;
    top: 7px;
}

@media (min-width: 860px) {
    .nav-phone {
        display: inline;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px var(--pad) 24px;
        border-top: 1px solid var(--line);
        box-shadow: 0 16px 28px -12px rgba(23, 21, 51, 0.22);
        max-height: calc(100vh - 100%);
        overflow-y: auto;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease, visibility .18s;
    }
    .nav-links a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }
    .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }
    .nav-toggle {
        display: flex;
    }
    /* Header CTA button + hamburger don't both fit on phones and caused
     horizontal scroll — hide the header CTA there and give the mobile
     menu its own CTA instead. */
    .nav-cta>a.btn-brass {
        display: none;
    }
    .nav-links a.nav-links-cta {
        width: 100%;
        margin-top: 16px;
        padding: 14px 0;
        border-bottom: none;
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 901px) {
    .nav-links a.nav-links-cta {
        display: none;
    }
}


/* ==========================================================================
   Buttons — bold filled pills with a hard drop shadow
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--r-pill);
    border: 2px solid var(--ink);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .2s ease;
    white-space: nowrap;
}

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

.btn:active {
    transform: translate(0, 0);
    box-shadow: none !important;
}

.btn-brass {
    background: var(--coral);
    color: var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
}

.btn-brass:hover {
    background: var(--sun);
    box-shadow: 6px 6px 0 0 var(--ink);
}

.btn-outline-dark {
    border-color: rgba(255, 253, 249, 0.5);
    color: var(--paper-text);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--paper-text);
    background: rgba(255, 253, 249, 0.1);
    box-shadow: 4px 4px 0 0 rgba(255, 253, 249, 0.35);
}

.btn-outline-light {
    border-color: var(--ink);
    color: var(--ink-text);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--tint-sun);
    box-shadow: 4px 4px 0 0 var(--ink);
}

.btn-block {
    width: 100%;
}


/* ==========================================================================
   Hero — big violet color-block with drifting blobs
   ========================================================================== */

.hero {
    background: var(--violet);
    color: var(--paper-text);
    position: relative;
    overflow: hidden;
    padding-top: clamp(32px, 5vw, 56px);
    padding-bottom: clamp(64px, 9vw, 104px);
}

.hero::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: var(--sun);
    opacity: 0.9;
    top: -220px;
    right: -140px;
    filter: blur(0px);
    animation: drift 9s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--mint);
    opacity: 0.5;
    bottom: -160px;
    left: -80px;
    animation: drift 11s ease-in-out infinite reverse;
}

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

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    line-height: 1.06;
    color: var(--paper-text);
    margin-top: 18px;
}

.hero-copy h1 em {
    font-style: normal;
    color: var(--ink);
    background: var(--sun);
    padding: 0 10px;
    border-radius: 8px;
    display: inline-block;
}

.hero-copy p {
    margin-top: 22px;
    max-width: 46ch;
    color: var(--paper-text-70);
    font-size: 16.5px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-meta {
    margin-top: 44px;
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.hero-meta div {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--paper-text-45);
    letter-spacing: 0.01em;
    border-left: 2px solid var(--sun);
    padding-left: 12px;
}

.hero-meta span {
    display: block;
    color: var(--paper-text);
    font-weight: 700;
    font-size: 13.5px;
    margin-top: 4px;
    font-family: var(--font-display);
}

.hero-art {
    position: relative;
    z-index: 1;
}

.roster-card {
    background: var(--paper-2);
    border: 3px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 26px 26px 22px;
    box-shadow: 8px 8px 0 0 var(--ink);
    transform: rotate(-1.4deg);
    position: relative;
}

.roster-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 2px dashed var(--line);
    margin-bottom: 14px;
}

.roster-card-head span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-text-40);
    font-weight: 700;
}

.roster-card-head span:last-child {
    background: var(--mint);
    color: var(--ink);
    padding: 3px 10px;
    border-radius: var(--r-pill);
}

.roster-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
}

.roster-row:last-child {
    border-bottom: none;
}

.roster-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: none;
}

.roster-row:nth-child(2) .roster-dot {
    background: var(--coral);
}

.roster-row:nth-child(3) .roster-dot {
    background: var(--sun-deep);
}

.roster-row:nth-child(4) .roster-dot {
    background: var(--mint);
}

.roster-row:nth-child(5) .roster-dot {
    background: var(--violet);
}

.roster-row:nth-child(6) .roster-dot {
    background: var(--coral);
}

.roster-row .rname {
    font-size: 13.5px;
    color: var(--ink-text);
    font-weight: 600;
    flex: 1;
}

.roster-row .rstat {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-text-40);
}

.sticker {
    position: absolute;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    color: var(--ink);
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    padding: 9px 16px;
    box-shadow: 4px 4px 0 0 var(--ink);
}

.sticker-1 {
    top: -18px;
    left: -18px;
    background: var(--sun);
    transform: rotate(-8deg);
}

.sticker-2 {
    bottom: -16px;
    right: -14px;
    background: var(--mint);
    transform: rotate(6deg);
}


/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */

.marquee-wrap {
    background: var(--tint-sun);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 18px 0;
}

.marquee-label {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    margin-bottom: 12px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-text-60);
    padding: 0 30px;
    border-right: 2px dashed var(--line);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-track span.marquee-logo {
    padding: 10px 28px;
    margin: 0 6px;
    background: var(--paper-2);
    border-radius: var(--r-md);
    box-shadow: 0 0 0 1px var(--line);
}

.marquee-track span.marquee-logo img {
    height: 28px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

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


/* ==========================================================================
   Section scaffolding
   ========================================================================== */

section {
    padding: clamp(56px, 9vw, 100px) 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 44px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-top: 14px;
    color: var(--ink-text);
}

.section-head p {
    margin-top: 14px;
    color: var(--ink-text-60);
    font-size: 15.5px;
    font-weight: 500;
}

.section-on-dark {
    background: var(--ink);
    color: var(--paper-text);
}

.section-on-dark .section-head h2 {
    color: var(--paper-text);
}

.section-on-dark .section-head p {
    color: var(--paper-text-70);
}

.section-mist {
    background: var(--tint-mint);
}

.section-paper {
    background: var(--paper);
}


/* ==========================================================================
   Offering panels
   ========================================================================== */

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

.offer-card {
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 34px 32px;
    position: relative;
    transition: box-shadow .2s ease, transform .2s ease;
    box-shadow: 6px 6px 0 0 var(--ink);
}

.offer-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 0 var(--ink);
}

.offer-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 20px;
}

.offer-card:nth-of-type(1) .offer-icon {
    background: var(--sun);
}

.offer-card:nth-of-type(2) .offer-icon {
    background: var(--mint);
}

.offer-icon svg {
    width: 26px;
    height: 26px;
}

.offer-card h3 {
    font-size: 1.35rem;
    color: var(--ink-text);
}

.offer-card p {
    margin-top: 12px;
    color: var(--ink-text-60);
    font-size: 14.5px;
    font-weight: 500;
}

.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.offer-tags span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 11px;
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    color: var(--ink-text);
}

.offer-link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink-text);
    border-bottom: 2px solid var(--coral);
    padding-bottom: 2px;
}


/* ==========================================================================
   Process (real sequence)
   ========================================================================== */

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-item {
    position: relative;
    padding-left: 4px;
}

.process-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--sun);
    display: inline-block;
    margin-bottom: 16px;
    background: rgba(255, 253, 249, 0.1);
    padding: 5px 12px;
    border-radius: var(--r-pill);
}

.process-item h4 {
    font-size: 1.1rem;
    color: var(--paper-text);
    line-height: 1.35;
    min-height: 2.75em;
}

.process-item p {
    margin-top: 10px;
    color: var(--paper-text-70);
    font-size: 14px;
    font-weight: 500;
}

.process-rule {
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-dark) 0 8px, transparent 8px 16px);
    margin-top: 22px;
}


/* ==========================================================================
   Differentiators (icon tiles — not a sequence, no numbers)
   ========================================================================== */

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.diff-tile {
    padding: 26px 22px;
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    transition: transform .2s ease;
}

.diff-tile:hover {
    transform: rotate(-1deg);
}

.diff-tile .glyph {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 16px;
}

.diff-tile:nth-of-type(1) .glyph {
    background: var(--coral);
}

.diff-tile:nth-of-type(2) .glyph {
    background: var(--sun);
}

.diff-tile:nth-of-type(3) .glyph {
    background: var(--mint);
}

.diff-tile:nth-of-type(4) .glyph {
    background: var(--violet);
    color: var(--paper-text);
}

.diff-tile .glyph svg {
    width: 22px;
    height: 22px;
}

.diff-tile h4 {
    font-size: 1rem;
    color: var(--ink-text);
}

.diff-tile p {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--ink-text-60);
    font-weight: 500;
}


/* ==========================================================================
   Testimonials
   ========================================================================== */

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

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

.testi-card {
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 0 0 var(--ink);
}

.testi-card:nth-child(3n+2) {
    background: var(--tint-sun);
}

.testi-card:nth-child(3n+3) {
    background: var(--tint-mint);
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 16.5px;
    line-height: 1.5;
    color: var(--ink-text);
    font-weight: 500;
}

.testi-mark {
    color: var(--coral);
    font-size: 34px;
    line-height: 1;
    font-family: var(--font-display);
    margin-bottom: 4px;
    display: block;
    font-weight: 700;
}

.testi-foot {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 2px dashed var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--violet);
    color: var(--paper-text);
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    flex: none;
}

.testi-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink-text);
}

.testi-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-text-40);
    margin-top: 2px;
}

.testi-note {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-text-60);
    border: 2px dashed var(--ink);
    background: var(--tint-sun);
    padding: 14px 16px;
    border-radius: var(--r-md);
    margin-top: 40px;
}


/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
    background: var(--coral);
    color: var(--ink);
    border-radius: var(--r-lg);
    border: 3px solid var(--ink);
    padding: clamp(40px, 6vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 0 var(--ink);
}

.cta-banner h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: var(--ink);
    position: relative;
    max-width: 30ch;
}

.cta-banner p {
    color: rgba(23, 21, 51, 0.72);
    margin-top: 10px;
    position: relative;
    font-weight: 600;
}

.cta-banner .btn {
    position: relative;
}

.cta-banner .btn-brass {
    background: var(--ink);
    color: var(--paper-text);
    box-shadow: 4px 4px 0 0 rgba(23, 21, 51, 0.4);
    border-color: var(--ink);
}

.cta-banner .btn-brass:hover {
    background: var(--ink-2);
}


/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--ink);
    color: var(--paper-text-70);
    padding: 56px 0 28px;
    position: relative;
}

.site-footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--sun), var(--mint), var(--violet));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--paper-text);
    margin-bottom: 14px;
}

.footer-brand .brand-word {
    font-size: 18px;
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 13.5px;
    color: var(--paper-text-70);
    transition: color .2s ease;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--paper-text);
}

.footer-desc {
    font-size: 13.5px;
    max-width: 30ch;
    color: var(--paper-text-70);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom span {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--paper-text-45);
}

.footer-bottom span a {
    color: var(--paper-text-70);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom span a:hover {
    color: var(--sun);
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .process-list {
        grid-template-columns: 1fr;
    }
    .diff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .testi-grid.testi-grid-wide {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .hero-meta {
        gap: 18px;
    }
    .sticker {
        display: none;
    }
    .diff-grid {
        grid-template-columns: 1fr;
    }
    .stat-row {
        grid-template-columns: 1fr;
    }
    .hero::before {
        width: 240px;
        height: 240px;
        top: -110px;
        right: -90px;
    }
    .hero::after {
        width: 150px;
        height: 150px;
        bottom: -70px;
        left: -50px;
    }
}


/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */

.page-header {
    background: var(--violet);
    color: var(--paper-text);
    padding: 64px 0 54px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--sun);
    opacity: 0.85;
    top: -190px;
    right: -90px;
}

.page-header::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.55;
    bottom: -140px;
    left: 8%;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--paper-text);
    margin-top: 14px;
    position: relative;
}

.page-header p {
    margin-top: 14px;
    color: var(--paper-text-70);
    max-width: 54ch;
    font-size: 15.5px;
    font-weight: 500;
    position: relative;
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--paper-text-45);
    position: relative;
}

.breadcrumb a:hover {
    color: var(--paper-text);
}

.breadcrumb .sep {
    margin: 0 8px;
}


/* ==========================================================================
   About page
   ========================================================================== */

.about-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.value-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    background: var(--paper-2);
}

.value-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--paper-text);
    background: var(--violet);
    padding: 4px 9px;
    border-radius: var(--r-pill);
    flex: none;
    height: fit-content;
}

.value-item h4 {
    font-size: 1rem;
    color: var(--ink-text);
}

.value-item p {
    margin-top: 6px;
    font-size: 14px;
    color: var(--ink-text-60);
    font-weight: 500;
}

.pull-quote {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    line-height: 1.45;
    color: var(--ink-text);
    border-left: 4px solid var(--coral);
    padding-left: 24px;
    margin: 30px 0;
}

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


/* ==========================================================================
   Services page
   ========================================================================== */

.service-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 2px dashed var(--line);
    align-items: start;
}

.service-block:last-child {
    border-bottom: none;
}

.service-index {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--paper-text);
    background: var(--ink);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    display: inline-block;
    margin-bottom: 14px;
}

.service-block:nth-of-type(1) .service-index {
    background: var(--coral-deep);
}

.service-block:nth-of-type(2) .service-index {
    background: var(--mint-deep);
}

.service-block h3 {
    font-size: clamp(1.5rem, 2.6vw, 1.9rem);
    color: var(--ink-text);
}

.service-block>div:first-child p {
    margin-top: 14px;
    color: var(--ink-text-60);
    font-size: 15px;
    font-weight: 500;
    max-width: 40ch;
}

.service-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-text);
    padding: 12px 14px;
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
}

.service-checklist svg {
    width: 16px;
    height: 16px;
    color: var(--mint-deep);
    flex: none;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .service-block {
        grid-template-columns: 1fr;
    }
    .service-checklist {
        grid-template-columns: 1fr;
    }
}

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

.model-card {
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: 5px 5px 0 0 var(--ink);
}

.model-card:nth-child(1) {
    background: var(--tint-coral);
}

.model-card:nth-child(2) {
    background: var(--tint-sun);
}

.model-card:nth-child(3) {
    background: var(--tint-mint);
}

.model-card .eyebrow {
    margin-bottom: 14px;
}

.model-card h4 {
    font-size: 1.1rem;
    color: var(--ink-text);
}

.model-card p {
    margin-top: 10px;
    font-size: 14px;
    color: var(--ink-text-60);
    font-weight: 500;
}

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


/* FAQ */

.faq-list {
    border-top: 2px dashed var(--line);
}

.faq-item {
    border-bottom: 2px dashed var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink-text);
}

.faq-q .plus {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--paper-text);
    background: var(--violet);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .2s ease;
    flex: none;
}

.faq-item.is-open .faq-q .plus {
    transform: rotate(45deg);
    background: var(--coral);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a p {
    padding-bottom: 24px;
    color: var(--ink-text-60);
    font-size: 14.5px;
    font-weight: 500;
    max-width: 62ch;
}

.faq-item.is-open .faq-a {
    max-height: 240px;
}


/* ==========================================================================
   Testimonials page extras
   ========================================================================== */

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 36px 0 4px;
}

.stat-item {
    text-align: left;
    background: rgba(255, 253, 249, 0.08);
    border-radius: var(--r-md);
    padding: 18px;
}

.stat-item .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--sun);
}

.stat-item .lbl {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--paper-text-70);
    margin-top: 6px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .stat-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 54px;
    align-items: start;
}

.contact-card {
    background: var(--violet);
    color: var(--paper-text);
    border-radius: var(--r-lg);
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 0 var(--ink);
    padding: 34px;
}

.contact-line {
    display: flex;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px dashed var(--line-dark);
}

.contact-line:last-child {
    border-bottom: none;
}

.contact-line svg {
    width: 18px;
    height: 18px;
    color: var(--sun);
    flex: none;
    margin-top: 2px;
}

.contact-line .lbl {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--paper-text-45);
}

.contact-line .val {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--paper-text);
    margin-top: 4px;
}

.form-card {
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-lg);
    box-shadow: 6px 6px 0 0 var(--ink);
    padding: clamp(28px, 4vw, 42px);
}

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

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-text-60);
    margin-bottom: 8px;
}

.field input,
.field textarea {
    width: 100%;
    border: 2px solid var(--ink);
    background: var(--paper);
    border-radius: var(--r-md);
    padding: 13px 14px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--ink-text);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: var(--paper-2);
    box-shadow: 3px 3px 0 0 var(--violet);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-note {
    font-size: 12.5px;
    color: var(--ink-text-40);
    margin-top: 14px;
    font-weight: 500;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--tint-mint);
    color: var(--mint-deep);
    border: 2px solid var(--mint-deep);
    border-radius: var(--r-md);
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 700;
    margin-top: 18px;
}

.form-success.is-visible {
    display: flex;
}

.form-success svg {
    width: 16px;
    height: 16px;
    flex: none;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.map-strip {
    margin-top: 24px;
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    background: var(--tint-sun);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink-text-60);
    font-size: 13.5px;
    font-weight: 600;
}

.map-strip svg {
    width: 18px;
    height: 18px;
    color: var(--coral-deep);
    flex: none;
}


/* ==========================================================================
   New content components: recruitment tags, pricing USP, plan cards,
   positions-filled cloud, Return on Offer card
   ========================================================================== */

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag-chip {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-text);
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    padding: 7px 16px;
}

.tag-label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--ink-text-40);
    margin-top: 22px;
    display: block;
}

.usp-banner {
    border: 3px solid var(--ink);
    border-radius: var(--r-lg);
    background: var(--violet);
    box-shadow: 8px 8px 0 0 var(--ink);
    padding: 40px clamp(24px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.usp-banner h2,
.usp-banner h3 {
    color: var(--paper-text);
}

.usp-banner p {
    color: var(--paper-text-70);
    margin-top: 10px;
    font-weight: 600;
    max-width: 52ch;
}

.usp-banner .badge-cross {
    text-decoration: line-through;
    opacity: .6;
}

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

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

.plan-card {
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    box-shadow: 5px 5px 0 0 var(--ink);
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card.is-popular {
    border-color: var(--violet);
    box-shadow: 5px 5px 0 0 var(--violet);
}

.plan-card .plan-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    background: var(--violet);
    color: var(--paper-text);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--r-pill);
}

.plan-card h4 {
    font-size: 1.2rem;
    color: var(--ink-text);
    margin-top: 6px;
}

.plan-card .plan-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--violet-deep);
    margin-top: 12px;
}

.plan-card .plan-price small {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-text-40);
    display: block;
    margin-top: 4px;
}

.plan-card p.plan-desc {
    margin-top: 10px;
    font-size: 14px;
    color: var(--ink-text-60);
    font-weight: 500;
}

.plan-card ul {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.plan-card ul li {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-text);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.plan-card ul li svg {
    width: 15px;
    height: 15px;
    color: var(--mint-deep);
    flex: none;
    margin-top: 2px;
}

.plan-card .btn {
    margin-top: 22px;
    width: 100%;
    justify-content: center;
}

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

.roles-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.role-chip {
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-text);
}

.role-chip .role-cat {
    display: block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--violet-deep);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 3px;
}

.roo-card {
    border: 2px solid var(--ink);
    border-radius: var(--r-lg);
    background: var(--tint-coral);
    padding: 28px clamp(20px, 3vw, 36px);
    box-shadow: 5px 5px 0 0 var(--ink);
}

.roo-card h3 {
    font-size: 1.3rem;
    color: var(--ink-text);
}

.roo-card p {
    margin-top: 10px;
    color: var(--ink-text-60);
    font-weight: 500;
    font-size: 14.5px;
}

.roo-card .roo-note {
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--coral-deep);
    display: inline-block;
}

.plan-price-note {
    font-family: var(--font-mono);
    color: var(--ink-text-40);
}


/* ==========================================================================
   Careers / current openings page
   ========================================================================== */

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    border: 2px solid var(--ink);
    border-radius: var(--r-lg);
    background: var(--paper-2);
    box-shadow: 5px 5px 0 0 var(--ink);
    overflow: hidden;
}

.job-item+.job-item {
    margin-top: 0;
}

.job-q {
    list-style: none;
    cursor: pointer;
    padding: 22px clamp(18px, 3vw, 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.job-q::-webkit-details-marker {
    display: none;
}

.job-q-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.job-q-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
}

.job-q-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink-text);
}

.job-q-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-text-60);
}

.job-q-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.job-type-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    flex: none;
    background: var(--tint-mint);
    color: var(--mint-deep);
    border: 1.5px solid var(--mint-deep);
    white-space: nowrap;
}

.job-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-text);
    transition: transform .2s ease, background .2s ease;
}

.job-item[open] .job-plus {
    transform: rotate(45deg);
    background: var(--coral);
    border-color: var(--coral-deep);
    color: var(--paper-text);
}

.job-body {
    padding: 0 clamp(18px, 3vw, 30px) 30px;
    border-top: 2px dashed var(--line);
}

.job-body-inner {
    padding-top: 22px;
}

.job-body h4 {
    font-size: 1rem;
    color: var(--ink-text);
    margin-top: 22px;
}

.job-body h4:first-child {
    margin-top: 0;
}

.job-body p {
    margin-top: 10px;
    font-size: 14.5px;
    color: var(--ink-text-60);
    font-weight: 500;
    line-height: 1.6;
}

.job-body ul {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-body ul li {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-text);
    display: flex;
    gap: 9px;
    align-items: flex-start;
    line-height: 1.5;
}

.job-body ul li svg {
    width: 15px;
    height: 15px;
    color: var(--mint-deep);
    flex: none;
    margin-top: 3px;
}

.job-note {
    margin-top: 20px;
    border: 1.5px dashed var(--coral-deep);
    background: var(--tint-coral);
    border-radius: var(--r-md);
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--coral-deep);
}

.job-note p {
    color: var(--coral-deep);
    font-size: 13px;
    margin-top: 4px;
}

.job-note p:first-child {
    margin-top: 0;
}

.job-apply {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.job-apply .btn {
    width: auto;
}

.job-apply-note {
    font-size: 13px;
    color: var(--ink-text-40);
    font-weight: 600;
}

@media (max-width: 640px) {
    .job-q-title {
        font-size: 1.02rem;
    }
}


/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0 0 var(--ink);
    z-index: 60;
    transition: transform .15s ease, box-shadow .15s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 0 var(--ink);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}