/**
 * GOQUEER About Page – Scroll Animation Styles
 * Ported 1:1 from goqueer-incard-v3.html
 */

/* ========== SCROLL CONTAINER SETUP ========== */
body.page-template-page-about {
    overflow: hidden !important;
    height: 100vh !important;
}

body.page-template-page-about main {
    height: 100vh;
}

body.page-template-page-about main .container,
body.page-template-page-about main .container > article,
body.page-template-page-about main .container > article > div {
    height: 100%;
}

/* Glass-Card = Scroll-Host */
.gq-about-host {
    --card-h: calc(100vh - 152px);
    --black: #141414;
    --dark: #0a0a0a;
    --white: #f5f5f7;
    --grey: #86868b;
    --grey-dark: #424245;
    --pride-red: #E40303;
    --pride-orange: #FF8C00;
    --pride-yellow: #FFED00;
    --pride-green: #008026;
    --pride-blue: #004DFF;
    --pride-violet: #750787;
    --pride-pink: #FF69B4;
    --pride-cyan: #55CDFC;
    height: var(--card-h) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 !important;
    position: relative;
    scrollbar-width: none;
}

.gq-about-host::-webkit-scrollbar {
    display: none;
}

/* ========== BASE ========== */
.gq-about-page {
    background: var(--black);
    color: var(--white);
    font-family: var(--gq-font-body, 'Work Sans', sans-serif);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gq-about-page *,
.gq-about-page *::before,
.gq-about-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gq-about-page h1,
.gq-about-page h2,
.gq-about-page h3 {
    text-transform: lowercase;
}

/* ========== PROGRESS BAR ========== */
.gq-prog {
    position: sticky;
    top: 0;
    height: 2px;
    z-index: 100;
    background: linear-gradient(90deg,
        var(--pride-red), var(--pride-orange), var(--pride-yellow),
        var(--pride-green), var(--pride-blue), var(--pride-violet));
    width: 0%;
}

/* ========== GRADIENT TEXT ========== */
.gq-grad {
    background: linear-gradient(135deg,
        var(--pride-red), var(--pride-orange), var(--pride-yellow),
        var(--pride-green), var(--pride-blue), var(--pride-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gqGS 5s ease infinite;
}

@keyframes gqGS {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========== HERO ========== */
.gq-hero {
    height: 300vh;
    position: relative;
}

.gq-hero-sticky {
    position: sticky;
    top: 0;
    height: var(--card-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.gq-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(117, 7, 135, 0.12), transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(228, 3, 3, 0.08), transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0, 77, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 1.5s ease;
}

.gq-hero-bg.on {
    opacity: 1;
}

.gq-hero-ey {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.gq-hero-ey.vis {
    opacity: 1;
    transform: translateY(0);
}

.gq-hero-title {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(4rem, 12vw, 11rem);
    line-height: 0.75;
    letter-spacing: -5px;
    text-align: center;
    z-index: 2;
    will-change: transform, opacity;
}

.gq-hero-title .ln {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.gq-hero-title .ln.vis {
    opacity: 1;
    transform: translateY(0);
}

.gq-hero-title .ln:first-child {
    font-size: clamp(5rem, 16vw, 14rem);
}

.gq-hero-logo {
    display: inline-block;
    width: clamp(320px, 55vw, 680px);
    height: clamp(100px, 18vw, 220px);
    background: linear-gradient(135deg,
        var(--pride-red), var(--pride-orange), var(--pride-yellow),
        var(--pride-green), var(--pride-blue), var(--pride-violet));
    background-size: 200% 200%;
    animation: gqGS 5s ease infinite;
    -webkit-mask-image: url(https://goqueer.net/wp-content/uploads/2024/04/goqueer-verein-logo-V24-slogan.webp);
    mask-image: url(https://goqueer.net/wp-content/uploads/2024/04/goqueer-verein-logo-V24-slogan.webp);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.gq-hero-sub {
    margin-top: 48px;
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 400;
    font-size: clamp(1rem, 3vw, 2.75rem);
    letter-spacing: -2px;
    color: var(--grey);
    text-align: center;
    max-width: 90%;
    line-height: 1.1;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.gq-hero-sub.vis {
    opacity: 1;
    transform: translateY(0);
}

.gq-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: gqFI 1s ease 2s forwards;
}

.gq-scroll-hint span {
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
}

.gq-scroll-arrow {
    font-size: 1.2rem;
    color: var(--white);
    animation: gqSB 2s ease-in-out infinite;
}

@keyframes gqSB {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

@keyframes gqFI {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== ABOUT ========== */
.gq-about {
    height: 400vh;
    position: relative;
}

.gq-about-sticky {
    position: sticky;
    top: 0;
    height: var(--card-h);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.gq-about-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(6rem, 18vw, 16rem);
    letter-spacing: -6px;
    white-space: nowrap;
    color: rgba(97, 255, 112, 0.02);
    text-transform: lowercase;
    pointer-events: none;
    will-change: transform;
}

.gq-about-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0 24px;
    text-align: center;
}

.gq-about-ey {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: -1px;
    text-transform: lowercase;
    color: #61FF70;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gq-about-ey.vis {
    opacity: 1;
    transform: translateY(0);
}

.gq-ab {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 28px;
}

.gq-ab.vis {
    opacity: 1;
    transform: translateY(0);
}

.gq-ab p {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.8;
    color: var(--grey);
}

.gq-ab p strong {
    color: var(--white);
    font-weight: 600;
}

.gq-ab.hb p {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    line-height: 1.4;
    color: #61FF70;
    letter-spacing: -0.5px;
}

.gq-ab .hl {
    color: var(--pride-pink);
}

.gq-ab-div {
    width: 48px;
    height: 2px;
    background: #6962FE;
    margin: 0 auto 28px;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gq-ab-div.vis {
    opacity: 1;
    transform: scaleX(1);
}

/* ========== PILLARS ========== */
.gq-pillars {
    height: 400vh;
    position: relative;
}

.gq-pillars-sticky {
    position: sticky;
    top: 0;
    height: var(--card-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0 48px;
}

.gq-pillars-h {
    text-align: center;
    margin-bottom: 64px;
}

.gq-pillars-h h2 {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: -1px;
    color: #61FF70;
}

.gq-pillars-h h2 em {
    font-style: normal;
    color: #61FF70;
}

.gq-pillars-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    padding-left: 100%;
}

.gq-pcard {
    flex: 0 0 340px;
    height: 440px;
    border-radius: 24px;
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gq-pcard:nth-child(1) {
    background: linear-gradient(160deg, rgba(105, 98, 254, 0.5) 0%, rgba(20, 20, 20, 0.95) 60%);
}

.gq-pcard:nth-child(2) {
    background: linear-gradient(160deg, rgba(97, 255, 112, 0.45) 0%, rgba(20, 20, 20, 0.95) 60%);
}

.gq-pcard:nth-child(3) {
    background: linear-gradient(160deg, rgba(0, 106, 255, 0.5) 0%, rgba(20, 20, 20, 0.95) 60%);
}

.gq-pcard:hover {
    transform: scale(1.02);
}

.gq-pglow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.15;
    transition: opacity 0.6s;
    pointer-events: none;
}

.gq-pcard:hover .gq-pglow {
    opacity: 0.25;
}

.gq-pcard:nth-child(1) .gq-pglow {
    background: radial-gradient(circle, #6962FE, transparent 60%);
}

.gq-pcard:nth-child(2) .gq-pglow {
    background: radial-gradient(circle, #61FF70, transparent 60%);
}

.gq-pcard:nth-child(3) .gq-pglow {
    background: radial-gradient(circle, #006aff, transparent 60%);
}

.gq-picon {
    font-size: 2.4rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.gq-pcard:nth-child(1) .gq-picon {
    color: #6962FE;
}

.gq-pcard:nth-child(2) .gq-picon {
    color: #61FF70;
}

.gq-pcard:nth-child(3) .gq-picon {
    color: #006aff;
}

.gq-pcard h3 {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.gq-pcard p {
    color: var(--grey);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.gq-pillars-prog {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin: 40px auto 0;
    overflow: hidden;
}

.gq-pillars-progfill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
        var(--pride-red), var(--pride-orange), var(--pride-yellow),
        var(--pride-green), var(--pride-blue), var(--pride-violet));
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* ========== TIMELINE ========== */
.gq-tl {
    height: 800vh;
    position: relative;
}

.gq-tl-sticky {
    position: sticky;
    top: 0;
    height: var(--card-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gq-tl-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.gq-tl-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.gq-tl-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--black) 0%, transparent 25%, transparent 75%, var(--black) 100%),
        radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.gq-tl-big {
    position: absolute;
    bottom: 8%;
    right: 10%;
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(5rem, 14vw, 11rem);
    letter-spacing: -10px;
    padding-right: 12px;
    line-height: 0.85;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.gq-tl-label {
    position: absolute;
    top: clamp(30px, 6vh, 60px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: -1px;
    text-transform: lowercase;
    color: #61FF70;
    z-index: 5;
}

.gq-tl-prog {
    position: absolute;
    bottom: clamp(30px, 6vh, 60px);
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 500px);
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    z-index: 5;
    overflow: hidden;
}

.gq-tl-progfill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
        var(--pride-red), var(--pride-orange), var(--pride-yellow),
        var(--pride-green), var(--pride-blue), var(--pride-violet));
    border-radius: 3px;
}

.gq-tl-dots {
    position: absolute;
    bottom: clamp(22px, 5.5vh, 52px);
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 500px);
    display: flex;
    justify-content: space-between;
    z-index: 6;
    pointer-events: none;
}

.gq-tld {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.gq-tld.p {
    background: var(--white);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.gq-tld.a {
    background: var(--pride-pink);
    box-shadow: 0 0 14px rgba(255, 105, 180, 0.5);
    transform: scale(1.4);
}

.gq-tl-vp {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 520px;
    height: 260px;
    perspective: 800px;
}

.gq-tc {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    transform: translateY(60px) scale(0.9) rotateX(8deg);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.gq-tc.on {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    pointer-events: auto;
}

.gq-tc.ex {
    opacity: 0;
    transform: translateY(-40px) scale(0.95) rotateX(-5deg);
}

.gq-tc-t {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease 0.15s;
}

.gq-tc.on .gq-tc-t {
    opacity: 1;
    transform: translateY(0);
}

.gq-tc.ms .gq-tc-t {
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.gq-tc-p {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    line-height: 1.6;
    max-width: 440px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease 0.25s;
}

.gq-tc.on .gq-tc-p {
    opacity: 1;
    transform: translateY(0);
}

.gq-tl-al,
.gq-tl-ar {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: all 1s ease;
    pointer-events: none;
    filter: blur(60px);
    z-index: 1;
}

.gq-tl-al {
    left: 8%;
    transform: translate(0, -50%);
    background: var(--pride-red);
}

.gq-tl-ar {
    right: 8%;
    transform: translate(0, -50%);
    background: var(--pride-blue);
}

.gq-tl-sticky.acc .gq-tl-al {
    opacity: 0.12;
}

.gq-tl-sticky.acc .gq-tl-ar {
    opacity: 0.1;
}

/* ========== REACH ========== */
.gq-reach {
    height: 400vh;
    position: relative;
}

.gq-reach-sticky {
    position: sticky;
    top: 0;
    height: var(--card-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gq-reach-sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.gq-reach-inner {
    text-align: center;
    max-width: 600px;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 2;
}

.gq-reach-inner.vis {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gq-reach h2 {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -2px;
    margin-bottom: 16px;
    line-height: 1.05;
}

.gq-reach p {
    color: var(--grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

.gq-reach-map {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    will-change: opacity;
}

.gq-reach-map-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    max-width: none;
    height: auto;
    opacity: 0.12;
    filter: grayscale(1) brightness(1.5);
    will-change: transform;
}

/* Pulsing dot – Magdeburg position */
.gq-reach-dot {
    position: absolute;
    top: 20%;
    left: 49%;
    width: 40px;
    height: 40px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gq-reach-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 1.6rem;
    color: #61FF70;
    filter: drop-shadow(0 0 8px #61FF70) drop-shadow(0 0 20px rgba(97, 255, 112, 0.4));
    text-transform: none;
}

.gq-reach-dot.on .gq-reach-icon {
    animation: gqIconPulse 2s ease-in-out infinite;
}

@keyframes gqIconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 0 8px #61FF70) drop-shadow(0 0 20px rgba(97, 255, 112, 0.4)); }
    50% { transform: translate(-50%, -50%) scale(1.2); filter: drop-shadow(0 0 12px #61FF70) drop-shadow(0 0 30px rgba(97, 255, 112, 0.6)); }
}

.gq-reach-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #61FF70;
    opacity: 0;
}

.gq-reach-dot.on .gq-reach-ping {
    animation: gqReachPing 3s ease-out infinite;
}

.gq-reach-dot.on .gq-reach-ping:nth-child(2) {
    animation-delay: 1s;
}

.gq-reach-dot.on .gq-reach-ping:nth-child(3) {
    animation-delay: 2s;
}

@keyframes gqReachPing {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* ========== CTA ========== */
.gq-cta {
    height: 200vh;
    position: relative;
}

.gq-cta-sticky {
    position: sticky;
    top: 0;
    height: var(--card-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.gq-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 50% 70%, rgba(228, 3, 3, 0.12), transparent 70%),
        radial-gradient(ellipse 60% 40% at 30% 60%, rgba(0, 77, 255, 0.08), transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 50%, rgba(117, 7, 135, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 2s ease;
}

.gq-cta-bg.on {
    opacity: 1;
}

.gq-cta-c {
    z-index: 2;
    will-change: transform, opacity;
}

.gq-cta-c h2 {
    font-family: var(--gq-font-heading, 'Arvo', serif);
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -3px;
    line-height: 0.95;
    margin-bottom: 28px;
}

.gq-cta-c p {
    color: var(--grey);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 440px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.gq-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gq-btn {
    padding: 16px 40px;
    border-radius: 980px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--gq-font-body, 'Work Sans', sans-serif);
    cursor: pointer;
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gq-btn-w {
    background: var(--white);
    color: #000;
}

.gq-btn-w:hover {
    transform: scale(1.06);
    box-shadow: 0 0 60px rgba(245, 245, 247, 0.15);
}

.gq-btn-g {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gq-btn-g:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 900px) {
    .gq-hero-title {
        letter-spacing: -3px;
    }

    .gq-pillars-sticky {
        padding: 0 24px;
    }

    .gq-pillars-track {
        padding: 0 24px;
    }

    .gq-pcard {
        flex: 0 0 300px;
        height: 400px;
        padding: 36px 28px;
    }

    .gq-tl-vp {
        max-width: 400px;
        height: 240px;
    }

    .gq-tl-al,
    .gq-tl-ar {
        display: none;
    }

    .gq-reach {
        padding: 120px 24px;
    }

    .gq-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 480px) {
    .gq-pcard {
        flex: 0 0 85%;
    }

    .gq-tl-vp {
        max-width: 90%;
        height: 280px;
    }

    .gq-tc-t {
        font-size: 1.5rem;
    }

}
