/* =============================================
   GLITCH WIDGET — GW WIDGET CSS
   Fonts: Orbitron (heading), Share Tech Mono (body)
   Both already loaded by the main plugin.
   ============================================= */

/* ── Logo (Glitch Float) ──────────────────────────────── */
.gw-logo-outer {
    display: flex;
}
.gw-logo-outer.align-left    { justify-content: flex-start; }
.gw-logo-outer.align-center  { justify-content: center; }
.gw-logo-outer.align-right   { justify-content: flex-end; }

.gw-logo-wrap {
    position: relative;
    display: inline-block;
}
.gw-logo-main {
    display: block;
    position: relative;
    z-index: 1;
}
.gw-logo-float .gw-logo-main {
    animation: gw-float 6s ease-in-out infinite;
}
.gw-logo-ghost {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
}
.gw-logo-ghost-r { animation: gw-logo-r 9s infinite; }
.gw-logo-ghost-c { animation: gw-logo-c 9s 0.05s infinite; }

/* Text logo */
.gw-logo-text-wrap {
    position: relative;
    display: inline-block;
}
.gw-logo-text-main {
    display: block;
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    white-space: nowrap;
}
.gw-logo-float .gw-logo-text-main {
    animation: gw-float 6s ease-in-out infinite;
}
.gw-logo-text-ghost {
    position: absolute;
    inset: 0;
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
}
.gw-logo-text-ghost.gw-logo-ghost-r { color: #cc1541; animation: gw-logo-r 9s infinite; }
.gw-logo-text-ghost.gw-logo-ghost-c { color: #00e5ff; animation: gw-logo-c 9s 0.05s infinite; }

@keyframes gw-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes gw-logo-r {
    0%,92%,100% { transform: translate(0,0);   opacity: 0; }
    93%  { transform: translate(-4px, 1px);  opacity: 0.7; }
    94%  { transform: translate(4px, -1px);  opacity: 0.5; }
    95%  { transform: translate(-3px, 2px);  opacity: 0.6; }
    96%  { transform: translate(0,0);        opacity: 0; }
    97%  { transform: translate(3px, -2px);  opacity: 0.4; }
    98%  { transform: translate(0,0);        opacity: 0; }
}
@keyframes gw-logo-c {
    0%,92%,100% { transform: translate(0,0);   opacity: 0; }
    93%  { transform: translate(4px, -1px);  opacity: 0.4; }
    94%  { transform: translate(-4px, 1px);  opacity: 0.3; }
    95%  { transform: translate(3px, -2px);  opacity: 0.35; }
    96%  { transform: translate(0,0);        opacity: 0; }
    97%  { transform: translate(-3px, 2px);  opacity: 0.25; }
    98%  { transform: translate(0,0);        opacity: 0; }
}
/* For image ghost: use CSS filter to tint */
.gw-logo-ghost-r.gw-logo-img-ghost {
    filter: sepia(1) hue-rotate(300deg) saturate(6);
}
.gw-logo-ghost-c.gw-logo-img-ghost {
    filter: sepia(1) hue-rotate(165deg) saturate(6);
}

/* ── SysLabel ─────────────────────────────────────────── */
.gw-sys-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}
.gw-sys-label-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #cc1541;
    flex-shrink: 0;
}
.gw-sys-label-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #cc1541;
}

