/* ==================================================
   VIBRAPEAK SERVICES V2
   Studio Architecture System
================================================== */

body {
    margin: 0;
}

.vp-services-v2 {
    overflow: hidden;
}

/* ==================================
     FOUNDATION
  ================================== */

.vp-studio-container {
    width: min(1280px, 100%);
    margin: auto;
    padding-inline: 24px;
}

.vp-studio-section {
    padding: 140px 0;
}

.vp-studio-kicker {
    display: inline-block;

    color: var(--primary);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .24em;
}

.vp-studio-title {
    margin: 18px 0;

    font-size:
        clamp(48px, 7vw, 96px);

    line-height: .9;

    letter-spacing: -.06em;
}

.vp-studio-text {
    max-width: 720px;

    color: var(--subtext);

    line-height: 1.9;
}

.vp-studio-head-center {
    text-align: center;
}

.vp-studio-head-center .vp-studio-text {
    margin-inline: auto;
}

/* ==================================
     BUTTONS
  ================================== */

.vp-studio-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 34px;
}

.vp-studio-btn {
    min-height: 56px;

    padding: 0 26px;

    border-radius: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-weight: 900;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.vp-studio-btn-primary {
    background: var(--primary);
    color: var(--button-text, #111);
}

.vp-studio-btn:hover {
    transform: translateY(-3px);
}

.vp-studio-btn-primary:hover {
    box-shadow: 0 18px 44px rgba(var(--glow-color), .25);
}

.vp-studio-btn-ghost:hover {
    border-color: rgba(var(--glow-color), .32);
    background: rgba(255, 255, 255, .075);
}

.vp-studio-btn-ghost {
    color: var(--text);

    border:
        1px solid rgba(var(--glow-color), .12);

    background:
        rgba(255, 255, 255, .05);
}

/* ==================================
     HERO
  ================================== */

.vp-studio-hero {

    width: 100vw;

    margin-left: 50%;

    transform:
        translateX(-50%);

    padding:
        clamp(120px, 14vw, 200px) 0;

    background:
        radial-gradient(circle at top right,
            rgba(var(--glow-color), .22),
            transparent 35%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(var(--glow-color), .12);
}

.vp-studio-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
    opacity: .35;
    pointer-events: none;
}

.vp-studio-hero .vp-studio-container {
    position: relative;
    z-index: 2;
}


.vp-studio-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 80px;
    width: min(760px, 70vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(var(--glow-color), .45), transparent);
}


.vp-studio-hero-title {
    margin: 20px 0;

    font-size: clamp(58px, 8vw, 118px);
    max-width: 900px;

    line-height: .88;

    letter-spacing: -.08em;
}

.vp-studio-hero-text {
    max-width: 760px;

    color: var(--subtext);

    font-size: 18px;

    line-height: 1.9;
}

.vp-studio-hero .vp-studio-container {
    text-align: center;
}

.vp-studio-hero-title {
    margin-inline: auto;
}

.vp-studio-hero-text {
    margin-inline: auto;
}

.vp-studio-hero .vp-studio-actions {
    justify-content: center;
}



/* ==================================
     SERVICE ARCHITECTURE
  ================================== */

.vp-architecture-list {
    margin-top: 90px;
}

.vp-architecture-row {
    position: relative;
    display: grid;

    grid-template-columns:
        120px minmax(320px, 620px) 1fr;
    gap: 40px;

    padding: 78px 0;

    border-top:
        1px solid rgba(var(--glow-color), .12);

    transition:
        border-color .35s ease,
        transform .35s ease;
}

.vp-architecture-row::before {

    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 0;

    height: 1px;

    background: var(--primary);

    transition: .35s ease;
}

.vp-architecture-row:hover::before {

    width: 70px;
}

/* RTL architecture hover line fix */
[dir="rtl"] .vp-architecture-row::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .vp-architecture-row:hover h3 {
    transform: translateX(-12px);
}


.vp-architecture-row:last-child {
    border-bottom:
        1px solid rgba(var(--glow-color), .12);
}

.vp-architecture-number {

    color:
        rgba(var(--glow-color), .55);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: .28em;

    transition: .35s;
}

.vp-architecture-row:hover .vp-architecture-number {

    color: var(--primary);
}

.vp-architecture-row h3 {
    margin: 0;
    font-size:
        clamp(42px, 5vw, 80px);
    line-height: .9;
    letter-spacing: -.06em;

    transition:
        transform .35s ease,
        color .35s ease;
}

.vp-architecture-row:hover {
    border-color:
        rgba(var(--glow-color), .35);
}

.vp-architecture-row:hover h3 {
    transform: translateX(12px);
}

.vp-architecture-row p {
    margin: 0;

    max-width: 420px;

    color: var(--subtext);

    line-height: 1.9;
}

/* ==================================
   PROCESS
================================== */

.vp-process-system .vp-studio-head {
    text-align: center;
}

.vp-process-system .vp-studio-text {
    margin-inline: auto;
}

.vp-process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border: 1px solid rgba(var(--glow-color), .12);
    border-radius: 28px;
    overflow: hidden;
}

.vp-process-line article {
    padding: 34px;
    border-inline-end: 1px solid rgba(var(--glow-color), .12);
    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.vp-process-line article:last-child {
    border-inline-end: 0;
}

.vp-process-line article:hover {
    background: rgba(255, 255, 255, .035);
    transform: translateY(-4px);
}

.vp-process-line span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: .18em;
}

.vp-process-line h3 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.vp-process-line p {
    margin: 0;
    color: var(--subtext);
    line-height: 1.75;
}

/* ==================================
     WHY
  ================================== */
.vp-why-grid {
    margin-top: 80px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.vp-why-grid article {

    padding: 40px;

    border-radius: 28px;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(var(--glow-color), .12);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.vp-why-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--glow-color), .28);
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.vp-why-grid span {
    color: var(--primary);
    font-weight: 900;
}

.vp-why-grid h3 {
    margin: 18px 0 14px;

    font-size: 34px;

    letter-spacing: -.04em;
}

.vp-why-grid p {
    color: var(--subtext);

    line-height: 1.9;
}

.vp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .7s ease,
        transform .7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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


.vp-home-layer.is-active {
    background: rgba(255, 255, 255, .035);
    padding-inline: 24px;
}


/* ==================================================
   CONTACT PAGE
================================================== */

/* CONTACT HERO */

.vp-contact-hero {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: clamp(120px, 14vw, 190px) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(var(--glow-color), .12);
    background:
        radial-gradient(circle at 80% 20%, rgba(var(--glow-color), .20), transparent 36%);
}

.vp-contact-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
}

.vp-contact-hero-title {
    margin: 20px 0;
    max-width: 900px;
    font-size: clamp(58px, 8vw, 118px);
    line-height: .88;
    letter-spacing: -.075em;
}

.vp-contact-hero-text {
    max-width: 680px;
    color: var(--subtext);
    font-size: 18px;
    line-height: 1.9;
}

.vp-contact-signal {
    position: relative;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(var(--glow-color), .14);
    box-shadow: var(--shadow-soft);
}

.vp-contact-signal::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px solid rgba(var(--glow-color), .10);
    pointer-events: none;
}

.vp-signal-kicker {
    display: block;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
}

.vp-signal-line {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(var(--glow-color), .12);
}

.vp-signal-line span {
    color: rgba(var(--glow-color), .65);
    font-weight: 900;
    letter-spacing: .18em;
}

.vp-signal-line strong {
    font-size: 20px;
    letter-spacing: -.04em;
}

