/* ==========================================================================
   APP BLOCKS
========================================================================== */
#app {
    max-width: 1600px;
    margin: 0 auto;
}

/* --- APP RESPONSIVE --- */
@media (max-width: 1640px) {
    #app {
        margin: 0 20px;
    }
}
@media (max-width: 1640px) {

}

/* ==========================================================================
   SITE HEADER
========================================================================== */
.site-header {
    display: flex;
    padding: 10px 50px;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px 20px;
    position: relative;
    isolation: isolate;
    margin: 0 auto;
}
.header-logo {
    flex-grow: 1;
    flex-shrink: 1;
    align-self: center; 
}
.header-logo img {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}
.header-desktop-login {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    align-self: center; 
    justify-content: flex-end;
    gap: 32px;
}
.mobile-menu-toggle {
    display: none;
}

/* --- HEADER NAVIGATION --- */
.header-desktop-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-grow: 4;
    flex-shrink: 2;
    align-self: center; 
    width:100%;
}
.header-menu{
    display:flex;
    align-items:center;
    gap:72px;
    margin:0;
    padding:0;
    list-style:none;
}
.header-menu li{
    margin:0;
    padding:0;
}
.header-menu a{
    position:relative;
    display:inline-block;
    color:var(--color-text);
    text-decoration:none;
    font-family:var(--font-main);
    font-size:17px;
    font-weight:500;
    letter-spacing:-0.01em;
    opacity:.88;
    transition:
        color .18s ease,
        opacity .18s ease;
}
.header-menu a:hover{
    color:#ffffff;
    opacity:1;
}
.header-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:var(--color-acid);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .22s ease;
}
.header-menu a:hover::after{
    transform:scaleX(1);
}

/* --- HEADER RESPONSIVE --- */
@media (max-width: 1280px) {
    .site-header {
        padding: 12px 32px;
        gap: 14px 24px;
    }
    .header-logo {
        flex: 0 1 220px;
    }
    .header-logo img {
        max-width: 220px;
    }
    .header-desktop-nav {
        flex-grow: 2;
    }
    .header-menu {
        gap: clamp(22px, 3vw, 46px);
    }
    .header-desktop-login {
        flex: 0 1 auto;
        gap: 14px;
    }
    .header-desktop-login .btn {
        min-width: 118px;
        height: 44px;
        padding-inline: 1.1rem;
        font-size: 15px;
    }
}

@media (max-width: 1040px) {
    .site-header {
        flex-wrap: wrap;
        align-items: center;
        padding: 14px 28px 18px;
    }
    .header-logo {
        order: 1;
        flex: 1 1 180px;
    }
    .header-logo img {
        margin-left: 0;
        margin-right: 0;
    }
    .header-desktop-login {
        order: 2;
        flex: 0 1 auto;
    }
    .header-desktop-nav {
        order: 3;
        flex: 1 0 100%;
    }
    .header-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 34px;
    }
    .header-menu a {
        padding-block: 6px;
        font-size: 16px;
    }
    .header-menu a::after {
        bottom: 0;
    }
}

@media (max-width: 680px) {
    #app {
        margin: 0;
    }
    .site-header {
        padding: 14px 18px 18px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
    }
    .header-logo {
        order: 1;
        flex: 1 1 auto;
        width: auto;
    }
    .header-logo img {
        max-width: min(220px, 70vw);
        margin-left: 0;
        margin-right: 0;
    }
    .mobile-menu-toggle {
        order: 2;
        position: absolute;
        top: 14px;
        right: auto;
        left: calc(100vw - 62px);
     /*   transform: translateX(-64px); */
        z-index: 30;
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 1px solid rgba(255, 0, 136, .62);
        border-radius: var(--radius-ss);
        background: rgba(5, 5, 7, .72);
        box-shadow: 0 0 18px rgba(255, 0, 136, .12);
    }
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: var(--color-text);
        transition:
            transform .2s ease,
            opacity .2s ease,
            background .2s ease;
    }
    .site-header.is-menu-open .mobile-menu-toggle span {
        background: var(--color-acid);
    }
    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .header-desktop-nav {
        order: 3;
        width: 100%;
        display: none;
    }
    .header-menu {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }
    .header-menu a {
        width: 100%;
        padding: 10px 8px;
        text-align: center;
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: var(--radius-ss);
        background: rgba(255, 255, 255, .025);
    }
    .header-menu a::after {
        display: none;
    }
    .header-desktop-login {
        order: 4;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .site-header.is-menu-open .header-desktop-nav {
        display: flex;
    }
    .site-header.is-menu-open .header-desktop-login {
        display: grid;
    }
    .header-desktop-login .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .site-header {
        padding-inline: 12px;
    }
    .mobile-menu-toggle {
        left: calc(100vw - 56px);
        transform: translateX(-56px);
    }
}

/* ==========================================================================
   SITE MAIN BLOCKS
========================================================================== */
.site-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.site-main>section {
/*    display: flex; 
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px; 
    position: relative;
    isolation: isolate; */
}