/* ── Glitch Heading ───────────────────────────────────── */
.gw-glitch-wrap {
    position: relative;
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
}
.gw-heading-line-gradient {
    display: block;
    background: linear-gradient(90deg, #cc1541 0%, #ff2d55 60%, #cc1541 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gw-heading-line-white { display: block; color: #fff; }

/* Solo glitch: the visible text itself jitters + slices + flashes red — no duplicate ghost text. */
.gw-glitch-active .gw-heading-line-white,
.gw-glitch-active .gw-heading-line-gradient {
    animation: gw-glitch-jitter 9s infinite;
    will-change: transform;
}
.gw-glitch-active .gw-heading-line-white {
    animation-name: gw-glitch-jitter, gw-glitch-flash-red;
}
@keyframes gw-glitch-jitter {
    0%, 92%, 100% { transform: translate(0,0); clip-path: none; }
    93% { transform: translate(-3px,1px);  clip-path: polygon(0 15%,100% 15%,100% 35%,0 35%); }
    94% { transform: translate(3px,-1px);  clip-path: polygon(0 55%,100% 55%,100% 75%,0 75%); }
    95% { transform: translate(-2px,2px);  clip-path: polygon(0 0,100% 0,100% 10%,0 10%); }
    96% { transform: translate(0,0); clip-path: none; }
    97% { transform: translate(2px,-2px);  clip-path: polygon(0 85%,100% 85%,100% 100%,0 100%); }
    98% { transform: translate(0,0); clip-path: none; }
}
@keyframes gw-glitch-flash-red {
    0%, 92%, 100% { color: #fff; text-shadow: none; }
    93% { color: #cc1541; text-shadow: -2px 0 #00e5ff, 2px 0 rgba(204,21,65,0.7); }
    94% { color: #cc1541; text-shadow: 2px 0 #00e5ff, -2px 0 rgba(204,21,65,0.7); }
    95% { color: #ff2d55; text-shadow: -2px 0 #00e5ff; }
    96% { color: #fff; text-shadow: none; }
    97% { color: #cc1541; text-shadow: 2px 0 #00e5ff; }
    98% { color: #fff; text-shadow: none; }
}

/* ── Binary Ticker ────────────────────────────────────── */
.gw-binary-ticker {
    overflow: hidden;
    border-top: 1px solid rgba(204,21,65,0.15);
    border-bottom: 1px solid rgba(204,21,65,0.15);
    background: rgba(204,21,65,0.04);
}
.gw-ticker-track {
    display: flex;
    white-space: nowrap;
    padding: 6px 0;
    user-select: none;
    animation: gw-binary-run 22s linear infinite;
}
.gw-ticker-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(204,21,65,0.45);
}
@keyframes gw-binary-run {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Stats Counter ────────────────────────────────────── */
.gw-stats-box {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(204,21,65,0.35) 0%, rgba(8,8,8,0.98) 60%, #080808 100%);
    border: 1px solid rgba(204,21,65,0.28);
    overflow: hidden;
}
.gw-stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.gw-stat-col {
    text-align: center;
    position: relative;
}
.gw-stat-col + .gw-stat-col {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 3rem;
}
.gw-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 64px);
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.gw-stat-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(204,21,65,0.8);
    margin-bottom: 0.5rem;
}
.gw-stat-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}
@media (max-width: 767px) {
    .gw-stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gw-stat-col + .gw-stat-col { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
}

/* ── Service Card ─────────────────────────────────────── */
.gw-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gw-service-card {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}
.gw-service-card:hover { border-color: rgba(204,21,65,0.35); }
.gw-service-red-strip {
    width: 100%;
    height: 3px;
    background: #cc1541;
    flex-shrink: 0;
    transition: height 0.3s;
}
.gw-service-card:hover .gw-service-red-strip { height: 6px; }
.gw-service-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}
.gw-service-ghost-num {
    position: absolute;
    top: 0.25rem; right: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.gw-service-icon-box {
    width: 40px; height: 40px;
    background: #1e1e1e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative; z-index: 1;
    flex-shrink: 0;
}
.gw-service-icon-box svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.gw-service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative; z-index: 1;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gw-service-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    position: relative; z-index: 1;
}
.gw-service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
}
.gw-service-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
.gw-service-arrow { color: #cc1541; flex-shrink: 0; margin-top: 1px; }
.gw-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    align-self: flex-start;
    position: relative; z-index: 1;
}
.gw-service-btn:hover { border-color: #cc1541; color: #cc1541; }
@media (max-width: 1023px) { .gw-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .gw-services-grid { grid-template-columns: 1fr; } }

/* ── Portfolio Grid ───────────────────────────────────── */
.gw-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gw-portfolio-card {
    position: relative;
    overflow: hidden;
    background: #111111;
    cursor: pointer;
    aspect-ratio: 4/5;
}
.gw-portfolio-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s ease, transform 0.7s ease;
    display: block;
}
.gw-portfolio-card:hover img { filter: grayscale(0%); transform: scale(1.05); }
.gw-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.15) 55%, transparent 100%);
}
.gw-portfolio-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.15);
}
.gw-portfolio-panel {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    background: rgba(8,8,8,0.96);
    border-top: 2px solid #cc1541;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.gw-portfolio-card:hover .gw-portfolio-panel { transform: translateY(0); }
.gw-portfolio-cat {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.gw-portfolio-client {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.gw-portfolio-result {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #cc1541;
}
@media (max-width: 1023px) { .gw-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .gw-portfolio-grid { grid-template-columns: 1fr; aspect-ratio: unset; } }

/* ── Contact CTA ──────────────────────────────────────── */
.gw-contact-cta {
    position: relative;
    overflow: hidden;
    background: #080808;
    padding: 6rem 1.5rem;
    text-align: center;
}
.gw-contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.gw-contact-glow-1 {
    top: 25%; left: 25%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(204,21,65,0.22) 0%, transparent 70%);
    animation: gw-pulse-red 6s ease-in-out infinite;
}
.gw-contact-glow-2 {
    bottom: 25%; right: 25%;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(204,21,65,0.15) 0%, transparent 70%);
    animation: gw-pulse-red 8s ease-in-out infinite 2s;
}
@keyframes gw-pulse-red {
    0%,100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}
.gw-contact-inner {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
}
.gw-contact-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4.5vw, 56px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.gw-contact-title-accent {
    background: linear-gradient(90deg, #cc1541, #ff2d55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gw-contact-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    max-width: 28rem;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}
.gw-contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 36rem;
    margin: 0 auto;
}
.gw-contact-option {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}
.gw-contact-option:hover { border-color: #cc1541; background: rgba(204,21,65,0.07); }
.gw-contact-option-icon { color: rgba(255,255,255,0.45); }
.gw-contact-option-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.2; display: block; }
.gw-contact-option-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}
.gw-contact-option-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.6;
}
@media (max-width: 639px) { .gw-contact-options { grid-template-columns: 1fr; } }