/* CONTACT HUB */

.vp-contact-hub-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: start;
}

.vp-contact-hub-copy {
    position: sticky;
    top: 120px;
}

.vp-contact-options {
    display: grid;
    gap: 18px;
}

.vp-contact-option {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;

    padding: 30px;

    border-radius: 28px;

    text-decoration: none;
    color: var(--text);

    background:
        linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .018));

    border: 1px solid rgba(var(--glow-color), .12);

    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease,
        box-shadow .28s ease;
}

.vp-contact-option::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--glow-color), .35), transparent);
    opacity: .55;
}

.vp-contact-option:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--glow-color), .30);
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .20);
}

.vp-contact-option span {
    color: rgba(var(--glow-color), .65);
    font-weight: 900;
    letter-spacing: .18em;
}

.vp-contact-option strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
    letter-spacing: -.045em;
}

.vp-contact-option p {
    grid-column: 2;
    margin: 0;
    color: var(--subtext);
    line-height: 1.75;
}

/* PROJECT BRIEF */

.vp-contact-form {
    width: min(900px, 100%);
    margin: 80px auto 0;

    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
    border: 1px solid rgba(var(--glow-color), .12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
}

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

.vp-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vp-contact-form span {
    font-size: 14px;
    font-weight: 700;
    color: var(--subtext);
}

.vp-contact-form input,
.vp-contact-form select,
.vp-contact-form textarea {

    width: 100%;

    padding: 18px 20px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(var(--glow-color), .12);

    color: var(--text);

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.vp-contact-form input:focus,
.vp-contact-form select:focus,
.vp-contact-form textarea:focus {

    border-color:
        rgba(var(--glow-color), .35);

    background:
        rgba(255, 255, 255, .06);
}

.vp-form-full {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 20px;
}

.vp-contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.vp-contact-form .vp-studio-btn {
    margin-top: 28px;
    min-height: 60px;
    padding-inline: 32px;
}

/* CONTACT PROMISE */

.vp-contact-promise .vp-studio-head {
    text-align: center;
}

.vp-contact-promise .vp-studio-title {
    max-width: 900px;
    margin-inline: auto;
}

.vp-contact-steps {
    width: min(1100px, 100%);
    margin: 80px auto 0;
    border-top: 1px solid rgba(var(--glow-color), .14);
}

.vp-contact-steps article {
    display: grid;
    grid-template-columns: 120px 320px 1fr;
    gap: 36px;
    align-items: start;
    padding: 42px 0;
    border-bottom: 1px solid rgba(var(--glow-color), .14);
    transition:
        border-color .28s ease,
        transform .28s ease;
}

.vp-contact-steps article:hover {
    transform: translateX(10px);
    border-color: rgba(var(--glow-color), .32);
}

.vp-contact-steps span {
    color: rgba(var(--glow-color), .65);
    font-weight: 900;
    letter-spacing: .2em;
}

.vp-contact-steps h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
    letter-spacing: -.05em;
}

.vp-contact-steps p {
    margin: 0;
    max-width: 520px;
    color: var(--subtext);
    line-height: 1.85;
}

/* FINAL CTA */

.vp-contact-final {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vp-contact-final .vp-studio-container {
    max-width: 900px;
}

.vp-contact-final h2 {
    margin: 20px auto;

    max-width: 900px;

    font-size:
        clamp(52px, 8vw, 110px);

    line-height: .9;

    letter-spacing: -.07em;
}

.vp-contact-final p {
    max-width: 700px;
    margin: 0 auto 36px;

    color: var(--subtext);

    line-height: 1.9;
}

.vp-contact-final .vp-studio-btn {
    min-height: 60px;
    padding-inline: 34px;
}

.vp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .7s ease,
        transform .7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

.vp-contact-form.is-submitted {
    border-color: rgba(var(--glow-color), .34);
}


/* ==================================
   RTL FULL-WIDTH FIX

   هذه من اجل حل مشكلة السكشن التي تذهب لليسار 
================================== */

[dir="rtl"] .vp-studio-hero,
[dir="rtl"] .vp-studio-cta,
[dir="rtl"] .vp-contact-hero,
[dir="rtl"] .vp-themes-hero,
[dir="rtl"] .vp-home-hero,
[dir="rtl"] .vp-about-hero,
[dir="rtl"] .vp-projects-hero {
    margin-left: 0;
    margin-right: 50%;
    transform: translateX(50%);
}

/* ==================================================
   HOME PAGE
   الصفحة الرئيسية

   VibraPeak Home V2
   Main studio showcase and brand experience.
================================================== */

/* ==================================
   HOME HERO
================================== */

.vp-home-hero {
    width: 100vw;

    margin-left: 50%;

    transform: translateX(-50%);

    padding:
        clamp(120px, 14vw, 200px) 0;

    position: relative;

    overflow: hidden;

    border-bottom:
        1px solid rgba(var(--glow-color), .12);

    background:
        radial-gradient(circle at 80% 20%,
            rgba(var(--glow-color), .18),
            transparent 36%);
}

.vp-home-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(420px, .9fr);

    gap:
        clamp(50px, 8vw, 120px);

    align-items: center;
}

.vp-home-hero-title {
    margin: 20px 0;

    max-width: 900px;

    font-size:
        clamp(64px, 9vw, 130px);

    line-height: .88;

    letter-spacing: -.08em;
}

.vp-home-hero-text {
    max-width: 700px;

    color: var(--subtext);

    font-size: 18px;

    line-height: 1.9;
}

/* Hero project showcase */

.vp-home-showcase {
    position: relative;
    height: 640px;
    isolation: isolate;
}

.vp-hero-project {
    position: absolute;
    overflow: hidden;
    display: block;
    border-radius: 30px;
    border: 1px solid rgba(var(--glow-color), .14);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
    text-decoration: none;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.vp-hero-project:hover {
    z-index: 50;
    transform: translateY(-10px) scale(1.035);
    border-color: rgba(var(--glow-color), .34);
    box-shadow: 0 40px 110px rgba(0, 0, 0, .32);
}

.vp-hero-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .92;
}

.vp-hero-project span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .42);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    backdrop-filter: blur(12px);
}

.vp-hero-project-main {
    left: 0;
    top: 40px;
    width: min(430px, 70%);
    height: 300px;
    z-index: 4;
}

.vp-hero-project-top {
    right: 0;
    top: 0;
    width: 260px;
    height: 180px;
    z-index: 3;
}

.vp-hero-project-mid {
    right: 36px;
    top: 230px;
    width: 310px;
    height: 220px;
    z-index: 5;
}

.vp-hero-project-bottom {
    left: 90px;
    bottom: 20px;
    width: 300px;
    height: 210px;
    z-index: 2;
}

/* ========================================
   HOME - DIGITAL LAYERS
======================================== */

.vp-home-layers {
    margin-top: 80px;

    border-top:
        1px solid rgba(var(--glow-color), .12);
}

.vp-home-layer {
    display: grid;

    grid-template-columns:
        120px minmax(260px, 420px) 1fr;

    gap: 40px;

    align-items: center;

    padding: 42px 0;

    border-bottom:
        1px solid rgba(var(--glow-color), .12);

    transition:
        background .35s ease,
        padding-inline .35s ease;
}

.vp-home-layer:hover {
    background:
        rgba(255, 255, 255, .025);

    padding-inline: 24px;
}

.vp-home-layer span {
    color: var(--primary);

    font-size: 22px;

    font-weight: 900;

    letter-spacing: .18em;
}