/* ==========================================================================
   HERO SECTION
========================================================================== */
.hero-section {
    display: grid;
    position: relative;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(48px, 6vw, 100px);
    width: 100%;
    margin: 0 auto;
    isolation: isolate;
    overflow: hidden;
    padding: 10px 50px;
    border-radius:var(--radius-md);
    border:0px solid rgba(255,0,136,.12);
    background:#09090b;
}
.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("../img/hero/background.webp");
    background-position:right top;
    background-repeat:no-repeat;
    background-size:cover;
    opacity:.82;
    z-index:-2;
}
.hero-left {
    display: flex;
    flex: 1 1 52%;
    width: 100%;
    min-width: 0;
    align-self: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 0px;
    padding: 50px 0;
}
.hero-left::before {
    content:"";
    position:absolute;
    inset:0;
    background-image:url("../img/hero/ba-left.png");
    background-position:left top;
    background-repeat:no-repeat;
    background-size:auto;
    opacity:.52;
    z-index:-2;
}
.h-l-l1 {
    padding-left: 25px;
}
.h-l-l1 img {
    display: inline-block;
    width: 16px;
    height: auto;
}
.h-l-l1 span {
    font-size:inherit;
    vertical-align:top;
    text-transform:uppercase;
    margin-left: 10px;
}
.h-l-l2 img {
    width:100%;
    margin-left: -60px;
}
.h-l-l3 p {
    width:100%;
    padding-top: 1em;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: center;
    gap: 42px;
    margin-top: 52px;
}
.hero-stat {
    display: grid;
    grid-template-columns: 42px auto;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
}
.hero-stat-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hero-stat-value {
    grid-column: 2;
    grid-row: 1;
    color: var(--color-white, #fff);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}
.hero-stat-label {
    grid-column: 2;
    grid-row: 2;
    color: var(--color-text-soft, #c8c8d0);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    margin-top: 6px;
}
.hero-right {
    flex: 1 1 48%;
    min-width: 0;
    align-self: self-start;
    padding: 40px 0;
    display: flex;
    justify-content: flex-end;
}
.hero-dashboard {
    position: relative;
    display: block;
    width: 100%;
    max-width: 920px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.hero-dashboard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 0, 136, .85),
            rgba(255, 0, 136, .22) 46%,
            rgba(223, 255, 0, .20) 100%
        );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.hero-dashboard::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: var(--radius-md);
    box-shadow: 
        0 0 6px rgba(255, 0, 136, .34), 
        0 0 12px rgba(255, 0, 136, .18), 
        0 0 26px rgba(255, 0, 136, .09);
    pointer-events: none;
    z-index: 1;
}
.hero-dashboard img {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
}

/* --- HERO RESPONSIVE --- */
@media (max-width: 980px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 38px 36px 44px;
    }
    .hero-left {
        padding: 0;
    }
    .h-l-l1 {
        padding-left: 0;
    }
    .h-l-l2 img {
        width: min(640px, 100%);
        margin-left: 0;
    }
    .hero-right {
        width: 100%;
        padding: 0;
        justify-content: center;
        align-self: stretch;
    }
    .hero-dashboard {
        max-width: 720px;
    }
}
.hero-left-line {
    min-width: 0;
}
.hero-info-link {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 8px;

    color: var(--color-acid);
    border: 1px solid rgba(223, 255, 0, .65);
    border-radius: 50%;

    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;

    box-shadow:
        0 0 14px rgba(223, 255, 0, .22);

    transition:
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.hero-info-link:hover {
    transform: translateY(-1px);
    color: #050507;
    background: var(--color-acid);
    border-color: var(--color-acid);

    box-shadow:
        0 0 20px rgba(223, 255, 0, .42);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 32px 22px 40px;
        gap: 32px;
        justify-items: center;
    }
    .hero-left {
        width: 100%;
        align-items: stretch;
    }
    .h-l-l1 {
        display: flex;
        align-items: flex-start;
        justify-content: left;
        text-align: left;
    }
    .h-l-l2 img {
        width: min(100%, 420px);
        margin-inline: auto;
    }
    .h-l-l3 p {
        max-width: 34rem;
        margin-inline: auto;
        text-align: center;
    }
    .hero-stats {
        position: relative;
        isolation: isolate;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
        width: min(340px, 100%);
        margin-inline: auto;
        margin-top: 40px;
    }
    .hero-stats::before {
        content: "";
        position: absolute;
        top: -10px;
        bottom: -10px;
        left: 50%;
        width: 42px;
        background: rgba(5, 5, 7, 0.78);
        transform: translateX(-50%);
        pointer-events: none;
        z-index: -1;
    }

    .hero-stat {
        grid-template-columns: 38px auto;
        column-gap: 12px;
    }

    .hero-stat-icon {
        width: 38px;
        height: 38px;
    }

    .hero-stat-value {
        font-size: 1.65rem;
    }

    .hero-stat-label {
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 28px 16px 36px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
        width: 100%;
    }
    .hero-dashboard {
        width: 100%;
        /* max-width: 360px; */
    }
}

@media (max-width: 560px) {
    .hero-section {
        padding-inline: 16px;
    }
    .h-l-l2 img {
        width: min(100%, 340px);
    }
    .h-l-l3 p {
        max-width: 320px;
    }
    .hero-dashboard {
        /* max-width: 320px; */
    }
}

/* ==========================================================================
   FEATURE SECTION
========================================================================== */
.feature-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    padding: 10px 50px;
    grid-template-columns: 2fr repeat(5, 1fr);
    width: 100%;
    margin: 0 auto;
    border-radius:var(--radius-md);
    border-top: 1px solid rgba(255, 0, 136, .22); 
    border-bottom: 1px solid rgba(255, 0, 136, .22); 
}
.feature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/feature/bg.webp);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .52;
    z-index: -2;
    border-radius: var(--radius-md);
 }
.feature-cell {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-cell:first-child {
    border-left: 0;
}
.feature-cell h3 {
    margin: 0 0 14px;
    color: var(--color-text);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
}
.feature-cell p {
    max-width: 230px;
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.45;
    margin: 0 auto;
    text-align: center;
}
.feature-cell-brand {
    align-items: flex-start;
    padding: 0 0;
}
.feature-cell-brand img {
    margin-left: auto;
    margin-right: auto;
    height: auto;
}
.feature-icon {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FEATURE RESPONSIVE --- */
@media (max-width: 768px) {
    .feature-section {
        grid-template-columns: 1fr;
    }
    .feature-cell {
        min-height: 170px;
        padding: 32px 24px;
        border-left: 0;
        border-top: 1px solid rgba(255, 0, 136, .24);
    }
    .feature-cell:first-child {
        border-top: 0;
    }
    .feature-cell-brand {
        align-items: center;
        text-align: center;
    }
    .feature-cell-brand img {
        width: min(320px, 85vw);
    }
    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
}


/* ==========================================================================
   PROBLEM SECTION
========================================================================== */
.problem-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 34px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 50px;
}
/* --- LEFT --- */
.problem-left {
    display: flex;
    flex: 1 1 40%;
    order: 1;
    min-width: 0;
    align-self: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 0px;
    
}
.problem-left-in {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 560px;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;

    color: var(--color-pink);
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.section-kicker img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.problem-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -0.001em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.10), 
                 0 0 38px rgba(255, 255, 255, 0.04);
}
.problem-wordmark {
    margin-top: 22px;
    margin-bottom: 30px;
}
.problem-wordmark img {
    display: block;

    width: min(540px, 100%);
    height: auto;
}
.problem-description {
    max-width: 520px;

    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.55;
}

/* --- RIGHT --- */
.problem-right {
    flex: 1 1 60%;
    order: 2;
    min-width: 0;
    align-self: self-start;
    
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}
.problem-card {
    min-height: 180px;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(255, 0, 136, 0.55);
    border-radius: var(--radius-ss);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        ),
        rgba(8, 8, 12, 0.72);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 0 22px rgba(255, 0, 136, 0.08);
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        transform .22s ease,
        background .22s ease;
}
.problem-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 136, 0.85);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        0 0 28px rgba(255, 0, 136, 0.20);
}
.problem-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.problem-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.problem-card h3 {
    margin: 0 0 14px;
    color: var(--color-text);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.problem-card p {
    margin: 0;
    max-width: 240px;
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.45;
}


/* --- PROBLEM RESPONSIVE --- */
@media (max-width: 768px) {
    .problem-left {
        max-width: 100%;
    }

    .section-kicker {
        margin-bottom: 22px;
        font-size: 0.76rem;
    }

    .section-kicker img {
        width: 18px;
        height: 18px;
    }

    .problem-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }

    .problem-wordmark {
        margin-top: 18px;
        margin-bottom: 24px;
    }

    .problem-description {
        font-size: 1rem;
    }
}