/* ── Page Hero ────────────────────────────────────────── */
.gw-page-hero {
    position: relative;
    overflow: hidden;
    background: #080808;
    padding: 10rem 1.5rem 6rem;
}
.gw-page-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.gw-page-hero-glow-1 {
    top: 30%; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(204,21,65,0.1) 0%, transparent 70%);
}
.gw-page-hero-glow-2 {
    bottom: 20%; right: 10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(204,21,65,0.07) 0%, transparent 70%);
}
.gw-page-hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}
.gw-page-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 900px;
    margin: 0;
}
.gw-page-hero-highlight {
    background: linear-gradient(90deg, #cc1541 0%, #ff2d55 60%, #cc1541 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gw-page-hero-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
    max-width: 560px;
    margin: 1.5rem 0 0;
}
.gw-page-hero-divider-wrap {
    position: relative;
    max-width: 1280px;
    margin: 3rem auto 0;
}
.gw-page-hero-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(204,21,65,0.6) 0%, rgba(204,21,65,0.1) 50%, transparent 100%);
}
@media (max-width: 639px) {
    .gw-page-hero { padding: 7rem 1.25rem 4rem; }
    .gw-page-hero-divider-wrap { margin-top: 2rem; }
}

/* ── Phone Showcase ───────────────────────────────────── */
/* No container-type/cqw here on purpose: in some Elementor flex/grid
   layouts a containment context on an element whose parent track has
   no definite size yet can collapse the whole widget to 0×0. Fixed px
   + a mobile override below keeps the round-corner fix without that risk. */
.gw-phone-stage {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 560px;
    aspect-ratio: 560 / 520;
    margin: 0 auto;
}
.gw-phone-group,
.gw-phone {
    min-width: 0;
}
/* Defensive: some Elementor flex/grid columns give their child an
   intrinsic (auto) size instead of stretching it, which can starve
   the aspect-ratio box above of a definite width. Force full-width. */