.vp-home-layer h3 {
    margin: 0;

    font-size:
        clamp(32px, 3vw, 56px);

    line-height: .95;

    letter-spacing: -.05em;
}

.vp-home-layer p {
    margin: 0;

    max-width: 520px;

    color: var(--subtext);

    line-height: 1.9;
}

/* ==================================
   HOME FEATURED WORK
================================== */

.vp-home-work-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    margin-bottom: 70px;
}

.vp-home-work-head .vp-studio-title {
    max-width: 900px;
}

.vp-home-work-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: stretch;
}

.vp-home-work-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 28px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
    border: 1px solid rgba(var(--glow-color), .12);
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.vp-home-work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--glow-color), .30);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

/* Big featured card */
.vp-home-work-card-large {
    min-height: 744px;
    padding: 0;
    grid-row: span 2;
}

.vp-home-work-card-large .vp-work-preview {
    position: absolute;
    inset: 0;
    height: 100%;
    border: 0;
    border-radius: 34px;
}

.vp-home-work-card-large .vp-work-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(8, 18, 31, .92) 100%);
}

.vp-home-work-card-large>div:last-child {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
}

/* Normal cards */
.vp-work-preview {
    height: 260px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(var(--glow-color), .10);
}

.vp-work-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .92;
    transition: transform .35s ease, opacity .35s ease;
}

.vp-home-work-card:hover .vp-work-preview img {
    transform: scale(1.04);
    opacity: 1;
}

.vp-work-label {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
}

.vp-home-work-card h3 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: .95;
    letter-spacing: -.055em;
}

/* ==================================================
   HOME WHY STRIP
   VibraPeak Signature Statement
================================================== */

.vp-home-why {
    position: relative;
    overflow: hidden;
}

.vp-home-why::before {
    content: "VIBRAPEAK";
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    font-size: clamp(90px, 16vw, 260px);
    font-weight: 900;
    letter-spacing: -.08em;
    color: rgba(255, 255, 255, .025);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.vp-home-why .vp-studio-container {
    position: relative;
    z-index: 2;
}

.vp-home-why-strip {
    position: relative;
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(var(--glow-color), .13);
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: 0 34px 110px rgba(0, 0, 0, .16);
}

.vp-home-why-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--glow-color), .13), transparent 34%),
        radial-gradient(circle at 80% 80%, rgba(var(--glow-color), .08), transparent 36%);
    opacity: .9;
    pointer-events: none;
}

.vp-home-why-strip article {
    position: relative;
    min-height: 300px;
    padding: 46px 38px;
    border-inline-end: 1px solid rgba(var(--glow-color), .12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        background .32s ease,
        transform .32s ease,
        border-color .32s ease;
}

.vp-home-why-strip article:last-child {
    border-inline-end: 0;
}

.vp-home-why-strip article:hover {
    background: rgba(255, 255, 255, .045);
    transform: translateY(-6px);
}

.vp-home-why-strip span {
    display: inline-flex;
    width: max-content;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(var(--glow-color), .10);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
}

.vp-home-why-strip h3 {
    margin: 80px 0 20px;
    font-size: clamp(44px, 5vw, 82px);
    line-height: .86;
    letter-spacing: -.07em;
}

.vp-home-why-strip p {
    max-width: 320px;
    margin: 0;
    color: var(--subtext);
    line-height: 1.85;
    font-size: 15px;
}

.vp-home-why-strip article::after {
    content: "";
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .32s ease;
}

.vp-home-why-strip article:hover::after {
    transform: scaleX(1);
}

/* ==================================================
   HOME FINAL CTA
   Cinematic Closing Statement
================================================== */

.vp-home-final {
    position: relative;
    overflow: hidden;
    text-align: center;

    padding:
        clamp(150px, 14vw, 220px) 0;

    border-top: 1px solid rgba(var(--glow-color), .12);

    background:
        radial-gradient(circle at 50% 35%, rgba(var(--glow-color), .18), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .015), transparent);
}

.vp-home-final::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(820px, 72vw);
    height: min(820px, 72vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(var(--glow-color), .12);
    pointer-events: none;
}

/* [dir="rtl"] .vp-home-final::before {
    width: min(780px, 70vw);
    height: min(780px, 70vw);
} */

.vp-home-final::after {
    content: "VIBRAPEAK";
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    font-size: clamp(54px, 12vw, 180px);
    font-weight: 900;
    letter-spacing: -.08em;
    color: currentColor;
    opacity: .04;
    white-space: nowrap;
    pointer-events: none;
}

.vp-home-final .vp-studio-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.vp-home-final h2 {
    margin: 22px auto;

    max-width: 1000px;

    font-size:
        clamp(58px, 8.5vw, 132px);

    line-height: .88;

    letter-spacing: -.08em;
}

.vp-home-final p {
    max-width: 720px;
    margin: 0 auto 42px;

    color: var(--subtext);

    font-size: 17px;
    line-height: 1.9;
}

.vp-home-final .vp-studio-btn {
    min-height: 64px;
    padding-inline: 38px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(var(--glow-color), .22);
}

/* ==================================================
   ABOUT PAGE
   VibraPeak Studio Philosophy
================================================== */

/* ==================================
   ABOUT HERO
================================== */

.vp-about-hero {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: clamp(130px, 15vw, 220px) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(var(--glow-color), .12);
    background:
        radial-gradient(circle at 50% 20%, rgba(var(--glow-color), .20), transparent 40%);
}

.vp-about-title {
    max-width: 1100px;
    margin: 22px auto;
    font-size: clamp(58px, 9vw, 140px);
    line-height: .88;
    letter-spacing: -.08em;
}

.vp-about-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--subtext);
    font-size: 18px;
    line-height: 1.9;
}

/* ==================================
   ABOUT MANIFESTO
================================== */

.vp-about-manifesto {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(var(--glow-color), .13);
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
}

.vp-about-manifesto article {
    min-height: 320px;
    padding: 44px 36px;
    border-inline-end: 1px solid rgba(var(--glow-color), .12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .3s ease, transform .3s ease;
}

.vp-about-manifesto article:last-child {
    border-inline-end: 0;
}

.vp-about-manifesto article:hover {
    background: rgba(255, 255, 255, .04);
    transform: translateY(-6px);
}

.vp-about-manifesto span {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: .18em;
}

.vp-about-manifesto h3 {
    margin: 80px 0 18px;
    font-size: clamp(42px, 5vw, 82px);
    line-height: .86;
    letter-spacing: -.07em;
}

.vp-about-manifesto p {
    margin: 0;
    color: var(--subtext);
    line-height: 1.85;
}

/* ==================================
   ABOUT BELIEFS
================================== */

.vp-about-belief-list {
    margin-top: 80px;
    border-top: 1px solid rgba(var(--glow-color), .12);
}

.vp-about-belief-list article {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;

    padding: 46px 0;

    border-bottom: 1px solid rgba(var(--glow-color), .12);

    transition:
        background .3s ease,
        padding-inline .3s ease;
}

.vp-about-belief-list article:hover {
    background: rgba(255, 255, 255, .025);
    padding-inline: 24px;
}

.vp-about-belief-list span {
    font-size: clamp(34px, 4vw, 70px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.06em;
}

.vp-about-belief-list p {
    max-width: 620px;
    margin: 0;
    color: var(--subtext);
    line-height: 1.9;
    font-size: 17px;
}

/* ==================================
   ABOUT FRAMEWORK
================================== */

.vp-about-framework {
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid rgba(var(--glow-color), .12);
    border-radius: 30px;

    overflow: hidden;
}

.vp-about-framework article {
    position: relative;

    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-inline-end: 1px solid rgba(var(--glow-color), .12);

    transition:
        background .3s ease,
        transform .3s ease;
}

.vp-about-framework article:last-child {
    border-inline-end: 0;
}

.vp-about-framework article:hover {
    background: rgba(255, 255, 255, .04);
}

.vp-about-framework span {
    font-size: clamp(28px, 3vw, 52px);

    font-weight: 900;

    letter-spacing: -.05em;
}

.vp-about-framework article::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(var(--glow-color), .10);

    pointer-events: none;
}

/* ==================================================
   THEMES PAGE
================================================== */

/* ==================================
   THEMES HERO
================================== */

.vp-themes-hero {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);

    padding:
        clamp(130px, 15vw, 220px) 0;

    text-align: center;

    border-bottom:
        1px solid rgba(var(--glow-color), .12);

    background:
        radial-gradient(circle at 50% 20%,
            rgba(var(--glow-color), .18),
            transparent 40%);
}