/* Tablet: 2 columns × 3 rows */
@media (max-width: 1100px) {
    .problem-section {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 64px 44px;
    }
    .problem-left-in {
        max-width: 720px;
    }
    .problem-right {
        justify-content: stretch;
    }
    .problem-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .problem-card {
        min-height: 165px;
        padding: 24px 26px;
    }
}
/* Mobile: 1 column × 6 rows */
@media (max-width: 640px) {
    .problem-section {
        padding: 54px 22px;
        gap: 36px;
    }
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .problem-card {
        min-height: 150px;
        padding: 22px 22px;
    }
    .problem-card-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 18px;
    }
    .problem-card h3 {
        font-size: 0.95rem;
    }
    .problem-card p {
        font-size: 0.92rem;
    }
}

/* ==========================================================================
   WORKFLOW SECTION
========================================================================== */
.workflow-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;

    width: 100%;
    margin: 0 auto;
    padding: 48px 50px;
    border-radius:var(--radius-md);
    border-top: 1px solid rgba(255, 0, 136, 0.22);
    border-bottom: 1px solid rgba(255, 0, 136, 0.22);
    border-left: 1px solid rgba(255, 0, 136, 0.1);
    border-right: 1px solid rgba(255, 0, 136, 0.1);
}

.workflow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background-image: url("../img/workflow/workflow-bg.webp");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0.6;
    z-index: -2;

 }

/* --- LEFT --- */
.workflow-left {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.7fr);
    align-items: center;
    gap: 16px;

    min-height: 420px;
    padding: 0;
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-md);
}

.workflow-left-content {
    position: relative;
    z-index: 1;
}

.workflow-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--color-pink);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.workflow-kicker img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.workflow-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -0.001em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.10), 
                 0 0 38px rgba(255, 255, 255, 0.04);
}
.workflow-wordmark {
    margin-top: 0px;
    margin-bottom: 0px;
}
.workflow-wordmark img {
    display: block;
    width: min(360px, 100%);
    height: auto;
}
.workflow-description {
    max-width: 440px;

    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.05vw, 1.15rem);
    line-height: 1.55;
}
.workflow-steps-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.workflow-steps-image img {
    display: block;
    width: min(220px, 100%);
    height: auto;
    mix-blend-mode: lighten;
}

/* --- RIGHT --- */
.workflow-right {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;    
    min-height: 420px;
    min-width: 0;
    padding: 0; 
    border-radius: var(--radius-md);
}
.workflow-panel {
    position: relative;
    width: 100%;
    max-width: 690px;
    border-radius: var(--radius-md);
}
.workflow-panel:hover {
    box-shadow:
        0 0 16px rgba(255, 0, 136, 0.30),
        0 0 42px rgba(255, 0, 136, 0.18),
        0 0 80px rgba(255, 0, 136, 0.08);
}
.workflow-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 0, 136, .85),
            rgba(255, 0, 136, .22) 46%,
            rgba(223, 255, 0, .20) 100%
        );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.workflow-panel::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: var(--radius-md);
    box-shadow: 
        0 0 6px rgba(255, 0, 136, .34), 
        0 0 12px rgba(255, 0, 136, .18), 
        0 0 26px rgba(255, 0, 136, .09);
    pointer-events: none;
    z-index: 1;
}
.workflow-panel img {
    position: relative;
    z-index: 0;

    display: block;
    width: 100%;
    height: auto;

    border-radius: var(--radius-md);
}

/* --- WORKFLOW RESPONSIVE --- */
@media (max-width: 1200px) {
    .workflow-section {
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
        padding: 48px 44px;
    }
    .workflow-left {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
    }
    .workflow-right {
        min-height: auto;
    }
    .workflow-panel {
        max-width: 820px;
    }
}
@media (max-width: 760px) {
    .workflow-section::before {
        background-image: none;
    }
    .workflow-section {
        padding: 38px 18px;
        gap: 22px;
    }
    .workflow-left {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 34px 22px;
        gap: 34px;
    }
    .workflow-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    .workflow-wordmark img {
        width: min(360px, 100%);
    }
    .workflow-steps-image {
        justify-content: flex-start;
    }
    .workflow-steps-image img {
        width: min(320px, 100%);
    }
    .workflow-right {
        padding: 24px 14px;
        min-height: auto;
    }
    .workflow-panel {
        max-width: 100%;
    }
}

/*==============================================================================
    CONTRACT SECTION
==============================================================================*/
.contract-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(48px, 6vw, 100px);
    width: 100%;
    margin: 0 auto;
    padding: 86px 60px;
    border-radius: var(--radius-md);
    border-top: 1px solid rgba(255, 0, 136, .22);
    border-bottom: 1px solid rgba(255, 0, 136, .22);
    background: #050507;
}
.contract-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/contract/contract-bg.webp");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .6;
    z-index: -2;
}
/* --- LEFT SIDE --- */
.contract-left {
    max-width: 680px;
    position: relative;
    z-index: 1;
}
.contract-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--color-acid);
    font-size: .88rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.contract-kicker img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.contract-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -0.001em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.10), 0 0 38px rgba(255, 255, 255, 0.04);
}
.contract-wordmark {
    margin-top: 20px;
    margin-bottom: 34px;
}
.contract-wordmark img {
    display: block;
    width: min(680px, 100%);
    height: auto;
}
.contract-description {
    max-width: 560px;
    color: var(--color-text-soft);
    font-size: clamp(1.1rem, 1.35vw, 1.45rem);
    line-height: 1.55;
}


/* --- BULLETS --- */
.contract-points {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 36px;
    padding: 0;
    list-style: none;
}
.contract-points li {
    position: relative;
    padding-left: 42px;
    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.35;
}
.contract-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050507;
    background: var(--color-acid);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
    box-shadow:
        0 0 16px rgba(223, 255, 0, .35);
}


