/* Service Hero — Layout */
.gx-service-hero {
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.gx-service-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(0, 102, 255, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(0, 200, 150, 0.12) 0%, transparent 45%);
}

.gx-service-hero .container {
    position: relative;
    z-index: 2;
}

.gx-service-hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Shared widget shell */
.gx-sh-widget {
    width: 100%;
    max-width: 420px;
}

.gx-sh-panel {
    background: var(--gx-glass-3);
    border: 1px solid var(--gx-border);
    border-radius: var(--gx-radius-lg);
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--gx-shadow);
}

.gx-sh-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.gx-sh-panel-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gx-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gx-sh-panel-title i {
    color: var(--gx-accent);
}

.gx-sh-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gx-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gx-sh-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gx-accent);
    animation: gxShPulse 2s ease-in-out infinite;
}

@keyframes gxShPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 200, 150, 0); }
}

/* Metrics — Dijital Pazarlama */
.gx-sh-channels {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gx-sh-channel {
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--gx-border);
    background: transparent;
    color: var(--gx-muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gx-transition);
}

.gx-sh-channel.active,
.gx-sh-channel:hover {
    border-color: rgba(0, 200, 150, 0.35);
    background: rgba(0, 200, 150, 0.08);
    color: var(--gx-accent-lt);
}

.gx-sh-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.gx-sh-metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gx-heading);
    line-height: 1.2;
}

.gx-sh-metric span {
    font-size: 0.72rem;
    color: var(--gx-muted);
}

.gx-sh-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 64px;
    padding-top: 8px;
    border-top: 1px solid var(--gx-border);
}

.gx-sh-bar {
    flex: 1;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--gx-accent), rgba(0, 102, 255, 0.4));
    opacity: 0.85;
    animation: gxShBarGrow 1.2s ease-out backwards;
    animation-delay: var(--d);
}

@keyframes gxShBarGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); }
}

/* Search — SEO & GEO */
.gx-sh-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gx-border);
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--gx-muted);
}

.gx-sh-search-bar i {
    color: var(--gx-accent);
}

.gx-sh-search-text {
    color: var(--gx-heading);
    font-size: 0.9rem;
    min-height: 1.2em;
}

.gx-sh-cursor {
    color: var(--gx-accent);
    animation: gxShBlink 1s step-end infinite;
}

@keyframes gxShBlink {
    50% { opacity: 0; }
}

.gx-sh-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gx-sh-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gx-border);
    opacity: 0;
    animation: gxShFadeUp 0.6s ease forwards;
    animation-delay: calc(1.2s + var(--delay));
}

.gx-sh-result:last-child {
    border-bottom: none;
}

.gx-sh-result-top {
    background: rgba(0, 200, 150, 0.06);
    margin: 0 -12px;
    padding: 14px 12px;
    border-radius: var(--gx-radius-sm);
    border-bottom: none;
}

.gx-sh-rank {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gx-primary-lt);
    min-width: 28px;
}

.gx-sh-result strong {
    display: block;
    font-size: 0.88rem;
    color: var(--gx-heading);
}

.gx-sh-result small {
    font-size: 0.72rem;
    color: var(--gx-muted);
}

.gx-sh-badge {
    margin-left: auto;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(0, 200, 150, 0.15);
    color: var(--gx-accent);
    border: 1px solid rgba(0, 200, 150, 0.25);
}

@keyframes gxShFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Browser — Web Tasarım */
.gx-sh-browser {
    border-radius: var(--gx-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gx-border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.gx-sh-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--gx-border);
}

.gx-sh-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.gx-sh-browser-bar span:first-child { background: #FF5F57; }
.gx-sh-browser-bar span:nth-child(2) { background: #FEBC2E; }
.gx-sh-browser-bar span:nth-child(3) { background: #28C840; }

.gx-sh-browser-url {
    flex: 1;
    margin-left: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--gx-muted);
    text-align: center;
}

.gx-sh-browser-body {
    padding: 20px;
    position: relative;
    min-height: 220px;
}

.gx-sh-wire-block {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    animation: gxShWireIn 0.8s ease backwards;
}

.gx-sh-wire-hero {
    height: 56px;
    margin-bottom: 14px;
    animation-delay: 0.2s;
}

.gx-sh-wire-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.gx-sh-wire-row .gx-sh-wire-block {
    height: 48px;
    animation-delay: 0.4s;
}

.gx-sh-wire-wide {
    height: 36px;
    animation-delay: 0.6s;
}

.gx-sh-browser-cursor {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--gx-accent);
    border-radius: 50%;
    bottom: 30px;
    right: 40px;
    animation: gxShCursorMove 4s ease-in-out infinite;
}

@keyframes gxShWireIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gxShCursorMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-80px, -60px); }
}