.vp-themes-hero h1 {
    max-width: 1100px;
    margin: 24px auto;

    font-size:
        clamp(58px, 9vw, 140px);

    line-height: .88;

    letter-spacing: -.08em;
}

.vp-themes-hero p {
    max-width: 760px;
    margin: 0 auto 36px;

    color: var(--subtext);

    font-size: 18px;

    line-height: 1.9;
}

/* ==================================
   THEMES STATS
   Theme System Value Strip
================================== */

.vp-themes-stats {
    position: relative;
    padding: 90px 0 30px;
    overflow: hidden;
}

.vp-themes-stats::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(900px, 80vw);
    height: 260px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(var(--glow-color), .12),
            transparent 70%);
    pointer-events: none;
}

.vp-themes-stats .vp-studio-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border: 1px solid rgba(var(--glow-color), .14);
    border-radius: 34px;
    overflow: hidden;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .015));

    box-shadow: 0 34px 100px rgba(0, 0, 0, .16);
}

.vp-themes-stats article {
    position: relative;
    min-height: 230px;
    padding: 44px 34px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-inline-end: 1px solid rgba(var(--glow-color), .12);

    transition:
        background .3s ease,
        transform .3s ease;
}

.vp-themes-stats article:last-child {
    border-inline-end: 0;
}

.vp-themes-stats article:hover {
    background: rgba(255, 255, 255, .04);
    transform: translateY(-6px);
}

.vp-themes-stats strong {
    display: block;
    margin-bottom: 18px;

    font-size: clamp(60px, 8vw, 130px);
    line-height: .78;
    letter-spacing: -.08em;

    color: var(--text);
}

.vp-themes-stats span {
    max-width: 180px;

    color: var(--subtext);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .16em;
    text-transform: uppercase;
    line-height: 1.6;
}

.vp-themes-stats article::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;

    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            var(--primary),
            transparent);

    transform: scaleX(0);
    transition: transform .3s ease;
}

.vp-themes-stats article:hover::after {
    transform: scaleX(1);
}

/* ==================================
   THEMES GRID
================================== */

.vp-themes-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.vp-theme-card {
    position: relative;
    overflow: hidden;

    padding: 28px;

    border-radius: 34px;

    text-align: left;

    cursor: pointer;

    border: 1px solid rgba(var(--glow-color), .12);

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .018));

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    color: inherit;
}

.vp-theme-card::after {
    content: "";

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 22px;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(var(--glow-color), .35),
            transparent);

    opacity: .55;
}

.vp-theme-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(var(--glow-color), .30);

    background:
        rgba(255, 255, 255, .045);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .22);
}

.vp-theme-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(var(--glow-color), .28);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .18);
}

.vp-theme-swatch {
    position: relative;
    overflow: hidden;

    height: 210px;

    border-radius: 26px;

    margin-bottom: 28px;

    border: 1px solid rgba(255, 255, 255, .14);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 24px 70px rgba(0, 0, 0, .18);
}

.vp-theme-swatch::before {
    content: "";

    position: absolute;

    left: 22px;
    right: 22px;
    top: 24px;

    height: 10px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
}

.vp-theme-swatch::after {
    content: "";

    position: absolute;

    left: 22px;
    right: 70px;
    top: 52px;

    height: 10px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .32);

    box-shadow:
        0 28px 0 rgba(255, 255, 255, .22),
        0 86px 0 rgba(0, 0, 0, .16);
}

.vp-theme-content span {
    display: block;

    margin-bottom: 14px;

    color: var(--primary);

    font-weight: 900;

    letter-spacing: .18em;
}

.vp-theme-content h3 {
    margin: 0 0 12px;

    font-size: clamp(32px, 3vw, 54px);

    line-height: .95;

    letter-spacing: -.05em;
}

.vp-theme-content p {
    margin: 0 0 20px;

    color: var(--subtext);

    line-height: 1.8;
}

.vp-theme-content small {
    color: var(--primary);

    font-size: 12px;

    letter-spacing: .12em;
}

.vp-theme-card.active {
    border-color:
        rgba(var(--glow-color), .55);

    box-shadow:
        0 0 0 1px rgba(var(--glow-color), .22),
        0 36px 100px rgba(0, 0, 0, .26);
}

.vp-theme-card.active .vp-theme-swatch {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .22),
        0 0 0 1px rgba(var(--glow-color), .22),
        0 28px 80px rgba(0, 0, 0, .22);
}

.vp-theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.vp-theme-tags li {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(var(--glow-color), .12);
    color: var(--subtext);
    font-size: 12px;
    font-weight: 800;
}

.vp-theme-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(var(--glow-color));

    display: inline-block;
    margin-left: 10px;

    box-shadow:
        0 0 10px rgba(var(--glow-color), .8),
        0 0 20px rgba(var(--glow-color), .5);

    animation: vpPulse 2s infinite;
}

@keyframes vpPulse {
    50% {
        transform: scale(1.4);
    }
}

.vp-theme-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(var(--glow-color), .12);

    color: rgb(var(--glow-color));

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.vp-theme-live-dot,
.vp-theme-status {
    display: none;
}

.vp-theme-card.active .vp-theme-live-dot {
    display: inline-block;
}

.vp-theme-card.active .vp-theme-status {
    display: inline-flex;
}

/* ==================================
   THEMES NOTE
================================== */

.vp-themes-note {
    text-align: center;
    padding-bottom: 120px;
}

.vp-themes-note p {
    max-width: 700px;
    margin: auto;

    color: var(--subtext);

    line-height: 1.9;
}

/* ==================================================
   PROJECTS PAGE
   VibraPeak Showcase / Work Collection
================================================== */

/* ==================================
   PROJECTS HERO
================================== */

.vp-projects-hero {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);

    padding: clamp(120px, 14vw, 210px) 0;

    position: relative;
    overflow: hidden;

    border-bottom: 1px solid rgba(var(--glow-color), .12);

    background:
        radial-gradient(circle at 75% 25%, rgba(var(--glow-color), .18), transparent 38%);
}

.vp-projects-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
}

.vp-projects-hero h1 {
    max-width: 950px;
    margin: 22px 0;
    font-size: clamp(64px, 9vw, 132px);
    line-height: .88;
    letter-spacing: -.08em;
}

.vp-projects-hero p {
    max-width: 720px;
    color: var(--subtext);
    font-size: 18px;
    line-height: 1.9;
}

.vp-projects-count {
    margin-top: 38px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(var(--glow-color), .14);
}