/* --- RIGHT SIDE --- */
.contract-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contract-panel {
    position: relative;
    width: 100%;
    max-width: 850px;
    border-radius: var(--radius-md);
}
.contract-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 0, 136, .85),
            rgba(255, 0, 136, .22) 46%,
            rgba(223, 255, 0, .20) 100%
        );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.contract-panel::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: var(--radius-md);
    box-shadow: 
        0 0 6px rgba(255, 0, 136, .34), 
        0 0 12px rgba(255, 0, 136, .18), 
        0 0 26px rgba(255, 0, 136, .09);
    pointer-events: none;
    z-index: 1;
}
.contract-panel img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* --- Contract responsive --- */
@media (max-width: 1200px) {
    .contract-section {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 72px 44px;
    }
    .contract-left {
        max-width: 760px;
    }
    .contract-panel {
        max-width: 900px;
    }
}
@media (max-width: 760px) {
    .contract-section {
        padding: 56px 22px;
        gap: 42px;
    }
    .contract-kicker {
        font-size: .76rem;
        margin-bottom: 24px;
    }
    .contract-kicker img {
        width: 20px;
        height: 20px;
    }
    .contract-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    .contract-wordmark {
        margin-top: 18px;
        margin-bottom: 26px;
    }
    .contract-description {
        font-size: 1rem;
    }
    .contract-points {
        gap: 14px;
        margin-top: 28px;
    }
    .contract-points li {
        padding-left: 36px;
        font-size: .95rem;
    }
    .contract-points li::before {
        width: 22px;
        height: 22px;
        font-size: 13px;
    }
    .contract-panel {
        max-width: 100%;
    }
}

/*==============================================================================
    PRICING SECTION
==============================================================================*/
.pricing-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.25fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 28px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 0px 64px 60px;
}
/* --- LEFT SIDE --- */
.pricing-left {
    position: relative;
    z-index: 1;
    max-width: 560px;
}
.pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--color-pink);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.pricing-kicker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.pricing-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.001em;
    text-shadow:
        0 0 18px rgba(255, 255, 255, .10),
        0 0 38px rgba(255, 255, 255, .04);
}
.pricing-wordmark {
    margin-top: 18px;
    margin-bottom: 34px;
}
.pricing-wordmark img {
    display: block;
    width: min(560px, 100%);
    height: auto;
}
.pricing-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pricing-points li {
    position: relative;
    padding-left: 42px;
    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.05vw, 1.16rem);
    line-height: 1.35;
}
.pricing-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050507;
    background: var(--color-acid);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 0 16px rgba(223, 255, 0, .35);
}

/* --- PRICE CALCULATOR PANEL --- */
.pricing-calculator {
    position: relative;
    z-index: 1;
}
.pricing-panel {
    position: relative;
    overflow: hidden;
    padding: 34px 38px;
    border-radius: 14px;
    border: 1px solid rgba(255, 0, 136, .62);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .035),
            rgba(255, 255, 255, .012)
        ),
        rgba(8, 8, 12, .82);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .025),
        0 0 32px rgba(255, 0, 136, .12);
}
.pricing-panel h3 {
    margin: 0 0 28px;
    color: var(--color-text);
    font-size: clamp(1.2rem, 1.2vw, 2.4rem);
    font-weight: 500;
    line-height: 1.1;
}
.calculator-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 32px;
}
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}
.calculator-field {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.calculator-field:first-child {
    padding-top: 0;
}
.field-label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-muted);
    font-size: .9rem;
}
.calculator-field strong {
    color: var(--color-text);
    font-size: 1.08rem;
    font-weight: 600;
}
.creator-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}
.creator-mini img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-pink);
    object-fit: cover;
}
.calculator-summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.summary-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .018);
}
.summary-row span {
    color: var(--color-text-soft);
    font-size: 1rem;
}
.summary-row strong {
    color: var(--color-text);
    font-size: 1.12rem;
    font-weight: 700;
}
.summary-large {
    grid-template-columns: 1fr auto;
}
.summary-large strong {
    font-size: clamp(1.2rem, 1.2vw, 2.4rem);
}
.summary-acid {
    grid-template-columns: 1fr auto;
}
.summary-acid strong {
    color: var(--color-acid);
    text-shadow: 0 0 18px rgba(223, 255, 0, .22);
}
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 600;
}
.pricing-toggle {
    position: relative;
    width: 62px;
    height: 30px;
    border-radius: 999px;
    background: var(--color-acid);
    box-shadow: 0 0 18px rgba(223, 255, 0, .35);
}
.pricing-toggle::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #111;
}
.pricing-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 8px;
    padding: 0 24px;
    color: #050507;
    background: var(--color-acid);
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(223, 255, 0, .28);
    border-radius: var(--radius-ss);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}
.pricing-apply-btn:hover {
    transform: translateY(-1px);
    background: var(--color-acid-soft);
    box-shadow: 0 0 34px rgba(223, 255, 0, .42);
}

/* --- FINANCE CARD --- */
.pricing-finance {
    position: relative;
    z-index: 1;
}
.finance-card {
    min-height: 100%;
    padding: 44px 38px;
    border-radius: 14px;
    border: 1px solid rgba(255, 0, 136, .62);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .035),
            rgba(255, 255, 255, .012)
        ),
        rgba(8, 8, 12, .82);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .025),
        0 0 32px rgba(255, 0, 136, .10);
}
.finance-card h3 {
    margin: 0 0 34px;
    color: var(--color-text);
    font-size: clamp(1.2rem, 1.2vw, 2.4rem);
    font-weight: 500;
    line-height: 1.15;
}
.finance-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 22px;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
}
.finance-item:first-of-type {
    border-top: 0;
}
.finance-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}
.finance-item span {
    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.35;
}