/* Design — Grafik Tasarım */
.gx-sh-design-board .gx-sh-palette {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.gx-sh-color {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--c);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: gxShColorPop 0.5s ease backwards;
}

.gx-sh-color:nth-child(2) { animation-delay: 0.1s; }
.gx-sh-color:nth-child(3) { animation-delay: 0.2s; }
.gx-sh-color:nth-child(4) { animation-delay: 0.3s; }
.gx-sh-color:nth-child(5) { animation-delay: 0.4s; }

@keyframes gxShColorPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gx-sh-design-canvas {
    position: relative;
    height: 180px;
    border-radius: var(--gx-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.gx-sh-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: gxShShapeDrift 8s ease-in-out infinite;
}

.gx-sh-shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    background: var(--gx-primary);
}

.gx-sh-shape-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 15%;
    background: var(--gx-accent);
    animation-delay: -4s;
}

@keyframes gxShShapeDrift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

.gx-sh-logo-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gx-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.gx-sh-type-sample {
    position: absolute;
    bottom: 12px;
    right: 12px;
    text-align: right;
}

.gx-sh-type-sample span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gx-heading);
}

.gx-sh-type-sample small {
    font-size: 0.65rem;
    color: var(--gx-muted);
}

/* Marketplace */
.gx-sh-product-card {
    text-align: center;
}

.gx-sh-product-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.gx-sh-product-badges span {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    background: rgba(0, 102, 255, 0.12);
    color: var(--gx-primary-lt);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.gx-sh-product-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: var(--gx-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gx-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gx-accent);
}

.gx-sh-product-card h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--gx-heading);
}

.gx-sh-product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.gx-sh-product-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gx-heading);
}

.gx-sh-product-stats span {
    font-size: 0.68rem;
    color: var(--gx-muted);
}

.gx-sh-sales-pulse {
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(0, 200, 150, 0.1);
    color: var(--gx-accent);
    font-size: 0.82rem;
    font-weight: 600;
    animation: gxShPulse 2.5s ease-in-out infinite;
}

/* Social — UGC */
.gx-sh-social-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gx-sh-social-post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gx-border);
    border-radius: var(--gx-radius);
    padding: 16px;
    transform: translateX(calc(var(--i) * 12px));
    animation: gxShFadeUp 0.6s ease backwards;
    animation-delay: calc(var(--i) * 0.15s);
}

.gx-sh-social-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.gx-sh-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gx-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.gx-sh-social-head strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gx-heading);
}

.gx-sh-social-head small {
    font-size: 0.72rem;
    color: var(--gx-muted);
}

.gx-sh-social-post p {
    font-size: 0.85rem;
    color: var(--gx-text);
    margin: 0 0 12px;
}

.gx-sh-social-stats {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--gx-muted);
}

.gx-sh-social-stats i {
    color: var(--gx-accent);
    margin-right: 4px;
}

.gx-sh-social-stats em {
    font-style: normal;
    color: var(--gx-heading);
    font-weight: 600;
}

/* Mobile */
.gx-sh-phone {
    width: 220px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid var(--gx-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    position: relative;
}

.gx-sh-phone-notch {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin: 0 auto 12px;
}

.gx-sh-phone-screen {
    position: relative;
    height: 280px;
    border-radius: 20px;
    background: var(--gx-dark-2);
    overflow: hidden;
}

.gx-sh-app-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gx-sh-app-screen.active {
    opacity: 1;
    transform: translateY(0);
}

.gx-sh-app-screen i {
    font-size: 2.5rem;
    color: var(--gx-accent);
    margin-bottom: 8px;
}

.gx-sh-app-screen strong {
    color: var(--gx-heading);
    font-size: 1rem;
}

.gx-sh-app-screen small {
    color: var(--gx-muted);
    font-size: 0.78rem;
}

.gx-sh-phone-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.gx-sh-phone-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--gx-transition);
}

