:root {
    --bg: #0A0A0A;
    --surface: #171717;
    --primary: #FFFFFF;
    --accent: #4F46E5;
    --accent-hover: #6366F1;
    --text: #FAFAFA;
    --text-secondary: #A1A1AA;
    --border: #262626;
    --shadow: 0 22px 70px rgba(0, 0, 0, .45);
    --radius: 24px;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6
}

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

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

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

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

.nav-wrap {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: height .25s ease;
}

/* Section dividers */
.section-divider{width:100%;overflow:hidden;line-height:0}
.section-divider svg{display:block;width:100%;height:60px}
.section-divider.wave svg{height:72px}
.section-divider.diagonal svg{height:44px}

/* CTA banner */
.cta-banner{padding:44px 0;background:linear-gradient(90deg,rgba(79,70,229,.12),rgba(255,255,255,.02));margin-top:28px;border-top:1px solid rgba(255,255,255,.02)}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:24px}
.cta-inner h2{margin:0;font-size:1.6rem}
.cta-inner .lead{margin:6px 0 0;color:var(--text-secondary)}
.cta-actions{display:flex;gap:14px}

@media (max-width:900px){.cta-inner{flex-direction:column;align-items:flex-start}.cta-actions{width:100%}.cta-actions .btn{width:100%}}

/* Heading accent animation */
.section-head h2{position:relative;overflow:visible}
.section-head h2::after{content:"";position:absolute;left:0;bottom:-8px;height:4px;width:48px;background:linear-gradient(90deg,var(--accent),#8b5cf6);border-radius:4px;transform:scaleX(0);transform-origin:left;transition:transform .45s cubic-bezier(.2,.9,.2,1)}
.section-head:hover h2::after{transform:scaleX(1)}

/* Card tilt base transform */
.card{transform-style:preserve-3d;will-change:transform}

.logo {
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-mark {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    background: transparent;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    overflow: visible;
    position: relative;
    padding: 2px;
    transition: transform .25s ease;
}

.logo-mark{font-size:28px}

.logo-mark::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 8px;
    pointer-events: none;
}

.logo-mark svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    stroke: currentColor;
    stroke-width: 2.1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

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

.logo:hover .logo-mark {
    transform: translateY(-3px) scale(1.02)
}

/* footer uses a slightly smaller mark for balance */
.site-footer .logo-mark {
    width: 72px;
    height: 72px
}

@media (max-width:1024px) {
    .nav-wrap {
        height: 86px
    }
}

@media (max-width:767px) {
    .logo-mark {
        width: 64px;
        height: 64px
    }

    .site-footer .logo-mark {
        width: 48px;
        height: 48px
    }

    .logo-text {
        display: none
    }

    .nav-wrap {
        height: 72px
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-left: 12px
}

.brand-top {
    font-weight: 900;
    letter-spacing: .08em
}

.brand-sub {
    font-size: .75rem;
    color: var(--accent);
    letter-spacing: .14em
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--text-secondary);
    font-size: .95rem
}

.nav-links a {
    position: relative;
    transition: color .25s ease
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease
}

.nav-links a:hover {
    color: var(--primary)
}

.nav-links a:hover::after {
    transform: scaleX(1)
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 20px;
    border: 1px solid var(--border);
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden
}

.nav-cta::before,
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: translateX(-100%);
    transition: transform .55s ease
}

.nav-cta:hover::before,
.btn:hover::before {
    transform: translateX(100%)
}

.btn-primary,
.nav-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.btn-primary:hover,
.nav-cta:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 35px rgba(79, 70, 229, .35)
}

.btn-secondary {
    background: rgba(255, 255, 255, .04);
    color: var(--primary)
}

.btn-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, .18)
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    padding: 9px
}

.menu-toggle svg,
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.hero {
    padding: 84px 0 64px;
    background: radial-gradient(circle at top left, rgba(79, 70, 229, .28), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, .03), transparent)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 48px;
    align-items: center
}

.eyebrow {
    color: #c7c2ff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 900
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: 1.02;
    margin: 14px 0 20px;
    letter-spacing: -.055em
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--text-secondary);
    max-width: 720px
}

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

.hero-media {
    position: relative
}

.hero-media img,
.section-image,
.card img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    object-fit: cover
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px
}

.trust-item,
.achievement,
.step,
.card,
.faq-item,
.contact-card,
.terms-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px
}

.trust-item strong,
.achievement strong {
    font-size: 1.4rem;
    display: block;
    color: #fff
}