.elementor-widget-gse-gw-phone-showcase,
.elementor-widget-gse-gw-phone-showcase > .elementor-widget-container {
    width: 100%;
    min-width: 0;
}
.gw-phone-stage-glow {
    position: absolute;
    top: 30%; left: 50%;
    width: 320px; height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(204,21,65,0.14) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.gw-phone-group {
    position: absolute;
    inset: 0;
    animation:
        gw-phones-enter 0.9s cubic-bezier(0.22,1,0.36,1) both,
        gw-phones-float 5.5s 0.9s ease-in-out infinite;
}
@keyframes gw-phones-enter {
    from { opacity: 0; transform: translateY(70px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes gw-phones-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
.gw-phone {
    position: absolute;
    width: 30.7%;
    aspect-ratio: 9 / 19.5;
    transform-origin: bottom center;
}
.gw-phone-left  { left: 1.5%;  top: 16.6%; opacity: 0.85; filter: brightness(0.75); }
.gw-phone-right { right: 1.5%; top: 16.6%; opacity: 0.85; filter: brightness(0.75); }
.gw-phone-center {
    width: 33.5%;
    left: 50%;
    top: 10.9%;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9));
}
.gw-phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #333333 0%, #161616 45%, #1f1f1f 100%);
    border-radius: 28px;
    border: 1.5px solid #3f3f3f;
    box-shadow: 0 2px 0 #0a0a0a, 0 30px 70px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05) inset;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px;
}
/* Side hardware buttons (purely decorative, gives the silhouette a real-device read) */
.gw-phone-frame::before,
.gw-phone-frame::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #3c3c3c, #262626);
    border: 1px solid #4a4a4a;
    z-index: 1;
}
.gw-phone-frame::before {
    /* power button, right edge */
    right: -2px;
    top: 22%;
    width: 2px;
    height: 50px;
    border-radius: 0 2px 2px 0;
}
.gw-phone-frame::after {
    /* volume rocker, left edge */
    left: -2px;
    top: 15%;
    width: 2px;
    height: 70px;
    border-radius: 2px 0 0 2px;
}
.gw-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}
.gw-phone-frame img,
.gw-phone-video,
.gw-phone-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    background: #000;
}
.gw-phone-frame img,
.gw-phone-placeholder {
    object-fit: cover;
}
.gw-phone-placeholder {
    background: linear-gradient(160deg, #1a0a10 0%, #0d0d0d 35%, #111 60%, #0a0f1a 100%);
}
/* Videónál nem vágunk/zoomolunk bele — a teljes kép látszik, fekete sávokkal ha kell. */
.gw-phone-video {
    object-fit: contain;
}
/* subtle glass sheen so the screen doesn't read as a flat sticker */
.gw-phone-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,0.08) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
    z-index: 3;
}
.gw-phone-notch {
    position: absolute;
    top: 2.2%; left: 50%;
    transform: translateX(-50%);
    width: 34%; height: 3.2%;
    min-height: 14px;
    background: #000;
    border-radius: 20px;
    z-index: 5;
}
.gw-phone-caption {
    position: absolute;
    left: 6%; right: 20%;
    bottom: 10%;
    z-index: 4;
}
.gw-phone-caption-handle {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: #fff;
    margin-bottom: 4px;
}
.gw-phone-caption-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* ── Demo placeholder UI (play button, social col, progress bar) ── */
.gw-phone-placeholder-ui {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}
.gw-phone-play {
    position: absolute;
    top: 50%; left: 44%;
    transform: translate(-50%, -50%);
    width: 22%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(204,21,65,0.85);
    box-shadow: 0 0 28px rgba(204,21,65,0.55), 0 0 0 8px rgba(204,21,65,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    z-index: 6;
}
.gw-phone-play svg {
    width: 42%;
    height: 42%;
    margin-left: 8%;
    display: block;
}
/* Fix szélesség a kolonnán, mert egy auto-szélességű abszolút flex
   oszlopon a gyerekek %-os szélessége kiszámíthatatlan (0 vagy az SVG
   natív mérete) lehet — emiatt csúsztak korábban rossz helyre az ikonok. */
.gw-phone-social-col {
    position: absolute;
    right: 4%;
    top: 42%;
    width: 11%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16%;
    z-index: 5;
}
.gw-phone-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    color: rgba(255,255,255,0.9);
}
.gw-phone-social-item svg {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    flex-shrink: 0;
}
.gw-phone-social-item em {
    font-style: normal;
    font-family: 'Share Tech Mono', monospace;
    font-size: 7px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}