.gx-sh-phone-dots span.active {
    background: var(--gx-accent);
    width: 20px;
    border-radius: 4px;
}

/* AI Chat */
.gx-sh-ai-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gx-heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gx-border);
}

.gx-sh-ai-head i {
    color: var(--gx-accent);
}

.gx-sh-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    min-height: 140px;
}

.gx-sh-msg {
    max-width: 92%;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.gx-sh-msg-user {
    align-self: flex-end;
    background: rgba(0, 102, 255, 0.15);
    color: var(--gx-text);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.gx-sh-msg-ai {
    align-self: flex-start;
    background: rgba(0, 200, 150, 0.08);
    color: var(--gx-text);
    border: 1px solid rgba(0, 200, 150, 0.15);
}

.gx-sh-ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gx-sh-ai-tags span {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    color: var(--gx-accent);
    border: 1px solid rgba(0, 200, 150, 0.15);
}

/* Legacy icon fallback */
.gx-service-hero-icon-wrap {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.gx-service-hero-icon {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 200, 150, 0.2);
    font-size: 2.25rem;
    color: var(--gx-accent);
    position: relative;
    animation: gxServiceIconFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
}

.gx-service-hero-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: var(--gx-gradient);
    opacity: 0.12;
    filter: blur(16px);
    z-index: -1;
    animation: gxServiceIconGlow 3s ease-in-out infinite;
}

@keyframes gxServiceIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes gxServiceIconGlow {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50% { opacity: 0.22; transform: scale(1.08); }
}

/* Content section */
.gx-service-section {
    position: relative;
}

.gx-service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.gx-service-sidebar {
    position: relative;
}

.gx-quote-card {
    margin-bottom: 0;
}

.gx-related-services {
    margin-top: 24px;
}

.gx-service-content h2,
.gx-service-content h3 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--gx-heading);
}

.gx-service-content h2:first-child {
    margin-top: 0;
}

.gx-service-highlights {
    margin-bottom: 48px;
}

.gx-service-highlight-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gx-border);
    border-radius: var(--gx-radius);
    height: 100%;
    transition: var(--gx-transition);
}

.gx-service-highlight-item:hover {
    border-color: rgba(0, 200, 150, 0.25);
    transform: translateY(-4px);
}

.gx-service-highlight-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gx-accent);
    margin-bottom: 6px;
}

.gx-service-highlight-item span {
    font-size: 0.85rem;
    color: var(--gx-muted);
}

.gx-service-content p {
    color: var(--gx-muted);
    margin-bottom: 16px;
}

.gx-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gx-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gx-border);
    font-weight: 500;
    color: var(--gx-text);
}

.gx-benefit-list li i {
    color: var(--gx-accent);
    margin-top: 4px;
}

.gx-process-steps {
    counter-reset: process;
}

.gx-process-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gx-border);
    color: var(--gx-text);
}

.gx-process-step:last-child {
    border-bottom: none;
}

.gx-process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gx-primary);
    min-width: 40px;
}

.gx-related-services .gx-card {
    padding: 20px;
}

.gx-related-services .gx-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Hizmetler listesi — hover önizleme */
.gx-service-list-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    padding-bottom: 56px;
}