.trust-item span,
.achievement span {
    color: var(--text-secondary);
    font-size: .92rem
}

section {
    padding: 78px 0
}

.services {
    position: relative;
    background: radial-gradient(circle at top left, rgba(79, 70, 229, .18), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, .035), transparent)
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent);
    pointer-events: none
}

.industries {
    position: relative;
    background: linear-gradient(135deg, rgba(79, 70, 229, .14), rgba(255, 255, 255, .02))
}

.industries .step {
    min-height: 220px;
    position: relative;
    overflow: hidden;
    background: rgba(10, 10, 10, .56);
    border: 1px solid rgba(255, 255, 255, .08)
}

.industries .step::after {
    content: "";
    position: absolute;
    inset: auto -24px -24px auto;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(99, 102, 241, .28), transparent 70%)
}

.process {
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03))
}

.process .grid-4 {
    counter-reset: step
}

.process .step {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding-top: 28px
}

.process .step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 1.05rem;
    font-weight: 900;
    color: rgba(199, 194, 255, .9)
}

.process .step::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent)
}

.results {
    position: relative;
    background: linear-gradient(180deg, rgba(79, 70, 229, .16), rgba(255, 255, 255, .02))
}

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

.results .card img {
    border-radius: 24px 24px 0 0;
    aspect-ratio: 16 / 10
}

.results .card-body {
    position: relative
}

.results .card-body::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent)
}

.testimonials {
    background: radial-gradient(circle at top right, rgba(79, 70, 229, .18), transparent 30%)
}

.section-quiet {
    background: transparent
}

.section-contrast {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(79, 70, 229, .08))
}

.section-editorial .card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    box-shadow: 0 24px 55px rgba(0, 0, 0, .22)
}

.achievements-section .achievement {
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    border-color: rgba(255, 255, 255, .12)
}

.testimonial {
    position: relative;
    min-height: 220px;
    overflow: hidden
}

.testimonial::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 3rem;
    color: rgba(255, 255, 255, .12);
    line-height: 1
}

.about {
    background: linear-gradient(135deg, rgba(255, 255, 255, .025), rgba(79, 70, 229, .08))
}

.about .split {
    gap: 38px
}

.about .section-image {
    border-radius: 28px;
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25)
}

.faq {
    background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent)
}

.faq .faq-item {
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, .025)
}

.contact-section {
    background: linear-gradient(135deg, rgba(79, 70, 229, .22), rgba(255, 255, 255, .03))
}

.contact-form {
    box-shadow: var(--shadow)
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px
}

.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    line-height: 1.1;
    margin: 10px 0 14px;
    letter-spacing: -.04em
}

.section-head p,
.card p,
.step p,
.faq-item p,
.terms-card p,
.terms-card li {
    color: var(--text-secondary)
}

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

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

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

.card {
    overflow: hidden;
    padding: 0
}

.card-body {
    padding: 22px
}

.card h3,
.step h3,
.faq-item h3,
.contact-card h3 {
    margin: 0 0 10px;
    font-size: 1.22rem
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(79, 70, 229, .16);
    color: #c7c2ff;
    display: grid;
    place-items: center;
    margin-bottom: 18px
}

.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: center
}

.case-meta {
    font-size: .82rem;
    color: #c7c2ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.result {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(79, 70, 229, .16);
    color: #fff;
    font-weight: 800
}

.testimonial {
    padding: 24px
}

.quote {
    font-size: 1.02rem;
    color: #e5e5e5
}

.person {
    margin-top: 18px;
    color: #fff;
    font-weight: 800
}

.position {
    color: var(--text-secondary);
    font-size: .93rem
}

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

.blog-date {
    color: #c7c2ff;
    font-size: .9rem;
    font-weight: 800
}

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

.contact-section {
    background: linear-gradient(180deg, transparent, rgba(79, 70, 229, .12))
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px
}

.contact-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px
}

.field label {
    font-weight: 800
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #0f0f0f;
    color: #fff;
    padding: 14px 15px;
    font: inherit
}

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

.site-footer {
    border-top: 1px solid var(--border);
    padding: 36px 0;
    background: #070707
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr;
    gap: 24px;
    color: var(--text-secondary)
}

.footer-grid strong {
    color: #fff
}

.footer-links {
    display: grid;
    gap: 10px
}

.page-hero {
    padding: 74px 0 30px
}

.terms-content {
    padding: 30px 0 76px
}