/* --- PRICING RESPONSIVE --- */
@media (max-width: 1320px) {
    .pricing-section {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-left {
        grid-column: 1 / -1;
        max-width: 760px;
    }
    .pricing-calculator,
    .pricing-finance {
        align-self: stretch;
    }
}
@media (max-width: 900px) {
    .pricing-section {
        grid-template-columns: 1fr;
        padding: 64px 34px;
    }
    .calculator-grid {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 26px;
    }
    .calculator-form {
        padding-right: 24px;
        border-right: 1px solid rgba(255, 255, 255, .18);
    }
    .finance-card {
        padding: 36px 30px;
    }
}
@media (max-width: 640px) {
    .pricing-section {
        padding: 52px 22px;
    }
    .pricing-kicker {
        font-size: .76rem;
        margin-bottom: 22px;
    }
    .pricing-kicker img {
        width: 20px;
        height: 20px;
    }
    .pricing-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    .pricing-wordmark {
        margin-top: 16px;
        margin-bottom: 28px;
    }
    .pricing-points li {
        padding-left: 36px;
        font-size: .95rem;
    }
    .pricing-points li::before {
        width: 22px;
        height: 22px;
        font-size: 13px;
    }
    .pricing-panel {
        padding: 24px 18px;
    }
    .pricing-panel h3 {
        margin-bottom: 20px;
        font-size: 1.35rem;
    }
    .calculator-grid {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 16px;
    }
    .calculator-form {
        padding-right: 14px;
        border-right: 1px solid rgba(255, 255, 255, .18);
    }
    .calculator-field {
        padding: 11px 0;
    }
    .field-label {
        margin-bottom: 6px;
        font-size: .72rem;
    }
    .calculator-field strong {
        font-size: .86rem;
    }
    .creator-mini {
        gap: 8px;
    }
    .creator-mini img {
        width: 30px;
        height: 30px;
    }
    .calculator-summary {
        gap: 12px;
    }
    .summary-row {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding: 13px 12px;
    }
    .summary-large,
    .summary-acid {
        grid-template-columns: 1fr auto;
    }
    .summary-row span {
        font-size: .78rem;
    }
    .summary-row strong {
        font-size: .88rem;
    }
    .summary-large strong {
        font-size: 1.05rem;
    }
    .toggle-row {
        margin-top: 2px;
        font-size: .86rem;
    }
    .pricing-toggle {
        width: 52px;
        height: 26px;
    }
    .pricing-toggle::after {
        width: 18px;
        height: 18px;
    }
    .pricing-apply-btn {
        min-height: 48px;
        padding-inline: 18px;
        font-size: .9rem;
    }
    .finance-card {
        padding: 30px 22px;
    }
    .finance-item {
        grid-template-columns: 44px 1fr;
        gap: 16px;
        padding: 22px 0;
    }
    .finance-item img {
        width: 44px;
        height: 44px;
    }
}

/*==============================================================================
    INTEGRATION SECTION
==============================================================================*/
.integration-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1.58fr);
    align-items: center;
    gap: clamp(44px, 5vw, 90px);
    width: 100%;
    margin: 0 auto;
    padding: 76px 60px;
    border-radius: var(--radius-md);
    border-top: 1px solid rgba(255, 0, 136, .22);
    border-bottom: 1px solid rgba(255, 0, 136, .22);
    background: #050507;
}
.integration-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/integrations/integration-bg.webp");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .86;
    z-index: -2;
}
/* --- LEFT SIDE --- */
.integration-left {
    position: relative;
    z-index: 1;
    max-width: 390px;
}
.integration-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--color-pink);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.integration-kicker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.integration-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.001em;
    text-shadow: 0 0 18px rgba(255, 255, 255, .10), 0 0 38px rgba(255, 255, 255, .04);
}
.integration-wordmark {
    margin-top: 16px;
    margin-bottom: 36px;
}
.integration-wordmark img {
    display: block;
    width: min(370px, 100%);
    height: auto;
}
.integration-description {
    max-width: 330px;
    color: var(--color-text-soft);
    font-size: clamp(1.05rem, 1.25vw, 1.35rem);
    line-height: 1.55;
}

/* --- RIGHT SIDE / GRID --- */
.integration-right {
    position: relative;
    z-index: 1;
}
.integration-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 24px;
    width: 100%;
}
.integration-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 136, .58);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .035),
            rgba(255, 255, 255, .010)
        ),
        rgba(7, 7, 11, .76);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .025),
        0 0 22px rgba(255, 0, 136, .08);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.integration-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 0, 136, .12),
            transparent 42%
        );
    opacity: 0;
    transition: opacity .22s ease;
}
.integration-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 136, .88);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .035),
        0 0 30px rgba(255, 0, 136, .18);
}
.integration-card:hover::before {
    opacity: 1;
}
.integration-card img {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    object-fit: contain;
}
.integration-card span,
.integration-card strong {
    position: relative;
    z-index: 1;
    color: var(--color-text);
    text-align: center;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
}

/* --- More card --- */
.integration-card-more {
    border-color: rgba(223, 255, 0, .70);
    border-style: dashed;
    box-shadow:
        inset 0 0 0 1px rgba(223, 255, 0, .05),
        0 0 24px rgba(223, 255, 0, .08);
}
.integration-card-more strong {
    font-size: 1.3rem;
    font-weight: 800;
}
.integration-card-more span {
    color: var(--color-acid);
    font-size: 1.02rem;
    text-shadow: 0 0 18px rgba(223, 255, 0, .22);
}
.integration-card-more:hover {
    border-color: rgba(223, 255, 0, .95);
    box-shadow:
        inset 0 0 0 1px rgba(223, 255, 0, .08),
        0 0 30px rgba(223, 255, 0, .18);
}

/* --- INTEGRATION RESPONSIVE --- */
@media (max-width: 1320px) {
    .integration-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 70px 44px;
    }
    .integration-left {
        max-width: 620px;
    }
    .integration-grid {
        grid-template-columns: repeat(5, minmax(110px, 1fr));
        gap: 18px;
    }
    .integration-card {
        min-height: 135px;
    }
    .integration-card img {
        width: 58px;
        height: 58px;
    }
}
@media (max-width: 980px) {
    .integration-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .integration-section {
        padding: 56px 22px;
    }
    .integration-kicker {
        font-size: .76rem;
        margin-bottom: 22px;
    }
    .integration-kicker img {
        width: 20px;
        height: 20px;
    }
    .integration-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    .integration-wordmark {
        margin-top: 14px;
        margin-bottom: 28px;
    }
    .integration-description {
        font-size: 1rem;
    }
    .integration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .integration-card {
        min-height: 128px;
        padding: 20px 12px;
        gap: 14px;
    }
    .integration-card img {
        width: 52px;
        height: 52px;
    }
    .integration-card span,
    .integration-card strong {
        font-size: .95rem;
    }
}
@media (max-width: 420px) {
    .integration-grid {
        grid-template-columns: 1fr;
    }

    .integration-card {
        min-height: 116px;
    }
}

/*==============================================================================
    REPORTING SECTION
==============================================================================*/
.reporting-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(48px, 6vw, 100px);
    width: 100%;
    margin: 0 auto;
    padding: 64px 0px 64px 60px
}
.reporting-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .78;
    z-index: -2;
}
/* --- LEFT SIDE --- */
.reporting-left {
    position: relative;
    z-index: 1;
    max-width: 560px;
}
.reporting-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--color-pink);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.reporting-kicker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.reporting-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.001em;
    text-shadow: 0 0 18px rgba(255, 255, 255, .10), 0 0 38px rgba(255, 255, 255, .04);margin: 0;
}
.reporting-wordmark {
    margin-top: 18px;
    margin-bottom: 38px;
}
.reporting-wordmark img {
    display: block;
    width: min(470px, 100%);
    height: auto;
}
.reporting-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.reporting-points li {
    position: relative;
    padding-left: 42px;
    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.08vw, 1.18rem);
    line-height: 1.35;
}
.reporting-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050507;
    background: var(--color-acid);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
    box-shadow:
        0 0 16px rgba(223, 255, 0, .35);
}