.vp-projects-count strong {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -.06em;
}

.vp-projects-count span {
    color: var(--subtext);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vp-projects-hero-visual {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 520px;
    border-radius: 38px;
    border: 1px solid rgba(var(--glow-color), .14);
    box-shadow: 0 35px 110px rgba(0, 0, 0, .26);
    text-decoration: none;
}

.vp-projects-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    opacity: .92;
    transition: transform .45s ease, opacity .45s ease;
}

.vp-projects-hero-visual:hover img {
    transform: scale(1.04);
    opacity: 1;
}

.vp-projects-hero-visual span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ==================================
   FEATURED PROJECTS
================================== */

.vp-featured-projects {
    margin-top: 90px;
    display: grid;
    gap: 34px;
}

.vp-project-feature {
    display: grid;
    grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 5vw, 80px);
    align-items: center;

    padding: 34px;
    border-radius: 38px;

    text-decoration: none;
    color: inherit;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .016));

    border: 1px solid rgba(var(--glow-color), .12);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.vp-project-feature:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
}

.vp-project-feature:nth-child(even) img {
    order: 2;
}

.vp-project-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--glow-color), .30);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .22);
}

.vp-project-feature img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;

    border-radius: 30px;

    border: 1px solid rgba(var(--glow-color), .12);

    transition: transform .45s ease, opacity .45s ease;

    opacity: .94;
}

.vp-project-feature:hover img {
    transform: scale(1.025);
    opacity: 1;
}

.vp-project-feature div {
    padding: 10px;
}

.vp-project-feature span {
    display: block;
    margin-bottom: 18px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.vp-project-feature h3 {
    margin: 0 0 18px;

    max-width: 760px;

    font-size: clamp(38px, 5vw, 78px);

    line-height: .9;

    letter-spacing: -.07em;
}

.vp-project-feature p {
    max-width: 560px;

    margin: 0;

    color: var(--subtext);

    font-size: 16px;
    line-height: 1.9;
}

/* ==================================
   PROJECT CAPABILITIES
================================== */

.vp-projects-capabilities {
    padding: 40px 0 120px;
}

.vp-projects-capabilities .vp-studio-container {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid rgba(var(--glow-color), .12);
    border-bottom: 1px solid rgba(var(--glow-color), .12);
}

.vp-projects-capabilities span {
    position: relative;

    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;

    border-inline-end:
        1px solid rgba(var(--glow-color), .12);

    font-size:
        clamp(28px, 3vw, 54px);

    font-weight: 900;

    line-height: .9;

    letter-spacing: -.05em;

    transition:
        background .3s ease,
        transform .3s ease;
}

.vp-projects-capabilities span:last-child {
    border-inline-end: 0;
}

.vp-projects-capabilities span:hover {
    background: rgba(255, 255, 255, .035);
}

.vp-projects-capabilities span::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 20%;
    right: 20%;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);

    transition: transform .3s ease;
}

.vp-projects-capabilities span:hover::after {
    transform: scaleX(1);
}

/* ==================================
   PROJECT LIBRARY
================================== */

.vp-project-library-grid {
    margin-top: 80px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.vp-library-project {
    display: block;

    overflow: hidden;

    border-radius: 30px;

    text-decoration: none;

    color: inherit;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .015));

    border: 1px solid rgba(var(--glow-color), .12);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.vp-library-project:hover {
    transform: translateY(-8px);

    border-color:
        rgba(var(--glow-color), .28);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .20);
}

.vp-library-project img {
    width: 100%;
    height: 260px;

    object-fit: cover;

    display: block;

    transition:
        transform .45s ease;
}

.vp-library-project:hover img {
    transform: scale(1.05);
}

.vp-library-project h3 {
    padding: 26px;

    margin: 0;

    font-size:
        clamp(24px, 2.2vw, 36px);

    line-height: 1;

    letter-spacing: -.04em;
}



/* ==================================================
   RESPONSIVE SYSTEM
   HOME PAGE
================================================== */

/* ==================================
   HOME - TABLET
   <= 1180px
================================== */