.gx-service-list-card .gx-service-card-body {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gx-service-list-card .gx-service-card-detail-link {
    position: absolute;
    right: 32px;
    bottom: 24px;
    z-index: 4;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(10, 15, 28, 0.92);
    border: 1px solid rgba(0, 200, 150, 0.15);
}

.gx-service-list-card .gx-service-card-detail-link:hover {
    border-color: rgba(0, 200, 150, 0.35);
    background: rgba(10, 15, 28, 0.98);
}

.gx-service-card-preview {
    position: absolute;
    inset: 0 0 52px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px 16px;
    background: rgba(10, 15, 28, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: inherit;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.gx-service-preview-label {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gx-accent);
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid rgba(0, 200, 150, 0.2);
    white-space: nowrap;
}

.gx-service-preview-label i {
    font-size: 0.6rem;
}

.gx-service-card-preview .gx-sh-widget {
    width: 100%;
    max-width: none;
    margin-top: 12px;
}

.gx-sh-widget--preview .gx-sh-panel {
    padding: 14px;
    box-shadow: none;
}

.gx-sh-widget--preview .gx-sh-panel-head {
    margin-bottom: 12px;
}

.gx-sh-widget--preview .gx-sh-panel-title {
    font-size: 0.78rem;
}

.gx-sh-widget--preview .gx-sh-metrics {
    gap: 8px;
    margin-bottom: 12px;
}

.gx-sh-widget--preview .gx-sh-metric strong {
    font-size: 1rem;
}

.gx-sh-widget--preview .gx-sh-chart {
    height: 44px;
}

.gx-sh-widget--preview .gx-sh-channel {
    padding: 4px 10px;
    font-size: 0.68rem;
}

.gx-sh-widget--preview .gx-sh-search-bar {
    padding: 10px 14px;
    margin-bottom: 12px;
}

.gx-sh-widget--preview .gx-sh-search-text {
    font-size: 0.75rem;
}

.gx-sh-widget--preview .gx-sh-result {
    padding: 10px 0;
}

.gx-sh-widget--preview .gx-sh-result strong {
    font-size: 0.78rem;
}

.gx-sh-widget--preview .gx-sh-browser-body {
    min-height: 160px;
    padding: 14px;
}

.gx-sh-widget--preview .gx-sh-wire-hero {
    height: 40px;
}

.gx-sh-widget--preview .gx-sh-wire-row .gx-sh-wire-block {
    height: 36px;
}

.gx-sh-widget--preview .gx-sh-design-canvas {
    height: 130px;
}

.gx-sh-widget--preview .gx-sh-logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.gx-sh-widget--preview .gx-sh-color {
    width: 28px;
    height: 28px;
}

.gx-sh-widget--preview .gx-sh-product-image {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}

.gx-sh-widget--preview .gx-sh-product-card h4 {
    font-size: 0.88rem;
}

.gx-sh-widget--preview .gx-sh-social-post {
    padding: 12px;
    transform: none;
}

.gx-sh-widget--preview .gx-sh-social-post p {
    font-size: 0.75rem;
}

.gx-sh-widget--preview .gx-sh-phone {
    width: 170px;
    padding: 10px;
}

.gx-sh-widget--preview .gx-sh-phone-screen {
    height: 200px;
}

.gx-sh-widget--preview .gx-sh-app-screen i {
    font-size: 1.75rem;
}

.gx-sh-widget--preview .gx-sh-chat-messages {
    min-height: 100px;
}

.gx-sh-widget--preview .gx-sh-msg {
    font-size: 0.72rem;
    padding: 8px 10px;
}

@media (hover: hover) {
    .gx-service-list-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--gx-shadow);
        border-color: rgba(0, 102, 255, 0.25);
    }

    .gx-service-list-card:hover .gx-service-card-body {
        opacity: 0;
        transform: scale(0.98);
    }

    .gx-service-list-card:hover .gx-service-card-preview,
    .gx-service-list-card.is-preview-active .gx-service-card-preview {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        pointer-events: auto;
    }
}

@media (hover: none) {
    .gx-service-list-card.is-preview-active .gx-service-card-body {
        opacity: 0;
    }

    .gx-service-list-card.is-preview-active .gx-service-card-preview {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        pointer-events: auto;
    }
}

.page-services .gx-section-light .gx-card.gx-service-list-card:hover {
    transform: translateY(-8px);
}

@media (max-width: 991.98px) {
    .gx-service-detail-grid {
        grid-template-columns: 1fr;
    }

    .gx-service-hero-visual {
        margin-top: 16px;
        overflow: hidden;
    }

    .gx-sh-widget {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gx-sh-bar,
    .gx-sh-result,
    .gx-sh-wire-block,
    .gx-sh-color,
    .gx-sh-social-post,
    .gx-sh-live-dot,
    .gx-sh-sales-pulse,
    .gx-sh-cursor,
    .gx-sh-browser-cursor,
    .gx-sh-shape,
    .gx-service-hero-icon,
    .gx-service-hero-icon::before {
        animation: none !important;
    }

    .gx-sh-result {
        opacity: 1;
    }
}