/* --- RIGHT SIDE / IMAGE PANEL --- */
.reporting-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reporting-panel {
    position: relative;
    width: 100%;
    max-width: 980px;
    border-radius: 14px;
}
.reporting-panel::before {
content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 0, 136, .85), rgba(255, 0, 136, .22) 46%, rgba(223, 255, 0, .20) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.reporting-panel::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 6px rgba(255, 0, 136, .34), 0 0 12px rgba(255, 0, 136, .18), 0 0 26px rgba(255, 0, 136, .09);
    pointer-events: none;
    z-index: 1;
}
.reporting-panel img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

/* --- REPORTING RESPONSIVE --- */
@media (max-width: 1180px) {
    .reporting-section {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 72px 44px;
    }
    .reporting-left {
        max-width: 760px;
    }
    .reporting-panel {
        max-width: 980px;
    }
}
@media (max-width: 640px) {
    .reporting-section {
        padding: 54px 22px;
        gap: 40px;
    }
    .reporting-kicker {
        font-size: .76rem;
        margin-bottom: 22px;
    }
    .reporting-kicker img {
        width: 20px;
        height: 20px;
    }
    .reporting-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    .reporting-wordmark {
        margin-top: 16px;
        margin-bottom: 30px;
    }
    .reporting-points {
        gap: 14px;
    }
    .reporting-points li {
        padding-left: 36px;
        font-size: .95rem;
    }
    .reporting-points li::before {
        width: 22px;
        height: 22px;
        font-size: 13px;
    }
    .reporting-panel {
        max-width: 100%;
        border-radius: 10px;
    }
    .reporting-panel img {
        border-radius: 10px;
    }
}

/*==============================================================================
    INFORMATION / ROADMAP SECTION
==============================================================================*/
.information-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
    align-items: center;
    gap: clamp(42px, 5vw, 80px);
    width: 100%;
    margin: 0 auto;
    padding: 64px 0px 64px 60px;
}
.information-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .72;
    z-index: -2;
}
/* --- LEFT SIDE --- */
.information-left {
    position: relative;
    z-index: 1;
    max-width: 460px;
}
.information-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--color-pink);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.information-kicker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.information-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.001em;
    text-shadow: 0 0 18px rgba(255, 255, 255, .10), 0 0 38px rgba(255, 255, 255, .04);
}
.information-wordmark {
    margin-top: 18px;
}
.information-wordmark img {
    display: block;
    width: min(470px, 100%);
    height: auto;
}

/* --- ROADMAP TRACK --- */
.roadmap-track {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}
.roadmap-track::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 6%;
    right: 6%;
    height: 2px;
    box-shadow:
        0 0 16px rgba(223, 255, 0, .28);
    z-index: -1;
}
.roadmap-card {
    position: relative;
    min-height: 210px;
    padding: 64px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(223, 255, 0, .72);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .025),
            rgba(255, 255, 255, .008)
        ),
        rgba(5, 5, 7, .78);
    box-shadow:
        inset 0 0 0 1px rgba(223, 255, 0, .03),
        0 0 22px rgba(223, 255, 0, .08);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}
.roadmap-card:hover {
    transform: translateY(-3px);
    border-color: rgba(223, 255, 0, .95);
    box-shadow:
        inset 0 0 0 1px rgba(223, 255, 0, .06),
        0 0 28px rgba(223, 255, 0, .18);
}
.roadmap-step {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050507;
    background: var(--color-acid);
    border-radius: 50%;
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        0 0 18px rgba(223, 255, 0, .44),
        0 0 42px rgba(223, 255, 0, .18);
}
.roadmap-card h3 {
    margin: 0 0 14px;
    color: var(--color-text);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.roadmap-card span {
    display: block;
    margin-bottom: 22px;
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1;
}
.roadmap-card span::after {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    margin: 18px auto 0;
    background: rgba(223, 255, 0, .72);
    box-shadow:
        0 0 14px rgba(223, 255, 0, .28);
}
.roadmap-card p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: .98rem;
    line-height: 1.45;
}

/* --- INFORMATION / ROADMAP RESPONSIVE --- */
@media (max-width: 1320px) {
    .information-section {
        grid-template-columns: 1fr;
        gap: 64px;
        padding: 74px 44px;
    }
    .information-left {
        max-width: 620px;
    }
    .roadmap-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 56px 22px;
    }
    .roadmap-track::before {
        display: none;
    }
}
@media (max-width: 820px) {
    .roadmap-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .information-section {
        padding: 56px 22px;
        gap: 52px;
    }
    .information-kicker {
        font-size: .76rem;
        margin-bottom: 22px;
    }
    .information-kicker img {
        width: 20px;
        height: 20px;
    }
    .information-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    .information-wordmark {
        margin-top: 16px;
    }
    .roadmap-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 14px;
    }
    .roadmap-card {
        min-height: 170px;
        padding: 48px 14px 22px;
    }
    .roadmap-step {
        width: 48px;
        height: 48px;
        top: -24px;
        font-size: 1.65rem;
    }
    .roadmap-card h3 {
        font-size: .9rem;
    }
    .roadmap-card p {
        font-size: .82rem;
    }
}

/*==============================================================================
    BOTTOM CTA SECTION
==============================================================================*/
.bottom-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    margin: 0 auto;
    padding: 72px 0 86px;
}
.bottom-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.58fr);
    align-items: stretch;
    min-height: 360px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 0, 136, .52);
    background: #050507;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .025),
        0 0 34px rgba(255, 0, 136, .14);
}
.bottom-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 0 0 120px rgba(0, 0, 0, .34),
        inset 0 0 220px rgba(255, 0, 136, .06);
    z-index: 3;
}

/*==============================================================================
    LEFT OUTER BLOCK
==============================================================================*/
.bottom-left-wrap {
    position: relative;
    isolation: isolate;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .46fr);
    align-items: center;
    gap: clamp(34px, 4vw, 70px);
    min-height: 360px;
    padding: 24px 56px;
}
.bottom-left-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/bottom/bottom-left-bg.webp");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .92;
    z-index: -2;
}