@media (max-width: 1180px) {

    .vp-home-hero-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .vp-home-hero-title,
    .vp-home-hero-text {
        max-width: 820px;
    }

    .vp-home-showcase {
        width: min(760px, 100%);
        height: 560px;
        margin-inline: auto;
    }

    .vp-home-layer {
        grid-template-columns: 90px minmax(220px, 360px) 1fr;
        gap: 28px;
    }

    .vp-home-work-head {
        grid-template-columns: 1fr;
        align-items: start;
        margin-bottom: 52px;
    }

    .vp-home-work-grid {
        grid-template-columns: 1fr;
    }

    .vp-home-work-card-large {
        min-height: 580px;
        grid-row: auto;
    }

    .vp-home-why-strip {
        grid-template-columns: 1fr;
    }

    .vp-home-why-strip article {
        min-height: auto;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-home-why-strip article:last-child {
        border-bottom: 0;
    }
}


/* ==================================
   HOME - MOBILE / TABLET
   <= 900px
================================== */

@media (max-width: 900px) {

    .vp-home-hero {
        padding: 110px 0 90px;
    }

    .vp-home-hero-layout {
        gap: 52px;
    }

    .vp-home-hero-title {
        letter-spacing: -.06em;
    }

    .vp-home-hero-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .vp-home-layers {
        margin-top: 56px;
    }

    .vp-home-layer {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 36px 0;
    }

    .vp-home-layer:hover,
    .vp-home-layer.is-active {
        padding-inline: 0;
    }

    .vp-home-showcase {
        height: 500px;
    }

    .vp-hero-project-main {
        width: 68%;
        height: 270px;
    }

    .vp-hero-project-top {
        width: 38%;
        height: 165px;
    }

    .vp-hero-project-mid {
        right: 0;
        width: 48%;
        height: 210px;
    }

    .vp-hero-project-bottom {
        left: 24px;
        width: 48%;
        height: 190px;
    }

    .vp-home-work-card-large {
        min-height: 520px;
    }

    .vp-home-why-strip {
        margin-top: 56px;
    }

    .vp-home-final {
        padding: 110px 0;
    }
}


/* ==================================
   HOME - MOBILE
   <= 640px
================================== */

@media (max-width: 640px) {

    .vp-home-hero {
        padding: 92px 0 72px;
    }

    .vp-home-hero-title {
        margin: 16px 0;
        font-size: clamp(44px, 15vw, 72px);
        line-height: .9;
        letter-spacing: -.055em;
    }

    .vp-home-hero-text {
        font-size: 15px;
    }

    .vp-home-showcase {
        height: auto;
        display: grid;
        gap: 14px;
    }

    .vp-hero-project,
    .vp-hero-project-main,
    .vp-hero-project-top,
    .vp-hero-project-mid,
    .vp-hero-project-bottom {
        position: relative;
        inset: auto;
        width: 100%;
        height: 220px;
        transform: none;
    }

    .vp-hero-project:hover {
        transform: translateY(-4px);
    }

    .vp-home-layer span {
        font-size: 16px;
    }

    .vp-home-layer h3,
    .vp-home-work-card h3,
    .vp-home-why-strip h3 {
        font-size: clamp(30px, 10vw, 48px);
        line-height: .95;
    }

    .vp-home-work-card {
        min-height: auto;
        padding: 22px;
        border-radius: 24px;
    }

    .vp-home-work-card-large {
        min-height: 460px;
        padding: 0;
    }

    .vp-home-work-card-large>div:last-child {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .vp-work-preview {
        height: 220px;
        border-radius: 20px;
    }

    .vp-home-why-strip article {
        padding: 30px 24px;
    }

    .vp-home-why-strip h3 {
        margin-top: 56px;
    }

    .vp-home-final h2 {
        font-size: clamp(42px, 14vw, 68px);
        line-height: .92;
        letter-spacing: -.055em;
    }

    .vp-home-final p {
        font-size: 15px;
    }
}


/* ==================================
   HOME - SMALL MOBILE
   <= 420px
================================== */

@media (max-width: 420px) {

    .vp-home-hero-title {
        font-size: clamp(40px, 16vw, 60px);
    }

    .vp-hero-project,
    .vp-hero-project-main,
    .vp-hero-project-top,
    .vp-hero-project-mid,
    .vp-hero-project-bottom {
        height: 190px;
        border-radius: 22px;
    }

    .vp-home-work-card-large {
        min-height: 400px;
    }

    .vp-home-final {
        padding: 86px 0;
    }
}

/* ==================================================
   RESPONSIVE SYSTEM
   CONTACT PAGE
================================================== */

/* ==================================
   CONTACT - TABLET
   <= 1180px
================================== */

@media (max-width: 1180px) {

    .vp-contact-hero-layout,
    .vp-contact-hub-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .vp-contact-hub-copy {
        position: static;
    }

    .vp-contact-signal {
        width: min(620px, 100%);
    }

    .vp-contact-form {
        margin-top: 64px;
    }

    .vp-contact-steps article {
        grid-template-columns: 90px minmax(240px, 300px) 1fr;
        gap: 28px;
    }
}


/* ==================================
   CONTACT - MOBILE / TABLET
   <= 900px
================================== */

@media (max-width: 900px) {

    .vp-contact-hero {
        padding: 110px 0 90px;
    }

    .vp-contact-hero-title {
        letter-spacing: -.06em;
    }

    .vp-contact-hero-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .vp-contact-option {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .vp-contact-option p {
        grid-column: auto;
    }

    .vp-contact-form {
        padding: 28px;
        border-radius: 28px;
    }

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

    .vp-contact-steps {
        margin-top: 56px;
    }

    .vp-contact-steps article {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 34px 0;
    }

    .vp-contact-steps article:hover {
        transform: none;
    }

    .vp-contact-final h2 {
        letter-spacing: -.06em;
    }
}


/* ==================================
   CONTACT - MOBILE
   <= 640px
================================== */

@media (max-width: 640px) {

    .vp-contact-hero {
        padding: 92px 0 72px;
    }

    .vp-contact-hero-title {
        margin: 16px 0;
        font-size: clamp(44px, 15vw, 72px);
        line-height: .9;
        letter-spacing: -.055em;
    }

    .vp-contact-hero-text {
        font-size: 15px;
    }

    .vp-contact-signal {
        padding: 24px;
        border-radius: 24px;
    }

    .vp-contact-signal::before {
        inset: 12px;
        border-radius: 18px;
    }

    .vp-signal-line {
        display: grid;
        gap: 8px;
        padding: 18px 0;
    }

    .vp-signal-line strong {
        font-size: 18px;
    }

    .vp-contact-option {
        padding: 22px;
        border-radius: 24px;
        gap: 14px;
    }

    .vp-contact-option strong {
        font-size: clamp(24px, 9vw, 34px);
    }

    .vp-contact-form {
        margin-top: 48px;
        padding: 22px;
        border-radius: 24px;
    }

    .vp-contact-form input,
    .vp-contact-form select,
    .vp-contact-form textarea {
        padding: 16px;
        border-radius: 15px;
    }

    .vp-contact-form textarea {
        min-height: 150px;
    }

    .vp-contact-form .vp-studio-btn {
        width: 100%;
    }

    .vp-contact-steps article {
        padding: 30px 0;
    }

    .vp-contact-final h2 {
        font-size: clamp(42px, 14vw, 68px);
        line-height: .92;
        letter-spacing: -.055em;
    }

    .vp-contact-final p {
        font-size: 15px;
    }
}


/* ==================================
   CONTACT - SMALL MOBILE
   <= 420px
================================== */

@media (max-width: 420px) {

    .vp-contact-hero-title {
        font-size: clamp(40px, 16vw, 60px);
    }

    .vp-contact-signal,
    .vp-contact-option,
    .vp-contact-form {
        border-radius: 20px;
    }

    .vp-contact-option::after {
        left: 22px;
        right: 22px;
    }

    .vp-contact-final h2 {
        font-size: clamp(38px, 15vw, 58px);
    }
}

/* ==================================================
   RESPONSIVE SYSTEM
   SERVICES PAGE
================================================== */

/* ==================================
   SERVICES - TABLET
   <= 1180px
================================== */

@media (max-width: 1180px) {

    .vp-studio-section {
        padding: 110px 0;
    }

    .vp-architecture-row {
        grid-template-columns: 90px minmax(260px, 480px) 1fr;
        gap: 28px;
        padding: 62px 0;
    }

    .vp-process-line {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-process-line article:nth-child(2) {
        border-inline-end: 0;
    }

    .vp-process-line article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-why-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================================
   SERVICES - MOBILE / TABLET
   <= 900px
================================== */

@media (max-width: 900px) {

    .vp-studio-section {
        padding: 90px 0;
    }

    .vp-studio-hero {
        padding: 110px 0 90px;
    }

    .vp-studio-hero-title {
        letter-spacing: -.06em;
    }

    .vp-studio-hero-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .vp-architecture-list {
        margin-top: 56px;
    }

    .vp-architecture-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 38px 0;
    }

    .vp-architecture-row::before {
        display: none;
    }

    .vp-architecture-row:hover h3 {
        transform: none;
    }

    .vp-process-line {
        grid-template-columns: 1fr;
        margin-top: 52px;
        border-radius: 24px;
    }

    .vp-process-line article {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-process-line article:last-child {
        border-bottom: 0;
    }

    .vp-why-grid {
        margin-top: 52px;
    }
}


/* ==================================
   SERVICES - MOBILE
   <= 640px
================================== */

@media (max-width: 640px) {

    .vp-studio-section {
        padding: 74px 0;
    }

    .vp-studio-hero {
        padding: 92px 0 72px;
    }

    .vp-studio-hero-title {
        margin: 16px 0;
        font-size: clamp(44px, 15vw, 72px);
        line-height: .9;
        letter-spacing: -.055em;
    }

    .vp-studio-hero-text {
        font-size: 15px;
    }

    .vp-architecture-number {
        font-size: 12px;
        letter-spacing: .2em;
    }

    .vp-architecture-row h3 {
        font-size: clamp(32px, 11vw, 52px);
        line-height: .94;
    }

    .vp-architecture-row p {
        max-width: 100%;
    }

    .vp-process-line article,
    .vp-why-grid article {
        padding: 22px;
    }

    .vp-process-line h3 {
        font-size: 22px;
    }

    .vp-why-grid article {
        border-radius: 24px;
    }

    .vp-why-grid h3 {
        font-size: clamp(26px, 9vw, 36px);
        line-height: 1;
    }
}


/* ==================================
   SERVICES - SMALL MOBILE
   <= 420px
================================== */

@media (max-width: 420px) {

    .vp-studio-hero-title {
        font-size: clamp(40px, 16vw, 60px);
    }

    .vp-process-line {
        border-radius: 20px;
    }

    .vp-process-line article,
    .vp-why-grid article {
        padding: 20px;
    }
}

/* ==================================================
   RESPONSIVE SYSTEM
   ABOUT PAGE
================================================== */

/* ==================================
   ABOUT - TABLET
   <= 1180px
================================== */

@media (max-width: 1180px) {

    .vp-about-manifesto {
        grid-template-columns: 1fr;
    }

    .vp-about-manifesto article {
        min-height: auto;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-about-manifesto article:last-child {
        border-bottom: 0;
    }

    .vp-about-belief-list article {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vp-about-framework {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-about-framework article:nth-child(2) {
        border-inline-end: 0;
    }

    .vp-about-framework article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }
}


/* ==================================
   ABOUT - MOBILE / TABLET
   <= 900px
================================== */

@media (max-width: 900px) {

    .vp-about-hero {
        padding: 110px 0 90px;
    }

    .vp-about-title {
        letter-spacing: -.06em;
    }

    .vp-about-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .vp-about-manifesto,
    .vp-about-belief-list,
    .vp-about-framework {
        margin-top: 56px;
    }

    .vp-about-manifesto article {
        padding: 36px 30px;
    }

    .vp-about-manifesto h3 {
        margin-top: 64px;
    }

    .vp-about-belief-list article {
        padding: 38px 0;
    }

    .vp-about-belief-list article:hover {
        padding-inline: 0;
    }

    .vp-about-framework article {
        min-height: 190px;
    }
}


/* ==================================
   ABOUT - MOBILE
   <= 640px
================================== */

@media (max-width: 640px) {

    .vp-about-hero {
        padding: 92px 0 72px;
    }

    .vp-about-title {
        margin: 16px auto;
        font-size: clamp(44px, 15vw, 72px);
        line-height: .9;
        letter-spacing: -.055em;
    }

    .vp-about-text {
        font-size: 15px;
    }

    .vp-about-manifesto {
        border-radius: 24px;
    }

    .vp-about-manifesto article {
        padding: 30px 24px;
    }

    .vp-about-manifesto h3 {
        margin-top: 56px;
        font-size: clamp(30px, 10vw, 48px);
        line-height: .95;
    }

    .vp-about-belief-list span {
        font-size: clamp(32px, 11vw, 52px);
        line-height: .92;
    }

    .vp-about-belief-list p {
        font-size: 15px;
    }

    .vp-about-framework {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .vp-about-framework article {
        min-height: 150px;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-about-framework article:last-child {
        border-bottom: 0;
    }

    .vp-about-framework article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-about-framework span {
        font-size: clamp(30px, 10vw, 44px);
    }

    .vp-about-framework article::before {
        width: 110px;
        height: 110px;
    }
}


/* ==================================
   ABOUT - SMALL MOBILE
   <= 420px
================================== */

@media (max-width: 420px) {

    .vp-about-title {
        font-size: clamp(40px, 16vw, 60px);
    }

    .vp-about-manifesto,
    .vp-about-framework {
        border-radius: 20px;
    }

    .vp-about-manifesto article {
        padding: 26px 20px;
    }

    .vp-about-framework article {
        min-height: 130px;
    }
}

/* ==================================================
   RESPONSIVE SYSTEM
   THEMES PAGE
================================================== */

/* ==================================
   THEMES - TABLET
   <= 1180px
================================== */

@media (max-width: 1180px) {

    .vp-themes-stats .vp-studio-container {
        grid-template-columns: 1fr;
    }

    .vp-themes-stats article {
        min-height: auto;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-themes-stats article:last-child {
        border-bottom: 0;
    }

    .vp-themes-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================================
   THEMES - MOBILE / TABLET
   <= 900px
================================== */

@media (max-width: 900px) {

    .vp-themes-hero {
        padding: 110px 0 90px;
    }

    .vp-themes-hero h1 {
        letter-spacing: -.06em;
    }

    .vp-themes-hero p {
        font-size: 16px;
        line-height: 1.8;
    }

    .vp-themes-stats {
        padding: 70px 0 20px;
    }

    .vp-themes-grid {
        gap: 20px;
    }

    .vp-theme-card {
        padding: 24px;
        border-radius: 28px;
    }

    .vp-theme-swatch {
        height: 190px;
        border-radius: 22px;
    }

    .vp-themes-note {
        padding-bottom: 90px;
    }
}


/* ==================================
   THEMES - MOBILE
   <= 640px
================================== */

@media (max-width: 640px) {

    .vp-themes-hero {
        padding: 92px 0 72px;
    }

    .vp-themes-hero h1 {
        margin: 16px auto;
        font-size: clamp(44px, 15vw, 72px);
        line-height: .9;
        letter-spacing: -.055em;
    }

    .vp-themes-hero p {
        font-size: 15px;
    }

    .vp-themes-stats {
        padding: 56px 0 10px;
    }

    .vp-themes-stats .vp-studio-container {
        border-radius: 24px;
    }

    .vp-themes-stats article {
        min-height: 170px;
        padding: 32px 22px;
    }

    .vp-themes-stats strong {
        font-size: clamp(52px, 18vw, 86px);
    }

    .vp-theme-card {
        padding: 22px;
        border-radius: 24px;
    }

    .vp-theme-card::after {
        left: 22px;
        right: 22px;
    }

    .vp-theme-swatch {
        height: 165px;
        margin-bottom: 22px;
        border-radius: 20px;
    }

    .vp-theme-swatch::before {
        left: 18px;
        right: 18px;
        top: 20px;
        height: 8px;
    }

    .vp-theme-swatch::after {
        left: 18px;
        right: 58px;
        top: 46px;
        height: 8px;
        box-shadow:
            0 24px 0 rgba(255, 255, 255, .22),
            0 72px 0 rgba(0, 0, 0, .16);
    }

    .vp-theme-content h3 {
        font-size: clamp(30px, 10vw, 48px);
        line-height: .95;
    }

    .vp-theme-content p {
        font-size: 15px;
    }

    .vp-theme-tags {
        gap: 7px;
    }

    .vp-theme-tags li {
        font-size: 11px;
        padding: 7px 9px;
    }

    .vp-theme-status {
        font-size: 10px;
        letter-spacing: .14em;
    }

    .vp-themes-note {
        padding-bottom: 72px;
    }

    .vp-themes-note p {
        font-size: 15px;
    }
}


/* ==================================
   THEMES - SMALL MOBILE
   <= 420px
================================== */

@media (max-width: 420px) {

    .vp-themes-hero h1 {
        font-size: clamp(40px, 16vw, 60px);
    }

    .vp-themes-stats .vp-studio-container,
    .vp-theme-card {
        border-radius: 20px;
    }

    .vp-theme-swatch {
        height: 145px;
        border-radius: 18px;
    }

    .vp-themes-stats article {
        min-height: 150px;
    }
}

/* ==================================================
   RESPONSIVE SYSTEM
   PROJECTS PAGE
================================================== */

/* ==================================
   PROJECTS - TABLET
   <= 1180px
================================== */

@media (max-width: 1180px) {

    .vp-projects-hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vp-projects-hero h1,
    .vp-projects-hero p {
        max-width: 860px;
    }

    .vp-projects-hero-visual {
        width: min(760px, 100%);
        margin-inline: auto;
    }

    .vp-project-feature,
    .vp-project-feature:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .vp-project-feature:nth-child(even) img {
        order: 0;
    }

    .vp-projects-capabilities .vp-studio-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-projects-capabilities span:nth-child(2) {
        border-inline-end: 0;
    }

    .vp-projects-capabilities span:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-project-library-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================================
   PROJECTS - MOBILE / TABLET
   <= 900px
================================== */

@media (max-width: 900px) {

    .vp-projects-hero {
        padding: 110px 0 90px;
    }

    .vp-projects-hero h1 {
        letter-spacing: -.06em;
    }

    .vp-projects-hero p {
        font-size: 16px;
        line-height: 1.8;
    }

    .vp-projects-count {
        margin-top: 30px;
    }

    .vp-projects-hero-visual,
    .vp-projects-hero-visual img {
        min-height: 420px;
    }

    .vp-featured-projects {
        margin-top: 64px;
        gap: 28px;
    }

    .vp-project-feature {
        padding: 24px;
        border-radius: 30px;
        gap: 28px;
    }

    .vp-project-feature img {
        height: 340px;
        border-radius: 24px;
    }

    .vp-project-feature div {
        padding: 0;
    }

    .vp-projects-capabilities {
        padding: 30px 0 90px;
    }

    .vp-projects-capabilities span {
        min-height: 150px;
    }

    .vp-project-library-grid {
        margin-top: 56px;
        gap: 20px;
    }
}


/* ==================================
   PROJECTS - MOBILE
   <= 640px
================================== */

@media (max-width: 640px) {

    .vp-projects-hero {
        padding: 92px 0 72px;
    }

    .vp-projects-hero h1 {
        margin: 16px 0;
        font-size: clamp(44px, 15vw, 72px);
        line-height: .9;
        letter-spacing: -.055em;
    }

    .vp-projects-hero p {
        font-size: 15px;
    }

    .vp-projects-count {
        width: 100%;
        justify-content: center;
        border-radius: 22px;
        padding: 14px 16px;
    }

    .vp-projects-count strong {
        font-size: 36px;
    }

    .vp-projects-count span {
        font-size: 11px;
    }

    .vp-projects-hero-visual {
        border-radius: 26px;
    }

    .vp-projects-hero-visual,
    .vp-projects-hero-visual img {
        min-height: 320px;
    }

    .vp-projects-hero-visual span {
        left: 18px;
        bottom: 18px;
        font-size: 11px;
        letter-spacing: .1em;
    }

    .vp-project-feature {
        padding: 20px;
        border-radius: 24px;
        gap: 22px;
    }

    .vp-project-feature img {
        height: 260px;
        border-radius: 20px;
    }

    .vp-project-feature h3 {
        font-size: clamp(32px, 11vw, 52px);
        line-height: .94;
    }

    .vp-project-feature p {
        font-size: 15px;
    }

    .vp-projects-capabilities {
        padding: 20px 0 74px;
    }

    .vp-projects-capabilities .vp-studio-container {
        grid-template-columns: 1fr;
    }

    .vp-projects-capabilities span {
        min-height: 135px;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(var(--glow-color), .12);
        font-size: clamp(30px, 11vw, 48px);
    }

    .vp-projects-capabilities span:last-child {
        border-bottom: 0;
    }

    .vp-projects-capabilities span:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(var(--glow-color), .12);
    }

    .vp-library-project {
        border-radius: 24px;
    }

    .vp-library-project img {
        height: 220px;
    }

    .vp-library-project h3 {
        padding: 22px;
        font-size: clamp(24px, 8vw, 34px);
    }
}


/* ==================================
   PROJECTS - SMALL MOBILE
   <= 420px
================================== */

@media (max-width: 420px) {

    .vp-projects-hero h1 {
        font-size: clamp(40px, 16vw, 60px);
    }

    .vp-projects-hero-visual,
    .vp-library-project,
    .vp-project-feature {
        border-radius: 20px;
    }

    .vp-projects-hero-visual,
    .vp-projects-hero-visual img {
        min-height: 280px;
    }

    .vp-project-feature {
        padding: 18px;
    }

    .vp-project-feature img {
        height: 220px;
    }

    .vp-library-project img {
        height: 190px;
    }
}

/* ==================================================
   RESPONSIVE SYSTEM
   GLOBAL CLEANUP
================================================== */

@media (max-width: 900px) {

    html,
    body {
        overflow-x: hidden;
    }

    .vp-studio-container {
        padding-inline: 22px;
    }

    .vp-studio-section {
        padding: 90px 0;
    }

    .vp-studio-title {
        letter-spacing: -.055em;
    }

    .vp-studio-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .vp-studio-actions {
        gap: 12px;
    }
}


@media (max-width: 640px) {

    .vp-studio-container {
        padding-inline: 18px;
    }

    .vp-studio-section {
        padding: 74px 0;
    }

    .vp-studio-kicker {
        font-size: 11px;
        letter-spacing: .16em;
    }

    .vp-studio-title {
        font-size: clamp(38px, 13vw, 58px);
        line-height: .92;
    }

    .vp-studio-text {
        font-size: 15px;
    }

    .vp-studio-actions {
        width: 100%;
    }

    .vp-studio-btn {
        width: 100%;
        min-height: 54px;
        padding-inline: 20px;
        border-radius: 14px;
    }

    img {
        max-width: 100%;
    }
}


@media (max-width: 420px) {

    .vp-studio-container {
        padding-inline: 16px;
    }

    .vp-studio-section {
        padding: 64px 0;
    }

    .vp-studio-title {
        font-size: clamp(34px, 14vw, 52px);
    }
}

/* ==================================
   FINAL CTA BUTTON HOVER FIX
================================== */

.vp-home-final .vp-studio-btn,
.vp-contact-final .vp-studio-btn,
.vp-studio-cta .vp-studio-btn,
.vp-final-cta-v2 .vp-studio-btn {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.vp-home-final .vp-studio-btn:hover,
.vp-contact-final .vp-studio-btn:hover,
.vp-studio-cta .vp-studio-btn:hover,
.vp-final-cta-v2 .vp-studio-btn:hover {
    transform: translateY(-3px);
}

.vp-home-final .vp-studio-btn-primary:hover,
.vp-contact-final .vp-studio-btn-primary:hover,
.vp-studio-cta .vp-studio-btn-primary:hover,
.vp-final-cta-v2 .vp-studio-btn-primary:hover {
    box-shadow: 0 18px 44px rgba(var(--glow-color), .25);
}

/* HOME FINAL CTA - FULL WIDTH FIX */

.vp-home-final {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

[dir="rtl"] .vp-home-final {
    margin-left: 0;
    margin-right: 50%;
    transform: translateX(50%);
}

/* =========================================================
   CONTACT SUCCESS MESSAGE
========================================================= */

.vp-contact-success {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 34px;
    padding: 18px 24px;

    max-width: 720px;

    border-radius: 24px;
    border: 1px solid rgba(80, 220, 140, .18);

    background:
        linear-gradient(
            135deg,
            rgba(80, 220, 140, .08),
            rgba(80, 160, 255, .05)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    color: var(--studio-text);

    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;

    box-shadow:
        0 16px 50px rgba(0,0,0,.14),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.vp-contact-success::before {
    content: "✓";

    width: 34px;
    height: 34px;

    margin-inline-end: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(80, 220, 140, .14);
    color: #4fd98d;

    font-size: 17px;
    font-weight: 800;

    flex-shrink: 0;
}

[hidden].vp-contact-success {
    display: none !important;
}

@media (max-width: 768px) {
    .vp-contact-success {
        padding: 16px 18px;
        margin-bottom: 28px;

        border-radius: 20px;

        font-size: 14px;
    }

    .vp-contact-success::before {
        width: 30px;
        height: 30px;

        margin-inline-end: 10px;

        font-size: 15px;
    }
}