.gw-phone-progress {
    position: absolute;
    left: 6%; right: 6%;
    bottom: 4%;
    height: 2px;
    background: rgba(255,255,255,0.16);
    border-radius: 1px;
    z-index: 5;
}
.gw-phone-progress-fill {
    display: block;
    width: 62%;
    height: 100%;
    background: #fff;
    border-radius: 1px;
}

.gw-phone-badge {
    position: absolute;
    z-index: 20;
    animation: gw-badge-enter 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes gw-badge-enter {
    from { opacity: 0; transform: translateY(40px) scale(0.85); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.gw-phone-badge-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(204,21,65,0.52);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(204,21,65,0.4);
    box-shadow: 0 4px 24px rgba(204,21,65,0.25);
    min-width: 90px;
}
.gw-phone-badge-icon { width: 14px; height: 14px; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.gw-phone-badge-value {
    font-family: 'Share Tech Mono', monospace;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1;
}
.gw-phone-badge-tail {
    position: absolute;
    bottom: -7px; left: 30%;
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(204,21,65,0.52);
}
@media (max-width: 639px) {
    .gw-phone-stage { max-width: 380px; }
    .gw-phone-frame { border-radius: 20px; padding: 7px; }
    .gw-phone-screen { border-radius: 13px; }
    .gw-phone-frame::before { height: 36px; }
    .gw-phone-frame::after  { height: 50px; }
}

/* ── Pricing Table ────────────────────────────────────── */
.gw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gw-pricing-card {
    position: relative;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
}
.gw-pricing-card.gw-pricing-highlight {
    background: rgba(204,21,65,0.06);
    border: 2px solid #cc1541;
}
.gw-pricing-topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #cc1541;
}
.gw-pricing-badge {
    position: absolute;
    top: 16px; right: 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: #cc1541;
    color: #fff;
    padding: 4px 10px;
}
.gw-pricing-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.gw-pricing-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #cc1541;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.gw-pricing-price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 1rem;
}
.gw-pricing-price {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: #fff;
    line-height: 1;
}
.gw-pricing-period {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    padding-bottom: 4px;
}
.gw-pricing-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.gw-pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    margin: 0 0 2rem;
    padding: 0;
}
.gw-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}
.gw-pricing-feature svg { width: 12px; height: 12px; color: #cc1541; flex-shrink: 0; }
.gw-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.gw-pricing-btn-solid { background: #cc1541; color: #fff; border: none; }
.gw-pricing-btn-solid:hover { background: #a8102f; transform: translateY(-1px); }
.gw-pricing-btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.gw-pricing-btn-outline:hover { border-color: #cc1541; color: #cc1541; }
@media (max-width: 1023px) { .gw-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .gw-pricing-grid { grid-template-columns: 1fr; } }

/* ── Team Grid ────────────────────────────────────────── */
.gw-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.gw-team-card {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}
.gw-team-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.gw-team-photo-wrap img,
.gw-team-photo-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.5s;
}
.gw-team-photo-placeholder { background: #1a1a1a; filter: none; }
.gw-team-card:hover .gw-team-photo-wrap img { filter: grayscale(0%); }
.gw-team-photo-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
    pointer-events: none;
}
.gw-team-body { padding: 1.25rem; }
.gw-team-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    margin-bottom: 4px;
}
.gw-team-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: #cc1541;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gw-team-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1023px) { .gw-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .gw-team-grid { grid-template-columns: 1fr; } }

/* ── Timeline ─────────────────────────────────────────── */
.gw-timeline {
    position: relative;
}
.gw-timeline-line {
    position: absolute;
    left: 60px;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(204,21,65,0.6), rgba(204,21,65,0.1));
}
.gw-timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 40px;
}
.gw-timeline-item-last { padding-bottom: 0; }
.gw-timeline-year-col {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.gw-timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #cc1541;
}
.gw-timeline-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #cc1541;
    border: 2px solid #080808;
    margin-top: 6px;
    margin-right: -5px;
}
.gw-timeline-content {
    flex: 1;
    padding-top: 1px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gw-timeline-item-last .gw-timeline-content { border-bottom: none; padding-bottom: 0; }
.gw-timeline-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}
.gw-timeline-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}
@media (max-width: 479px) {
    .gw-timeline-line { left: 44px; }
    .gw-timeline-year-col { width: 44px; }
    .gw-timeline-item { gap: 1rem; }
}