/* --- LEFT TEXT --- */
.bottom-copy {
    position: relative;
    z-index: 1;
}
.bottom-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.001em;
    text-shadow: 0 0 18px rgba(255, 255, 255, .10), 0 0 38px rgba(255, 255, 255, .04);
}
.bottom-wordmark {
    margin: 0 0 28px;
}
.bottom-wordmark img {
    display: block;
    width: min(760px, 100%);
    height: auto;
}
.bottom-description {
    max-width: 640px;
    margin: 0;

    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.08vw, 1.18rem);
    line-height: 1.55;
}

/*==============================================================================
    CONTACT + FAQ SECTION
==============================================================================*/

.contact-faq-section {
    position: relative;
    isolation: isolate;

    width: 100%;
    margin: 0 auto;
    padding: 72px 0;
}

.contact-faq-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    width: 100%;
    min-height: 680px;

    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 0, 136, .52);

    background: #050507;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .025),
        0 0 34px rgba(255, 0, 136, .12);
}

.contact-faq-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../img/contact/contact-faq-bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: .82;
    z-index: -2;
}

.contact-faq-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}


/*==============================================================================
    PANELS
==============================================================================*/

.contact-panel,
.faq-panel {
    position: relative;
    z-index: 1;

    padding: clamp(42px, 4.5vw, 72px);
}
.contact-panel {
    border-right: 1px solid rgba(255, 0, 136, .38);
}



/*==============================================================================
    KICKERS
==============================================================================*/

.contact-kicker,
.faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;

    color: var(--color-pink);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.kicker-icon {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--color-pink);

    border: 1px solid rgba(255, 0, 136, .55);
    border-radius: 50%;

    font-size: .78rem;
    font-weight: 900;

    box-shadow:
        0 0 14px rgba(255, 0, 136, .18);
}


/*==============================================================================
    LEFT CONTACT COPY
==============================================================================*/

.contact-title,
.faq-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw, 6.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.001em;
    text-shadow:
        0 0 18px rgba(255, 255, 255, .10),
        0 0 38px rgba(255, 255, 255, .04);
}

.contact-description {
    max-width: 680px;
    margin: 28px 0 36px;

    color: var(--color-text-soft);
    font-size: clamp(1.05rem, 1.18vw, 1.28rem);
    line-height: 1.55;
}


/*==============================================================================
    FORM
==============================================================================*/

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field span {
    color: var(--color-text);
    font-size: .98rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    color: var(--color-text);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .035),
            rgba(255, 255, 255, .012)
        ),
        rgba(5, 5, 7, .74);

    border: 1px solid rgba(255, 0, 136, .54);
    border-radius: 8px;

    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;

    outline: none;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .018),
        0 0 18px rgba(255, 0, 136, .055);

    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.form-field input,
.form-field select {
    height: 64px;
    padding: 0 18px;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
    padding: 18px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, .46);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(223, 255, 0, .84);

    box-shadow:
        inset 0 0 0 1px rgba(223, 255, 0, .08),
        0 0 24px rgba(223, 255, 0, .12);
}

.form-field-wide {
    margin-top: 26px;
}

.contact-submit-row {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-top: 30px;
}

.contact-submit-btn {
    min-width: 280px;
    min-height: 70px;
    padding: 0 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #050507;
    background: var(--color-acid);

    border: 0;
    border-radius: 8px;

    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;

    box-shadow:
        0 0 24px rgba(223, 255, 0, .34),
        0 0 56px rgba(223, 255, 0, .16);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 32px rgba(223, 255, 0, .48),
        0 0 80px rgba(223, 255, 0, .22);
}

.contact-submit-btn:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.contact-note {
    margin: 0;

    color: var(--color-text-muted);
    font-size: .98rem;
    line-height: 1.45;
}

.contact-note span {
    display: inline-block;
    margin-right: 10px;

    color: var(--color-acid);
    font-size: 1.6rem;
    line-height: 1;

    text-shadow:
        0 0 16px rgba(223, 255, 0, .32);
}

.contact-form-status {
    min-height: 1.5em;
    margin-top: 16px;
    color: var(--color-text-muted);
    font-size: .98rem;
    line-height: 1.45;
}

.contact-form-status.is-success {
    color: var(--color-acid);
}

.contact-form-status.is-error {
    color: var(--color-pink-soft);
}


/*==============================================================================
    FAQ
==============================================================================*/

.faq-title {
    margin-bottom: 36px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    position: relative;
    overflow: hidden;

    border-radius: 8px;
    border: 1px solid rgba(255, 0, 136, .58);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .03),
            rgba(255, 255, 255, .010)
        ),
        rgba(5, 5, 7, .72);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .018),
        0 0 20px rgba(255, 0, 136, .06);
}

.faq-item[open] {
    border-color: rgba(223, 255, 0, .78);

    box-shadow:
        inset 0 0 0 1px rgba(223, 255, 0, .04),
        0 0 26px rgba(223, 255, 0, .08);
}

.faq-item summary {
    min-height: 76px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    cursor: pointer;

    color: var(--color-text);
    font-size: clamp(1.05rem, 1.12vw, 1.22rem);
    font-weight: 900;
    line-height: 1.25;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    flex: 0 0 auto;

    color: var(--color-pink);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;

    text-shadow:
        0 0 16px rgba(255, 0, 136, .28);
}

.faq-item[open] summary {
    color: var(--color-acid);
}

.faq-item[open] summary::after {
    content: "−";

    color: var(--color-acid);

    text-shadow:
        0 0 16px rgba(223, 255, 0, .32);
}

.faq-answer {
    padding: 0 28px 28px;
}

.faq-answer p {
    max-width: 760px;
    margin: 0;

    color: var(--color-text-soft);
    font-size: clamp(1rem, 1.05vw, 1.16rem);
    line-height: 1.6;
}

/*==============================================================================
    CONTACT + FAQ RESPONSIVE
==============================================================================*/

@media (max-width: 1180px) {
    .contact-faq-card {
        grid-template-columns: 1fr;
        border: 0;
        box-shadow: none;
    }

    .faq-panel {
        order: 1;
    }

    .contact-panel {
        order: 2;
        border-right: 0;
        border-top: 1px solid rgba(255, 0, 136, .38);
        border-bottom: 0;
    }
}