.terms-card {
    margin-bottom: 18px
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.cookie-banner p {
    margin: 0;
    color: var(--text-secondary)
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.small-btn {
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: #101010;
    color: #fff;
    font-weight: 800;
    cursor: pointer
}

.small-btn.accept {
    background: var(--accent);
    border-color: var(--accent)
}

@media (max-width:1024px) {

    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .hero {
        padding-top: 62px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

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

@media (max-width:767px) {
    .container {
        width: min(100% - 28px, var(--max))
    }

    .menu-toggle {
        display: grid
    }

    .nav-links {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 76px;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 10px
    }

    .nav-links.open {
        display: grid
    }

    .nav-links a {
        padding: 12px;
        border-radius: 12px
    }

    .nav-cta {
        display: none
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.45rem
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .grid-3,
    .grid-4,
    .grid-2,
    .faq-list,
    .achievements,
    .trust-row,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr
    }

    section {
        padding: 58px 0
    }

    .cookie-banner {
        display: none;
        flex-direction: column;
        align-items: flex-start
    }

    .cookie-actions {
        width: 100%
    }

    .small-btn {
        flex: 1
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .nav-links {
        gap: 14px;
        font-size: .88rem
    }

    .nav-cta {
        padding: 11px 15px
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .services .grid-3,
    .industries .grid-3,
    .blog .grid-3 {
        grid-template-columns: repeat(2, 1fr)
    }
}

.hero-copy {
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .05);
    border-radius: 999px;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ddd;
    margin-bottom: 20px;
    backdrop-filter: blur(16px)
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center
}

.hero-media-card {
    position: relative;
    border-radius: 30px;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: float 8s ease-in-out infinite;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.hero-media-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
    border-color: rgba(255, 255, 255, .2)
}

.hero-media-card img {
    border-radius: 22px;
    min-height: 360px;
    object-fit: cover
}

.floating-chip {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(10, 10, 10, .76);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #f4efff;
    backdrop-filter: blur(10px)
}

.approach {
    padding: 16px 0 72px
}

.approach-shell {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(79, 70, 229, .14));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.approach-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, .12), transparent 34%);
    pointer-events: none
}

.approach-copy {
    position: relative;
    z-index: 2
}

.feature-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 24px;
    list-style: none
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #e5e7eb
}

.feature-list li::before {
    content: "✦";
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px
}

.approach-visual {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: .85;
    animation: drift 10s ease-in-out infinite
}

.orb-one {
    width: 180px;
    height: 180px;
    top: 10px;
    right: 40px;
    background: rgba(99, 102, 241, .35)
}

.orb-two {
    width: 140px;
    height: 140px;
    bottom: 15px;
    left: 26px;
    background: rgba(255, 255, 255, .1);
    animation-delay: -3s
}

.panel {
    position: relative;
    z-index: 2;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(10, 10, 10, .72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28)
}

.panel-main {
    width: min(100%, 420px);
    padding: 18px
}

.panel-side {
    position: absolute;
    right: -8px;
    bottom: 8px;
    padding: 16px 18px;
    max-width: 220px
}

.panel-side p {
    margin: 0 0 6px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #cbd5e1
}

.panel-side strong {
    font-size: 1.05rem;
    line-height: 1.4
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px
}

.pill-row span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #e2e8f0
}

.progress-track {
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
    margin-bottom: 16px
}

.progress-track span {
    display: block;
    width: 74%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #8b5cf6);
    animation: progress 2.8s ease-in-out infinite alternate
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px
}

.mini-grid div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08)
}

.mini-grid strong {
    display: block;
    font-size: .95rem;
    margin-bottom: 3px
}

.mini-grid span {
    font-size: .8rem;
    color: #a1a1aa
}

.card,
.step,
.testimonial,
.faq-item,
.contact-card,
.achievement,
.trust-item,
.hero-copy,
.hero-media-card,
.approach-shell {
    transition: transform .35s ease, box-shadow .35s ease, opacity .6s ease
}

.card:hover,
.step:hover,
.testimonial:hover,
.contact-card:hover,
.achievement:hover,
.hero-media-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
    border-color: rgba(255, 255, 255, .16)
}

.reveal {
    opacity: 0;
    transform: translateY(24px)
}

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes drift {

    0%,
    100% {
        transform: translate3d(0, 0, 0)
    }

    50% {
        transform: translate3d(10px, -12px, 0)
    }
}

@keyframes progress {
    0% {
        transform: translateX(-8%)
    }

    100% {
        transform: translateX(28%)
    }
}

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

    .approach-visual {
        min-height: 360px
    }

    .panel-side {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        max-width: none
    }
}