/* ── Shared CTA buttons (hero / about / work headers) ─── */
.gw-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}
.gw-hero-btn:link,
.gw-hero-btn:visited { color: #fff; }
.gw-hero-btn-solid { background: #cc1541; color: #fff !important; border: none; }
.gw-hero-btn-solid:hover { background: #a8102f; color: #fff !important; transform: translateY(-1px); }
.gw-hero-btn-outline { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,0.22); }
.gw-hero-btn-outline:hover { border-color: #cc1541; background: #cc1541; color: #fff !important; }
@media (max-width: 479px) {
    .gw-hero-btn { padding: 11px 20px; font-size: 9px; }
}

/* ── Hero Text & Buttons ──────────────────────────────── */
.gw-hero-text-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 0 2rem;
}
.gw-hero-text-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.gw-hero-stats-row {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    padding-top: 0.25rem;
}
.gw-hero-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}
.gw-hero-stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
    margin-top: 2px;
}
@media (max-width: 479px) {
    .gw-hero-text-desc { font-size: 12px; }
    .gw-hero-stats-row { gap: 1.1rem; }
    .gw-hero-stat-value { font-size: 17px; }
}

/* ── Client Logo Marquee ("Velünk dolgoznak") ─────────── */
.gw-client-marquee {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    overflow: hidden;
}
.gw-client-marquee-heading {
    text-align: center;
    margin: 0 0 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.gw-client-marquee-mask { overflow: hidden; width: 100%; }
.gw-client-marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: gw-marquee-scroll linear infinite;
}
@keyframes gw-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}
.gw-client-marquee-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.gw-client-marquee-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 40px;
}
.gw-client-marquee-badge {
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}
.gw-client-marquee-logo-img {
    width: 32px; height: 32px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
.gw-client-marquee-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}
.gw-client-marquee-sep {
    margin-right: 40px;
    color: rgba(204,21,65,0.4);
    font-size: 20px;
    flex-shrink: 0;
}
@media (max-width: 639px) {
    .gw-client-marquee-badge-row, .gw-client-marquee-sep { margin-right: 24px; }
    .gw-client-marquee-name { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
    .gw-client-marquee-track { animation: none; }
}

/* ── About Teaser (SYS.ABOUT) ─────────────────────────── */
.gw-about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.gw-about-teaser-media { position: relative; }
.gw-about-teaser-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #111;
}
.gw-about-teaser-img-wrap img,
.gw-about-teaser-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72) contrast(1.1);
}
.gw-about-teaser-placeholder { background: linear-gradient(160deg,#1a0a10,#0d0d0d,#111); }
.gw-about-teaser-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px);
}
.gw-about-teaser-corner {
    position: absolute;
    width: 24px; height: 24px;
    border-color: #cc1541;
    z-index: 2;
}
.gw-about-teaser-corner.tl { top: -2px; left: -2px; border-top: 2px solid; border-left: 2px solid; }
.gw-about-teaser-corner.tr { top: -2px; right: -2px; border-top: 2px solid; border-right: 2px solid; }
.gw-about-teaser-corner.bl { bottom: -2px; left: -2px; border-bottom: 2px solid; border-left: 2px solid; }
.gw-about-teaser-corner.br { bottom: -2px; right: -2px; border-bottom: 2px solid; border-right: 2px solid; }
.gw-about-teaser-badge {
    position: absolute;
    bottom: -16px; right: -16px;
    background: #cc1541;
    padding: 14px 16px;
    z-index: 3;
}
.gw-about-teaser-badge-num {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    line-height: 1;
}
.gw-about-teaser-badge-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
}
.gw-about-teaser-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.8vw, 40px);
    color: #fff;
    line-height: 1.15;
    margin: 0 0 1.25rem;
}
.gw-about-teaser-title-white { display: block; }
.gw-about-teaser-title-red { display: block; color: #cc1541; }
.gw-about-teaser-desc {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0 0 2rem;
}
.gw-about-teaser-pillars {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.gw-about-teaser-pillar {
    position: relative;
    padding: 1rem;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
}
.gw-about-teaser-pillar-num {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: #cc1541;
    margin-bottom: 4px;
}
.gw-about-teaser-pillar-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    margin-bottom: 4px;
}
.gw-about-teaser-pillar-desc {
    font-family: 'Share Tech Mono', monospace;
    font-weight: 400;
    font-size: 10px;
    color: rgba(255,255,255,0.38);
    line-height: 1.55;
}
@media (max-width: 1023px) {
    .gw-about-teaser { grid-template-columns: 1fr; gap: 3rem; }
    .gw-about-teaser-media { max-width: 420px; margin: 0 auto; width: 100%; }
}
@media (max-width: 479px) {
    .gw-about-teaser-badge { padding: 10px 12px; bottom: -10px; right: -10px; }
    .gw-about-teaser-badge-num { font-size: 19px; }
}

/* ── Work Grid ("Amit készítünk") ─────────────────────── */
.gw-work-grid-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.gw-work-grid-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 46px);
    color: #fff;
    margin: 0;
}
.gw-work-grid-header-btn { display: inline-flex; }
.gw-work-grid-footer-btn { display: none; text-align: center; margin-top: 2rem; }
.gw-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gw-work-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    background: #111;
    aspect-ratio: 3 / 2;
    text-decoration: none;
    cursor: pointer;
}
.gw-work-item img,
.gw-work-item-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: transform 0.5s ease, filter 0.4s ease;
}
.gw-work-item-placeholder { background: linear-gradient(160deg,#1a0a10,#0d0d0d,#111); }
.gw-work-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gw-work-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gw-work-item:hover .gw-work-item-overlay { opacity: 1; }
.gw-work-item-title {
    position: absolute;
    left: 16px; right: 16px; bottom: 16px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.gw-work-item:hover .gw-work-item-title { opacity: 1; transform: translateY(0); }
.gw-work-item-tag {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    background: rgba(204,21,65,0.75);
    color: #fff;
    padding: 3px 8px;
}
@media (max-width: 1023px) {
    .gw-work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
    .gw-work-grid { grid-template-columns: 1fr; }
    .gw-work-grid-header-btn { display: none; }
    .gw-work-grid-footer-btn { display: block; }
    .gw-work-item-title { opacity: 1; transform: translateY(0); }
    .gw-work-item-overlay { opacity: 0.85; }
}

/* ── Testimonials Carousel ────────────────────────────── */
.gw-testi-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.gw-testi-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 42px);
    color: #fff;
    margin: 0;
}
.gw-testi-nav { display: flex; align-items: center; gap: 12px; }
.gw-testi-nav-standalone { justify-content: flex-end; margin-bottom: 1.5rem; }
.gw-testi-counter {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.28);
    min-width: 42px;
}
.gw-testi-arrow {
    -webkit-appearance: none;
    appearance: none;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    color: #fff;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    padding: 0;
}
.gw-testi-arrow:hover { border-color: #cc1541; color: #cc1541; }
.gw-testi-arrow:disabled { opacity: 0.3; cursor: default; }
.gw-testi-viewport { overflow: hidden; }
.gw-testi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
}
.gw-testi-card {
    flex: 0 0 calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 2px solid rgba(255,255,255,0.07);
    box-sizing: border-box;
}
.gw-testi-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}
.gw-testi-brand-badge {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.gw-testi-brand-name { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 11px; color: #fff; }
.gw-testi-verified { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.gw-testi-stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.gw-testi-quote {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin: 0 0 1rem;
}
.gw-testi-owner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.gw-testi-owner-img {
    width: 38px; height: 38px;
    border-radius: 3px;
    object-fit: cover;
    filter: grayscale(100%);
    flex-shrink: 0;
}
.gw-testi-owner-img-placeholder { background: #1e1e1e; display: block; }
.gw-testi-owner-name { font-family: 'Orbitron', sans-serif; font-weight: 600; font-size: 10px; color: #fff; }
.gw-testi-owner-role { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.gw-testi-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 2rem; }
.gw-testi-dot {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 6px; height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
    transition: width 0.3s, background 0.3s;
}
.gw-testi-dot.active { width: 24px; background: #cc1541; }
@media (max-width: 1023px) {
    .gw-testi-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 639px) {
    .gw-testi-card { flex-basis: 100%; }
    .gw-testi-header { flex-direction: column; align-items: flex-start; }
}

/* ── Process Steps ("Hogyan dolgozunk együtt") ────────── */
.gw-process-steps-header { margin-bottom: 3rem; }
.gw-process-steps-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 46px);
    color: #fff;
    margin: 0;
}
.gw-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.gw-process-step {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
}
.gw-process-step-ghost-num {
    position: absolute;
    bottom: -16px; right: -8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 100px;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.gw-process-step-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #1e1e1e;
    border: 1px solid rgba(204,21,65,0.2);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.gw-process-step-icon svg { width: 18px; height: 18px; }
.gw-process-step-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.gw-process-step-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 1023px) {
    .gw-process-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
    .gw-process-steps-grid { grid-template-columns: 1fr; }
}

/* ── Contact Section ("Készen állsz a szintlépésre?") ─── */
.gw-contact-section {
    position: relative;
    overflow: hidden;
}
.gw-contact-section-glow {
    position: absolute;
    top: 20%; left: 15%;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,21,65,0.18) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: gw-pulse-red 6s ease-in-out infinite;
}
.gw-contact-section-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.gw-contact-section-top { position: relative; }
.gw-contact-section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.8vw, 38px);
    color: #fff;
    margin: 0 0 0.75rem;
}
.gw-contact-section-title-accent {
    background: linear-gradient(90deg, #cc1541, #ff2d55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gw-contact-section-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    margin: 0 0 1.75rem;
}
.gw-contact-section-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gw-contact-section-quick-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.gw-contact-section-quick-card:hover { border-color: #cc1541; background: rgba(204,21,65,0.07); }
.gw-contact-section-quick-icon { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.gw-contact-section-quick-icon svg { width: 24px; height: 24px; display: block; }
.gw-contact-section-quick-text { display: flex; flex-direction: column; gap: 3px; }
.gw-contact-section-quick-title { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 13px; color: #fff; }
.gw-contact-section-quick-sub { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.28); letter-spacing: 0.1em; }
.gw-contact-section-quick-arrow { width: 14px; height: 14px; margin-left: auto; color: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ── Contact Section – FAQ column ─────────────────────── */
.gw-contact-section-faq { position: relative; }
.gw-contact-section-faq-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.8vw, 38px);
    color: #fff;
    margin: 0 0 1.5rem;
}
.gw-contact-section-faq-list { display: flex; flex-direction: column; }
.gw-contact-section-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.gw-contact-section-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.gw-contact-section-faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 0;
    cursor: pointer;
    list-style: none;
}
.gw-contact-section-faq-item summary::-webkit-details-marker { display: none; }
.gw-contact-section-faq-item summary::marker { content: ''; }
.gw-contact-section-faq-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: #cc1541;
    flex-shrink: 0;
}
.gw-contact-section-faq-q {
    flex: 1;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
.gw-contact-section-faq-chevron {
    width: 15px; height: 15px;
    color: rgba(255,255,255,0.28);
    flex-shrink: 0;
    transition: transform 0.25s, color 0.2s;
}
.gw-contact-section-faq-item[open] .gw-contact-section-faq-chevron {
    transform: rotate(180deg);
    color: #cc1541;
}
.gw-contact-section-faq-a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0 0 1.25rem 22px;
}
@media (max-width: 1023px) {
    .gw-contact-section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.gw-contact-section-info-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.gw-contact-section-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
}
.gw-contact-section-info-icon {
    width: 40px; height: 40px;
    border-radius: 4px;
    background: rgba(204,21,65,0.1);
    border: 1px solid rgba(204,21,65,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc1541;
    flex-shrink: 0;
}
.gw-contact-section-info-icon svg { width: 20px; height: 20px; display: block; }
.gw-contact-section-info-title { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 13px; color: #fff; }
.gw-contact-section-info-sub { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.28); margin-top: 3px; }
@media (max-width: 639px) {
    .gw-contact-section-info-row { grid-template-columns: 1fr; }
    .gw-contact-section-quick-card { padding: 16px; gap: 14px; }
}