@media (max-width: 760px) {
    .contact-faq-section {
        padding: 56px 0;
    }

    .contact-panel,
    .faq-panel {
        padding: 42px 26px;
    }

    .contact-title,
    .faq-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }

    .contact-description {
        margin-top: 22px;
        margin-bottom: 30px;
        font-size: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-submit-row {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .contact-submit-btn {
        width: 100%;
        min-width: 0;
        min-height: 64px;
    }

    .faq-item summary {
        min-height: 68px;
        padding: 0 20px;
    }

    .faq-answer {
        padding: 0 20px 22px;
    }
}

@media (max-width: 460px) {
    .contact-faq-card {
        border-radius: 10px;
    }

    .contact-panel,
    .faq-panel {
        padding: 36px 20px;
    }

    .form-field input,
    .form-field select {
        height: 58px;
    }

    .form-field textarea {
        min-height: 130px;
    }
}

/* --- ACTIONS --- */
.bottom-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    max-width: 320px;
    width: 100%;
}
.bottom-btn {
    min-height: 76px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 8px;
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;
}
.bottom-btn-primary {
    color: #050507;
    background: var(--color-acid);
    box-shadow:
        0 0 24px rgba(223, 255, 0, .34),
        0 0 56px rgba(223, 255, 0, .16);
}
.bottom-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 32px rgba(223, 255, 0, .48),
        0 0 80px rgba(223, 255, 0, .22);
}
.bottom-btn-secondary {
    color: var(--color-pink);
    background: rgba(5, 5, 7, .64);
    border: 1px solid rgba(255, 0, 136, .78);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .025),
        0 0 24px rgba(255, 0, 136, .12);
}
.bottom-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 136, 1);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .035),
        0 0 34px rgba(255, 0, 136, .24);
}
.bottom-play-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 136, .95);
    color: var(--color-pink);
    font-size: .92rem;
    box-shadow:
        0 0 18px rgba(255, 0, 136, .24);
}

/* --- RIGHT IMAGE BLOCK --- */
.bottom-visual {
    position: relative;
    z-index: 1;
    min-height: 360px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.bottom-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

/* --- BOTTOM CTA RESPONSIVE --- */
@media (max-width: 1180px) {
    .bottom-card {
        grid-template-columns: 1fr;
    }
    .bottom-left-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(240px, .42fr);
        min-height: 340px;
    }
    .bottom-visual {
        min-height: 420px;
    }
    .bottom-visual img {
        object-position: center;
    }
}
@media (max-width: 760px) {
    .bottom-section {
        padding: 56px 0 70px;
    }
    .bottom-left-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: auto;
        padding: 46px 26px;
    }
    .bottom-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    .bottom-wordmark {
        margin-bottom: 24px;
    }
    .bottom-description {
        font-size: 1rem;
    }
    .bottom-actions {
        max-width: 100%;
    }
    .bottom-btn {
        min-height: 64px;
        font-size: 1rem;
    }
    .bottom-play-icon {
        width: 36px;
        height: 36px;
    }
    .bottom-visual {
        min-height: 360px;
    }
}
@media (max-width: 480px) {
    .bottom-card {
        border-radius: 10px;
    }
    .bottom-left-wrap {
        padding: 40px 20px;
    }
    .bottom-visual {
        min-height: 300px;
    }
}

/*==============================================================================
    SITE FOOTER
==============================================================================*/
.site-footer {
    position: relative;
    isolation: isolate;
    width: 100%;
    margin: 0 auto;
    padding: 64px 0 56px;
    border-top: 1px solid rgba(255, 0, 136, .18);
}
.footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 2.8fr) minmax(180px, .8fr);
    align-items: start;
    gap: clamp(36px, 4vw, 72px);
    width: min(1600px, calc(100vw - 100px));
    margin: 0 auto;
}

/* --- BRAND --- */

.footer-brand {
    max-width: 300px;
    min-width: 0;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}
.footer-logo img {
    display: block;
    width: 180px;
    height: auto;
}
.footer-tagline {
    margin: 0;
    min-width: 0;
    color: var(--color-text-soft);
    font-size: .98rem;
    line-height: 1.55;
}

/* --- COLUMNS --- */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 56px);
    min-width: 0;
}
.footer-column h3,
.footer-social h3 {
    margin: 0 0 22px;
    color: var(--color-text);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-column a {
    color: var(--color-text-muted);
    font-size: .95rem;
    line-height: 1.25;
    text-decoration: none;
    transition:
        color .18s ease,
        text-shadow .18s ease;
}
.footer-column a:hover {
    color: var(--color-pink);
    text-shadow:
        0 0 16px rgba(255, 0, 136, .28);
}

/* --- SOCIAL --- */
.footer-social {
    min-width: 0;
}
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.footer-social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-soft);
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}
.footer-social-links a:hover {
    transform: translateY(-1px);
    color: var(--color-pink);
    border-color: rgba(255, 0, 136, .72);
    box-shadow:
        0 0 18px rgba(255, 0, 136, .18);
}
.footer-copyright {
    margin: 0;
    color: var(--color-text-muted);
    font-size: .82rem;
    line-height: 1.45;
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 1180px) {
    .footer-inner {
        grid-template-columns: minmax(200px, .8fr) minmax(0, 2fr);
        width: calc(100vw - 64px);
        gap: 48px 42px;
    }
    .footer-nav-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-column: span 1;
    }
    .footer-brand {
        max-width: 360px;
    }
    .footer-social {
        grid-column: 1 / -1;
    }
}
@media (max-width: 760px) {
    .site-footer {
        padding: 52px 0 44px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        width: calc(100vw - 44px);
        gap: 34px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        max-width: none;
        width: 100%;
    }
    .footer-logo {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
    .footer-tagline {
        flex: 1 1 auto;
        text-align: right;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: .78rem;
    }
    .footer-nav-grid {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
        width: 100%;
    }
    .footer-social {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 14px 16px;
        width: 100%;
    }
    .footer-social h3 {
        margin-bottom: 0;
    }
    .footer-social-links {
        margin-bottom: 0;
    }
    .footer-copyright {
        grid-column: 1 / -1;
        justify-self: start;
        white-space: nowrap;
        font-size: .78rem;
    }
    .footer-logo img {
        width: 160px;
    }
}
@media (max-width: 460px) {
    .footer-inner {
        width: calc(100vw - 32px);
        gap: 30px;
    }
    .footer-brand {
        gap: 12px;
        flex-flow: column;
    }
    .footer-logo img {
        width: 50vw;
    }
    .footer-tagline {
        font-size: .68rem;
    }
    .footer-nav-grid {
        gap: 28px 18px;
    }
    .footer-column h3,
    .footer-social h3 {
        margin-bottom: 18px;
    }
    .footer-column ul {
        gap: 12px;
    }
    .footer-social {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
    }
    .footer-social h3 {
        margin-bottom: 0;
        font-size: .68rem;
    }
    .footer-social-links {
        gap: 8px;
    }
    .footer-social-links a {
        width: 30px;
        height: 30px;
        font-size: .7rem;
    }
    .footer-copyright {
        font-size: .66rem;
    }
}
