:root {
    --gw-dc-primary: #0075d9;
    --gw-dc-primary-dark: #005bb4;
    --gw-dc-surface: #f9f9fc;
    --gw-dc-surface-muted: #f5f5f5;
    --gw-dc-surface-card: #ffffff;
    --gw-dc-border: #e5e7eb;
    --gw-dc-text: #1a1c1e;
    --gw-dc-muted: #666666;
    --gw-dc-muted-strong: #414753;
    --gw-dc-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 10px -5px rgba(0, 0, 0, 0.02);
}

.gw-dc-page-template,
.gw-dc-page-template * {
    box-sizing: border-box;
}

.gw-dc-wrap {
    width: 100%;
    max-width: 1251px;
    margin: 0 auto;
    font-family: "Roboto", Arial, sans-serif;
    color: var(--gw-dc-text);
}

.gw-dc-brand-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    border-bottom: 1px solid var(--gw-dc-border);
}

.gw-dc-brand-strip strong {
    color: var(--gw-dc-primary);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.gw-dc-brand-strip span {
    color: var(--gw-dc-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gw-dc-shell {
    display: flex;
    align-items: flex-start;
    min-height: 70vh;
}

.gw-dc-sidebar {
    width: 280px;
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 112px);
    flex: 0 0 280px;
    padding: 32px 28px 32px 0;
    border-right: 1px solid var(--gw-dc-border);
}

.gw-dc-sidebar::-webkit-scrollbar {
    width: 4px;
}

.gw-dc-sidebar::-webkit-scrollbar-thumb {
    background: #e2e2e2;
    border-radius: 999px;
}

.gw-dc-main {
    flex: 1;
    min-width: 0;
    padding: 32px 0 32px 16px;
}

.gw-dc-side-search {
    position: relative;
    margin-bottom: 32px;
}

.gw-dc-side-search input {
    width: 100%;
    height: 46px;
    border: 0;
    outline: 0;
    border-radius: 12px;
    padding: 0 42px 0 16px;
    background: var(--gw-dc-surface-muted);
    color: var(--gw-dc-text);
    font-size: 14px;
}

.gw-dc-side-search input:focus {
    box-shadow: 0 0 0 2px rgba(0, 117, 217, 0.22);
}

.gw-dc-side-search i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gw-dc-muted);
    font-size: 16px;
}

.gw-dc-side-head {
    margin-bottom: 28px;
}

.gw-dc-side-head span,
.gw-dc-eyebrow {
    display: block;
    color: var(--gw-dc-primary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gw-dc-side-head strong {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--gw-dc-text);
}

.gw-dc-model-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gw-dc-series-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    background: rgba(0, 117, 217, 0.06);
    color: var(--gw-dc-primary);
    padding: 13px 12px;
    text-align: left;
}

.gw-dc-series:not(.is-open) .gw-dc-series-btn {
    background: transparent;
    color: var(--gw-dc-muted-strong);
}


.gw-dc-series-icon {
    width: 18px;
    flex: 0 0 18px;
    text-align: center;
    font-size: 15px;
}

.gw-dc-series-btn strong {
    flex: 1;
    font-size: 14px;
    font-weight: 800;
}

.gw-dc-chevron {
    transition: transform 0.2s ease;
}

.gw-dc-series:not(.is-open) .gw-dc-chevron {
    transform: rotate(180deg);
}

.gw-dc-series-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0 4px 18px;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 117, 217, 0.12);
}

.gw-dc-series:not(.is-open) .gw-dc-series-items {
    display: none;
}

.gw-dc-model-link {
    display: block;
    border-radius: 10px;
    padding: 9px 10px;
    color: var(--gw-dc-muted-strong);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.gw-dc-model-link:hover,
.gw-dc-model-link.is-active {
    color: var(--gw-dc-primary);
    background: rgba(0, 117, 217, 0.06);
    font-weight: 800;
}

.gw-dc-model-link.is-hidden {
    display: none;
}

.gw-dc-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 40px;
    margin-bottom: 28px;
    border: 1px solid var(--gw-dc-border);
    border-radius: 16px;
    background: var(--gw-dc-surface-card);
    box-shadow: var(--gw-dc-shadow);
}

.gw-dc-hero-glow {
    position: absolute;
    right: -90px;
    top: -90px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(0, 117, 217, 0.07);
    filter: blur(28px);
}

.gw-dc-hero-media,
.gw-dc-hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.gw-dc-hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gw-dc-hero-media img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.12));
}

.gw-dc-placeholder {
    width: 280px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gw-dc-surface-muted);
    color: var(--gw-dc-muted);
    font-weight: 800;
}

.gw-dc-hero h1 {
    margin: 14px 0 16px;
    color: var(--gw-dc-text);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.gw-dc-hero-desc,
.gw-dc-hero-desc p {
    max-width: 470px;
    margin: 0;
    color: var(--gw-dc-muted);
    font-size: 16px;
    line-height: 1.65;
}

.gw-dc-section-head {
    margin-bottom: 28px;
}

.gw-dc-section-head h2 {
    margin: 0 0 8px;
    color: var(--gw-dc-text);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 900;
}

.gw-dc-section-head p {
    margin: 0;
    color: var(--gw-dc-muted);
    font-size: 14px;
}

.gw-dc-tabs {
    display: inline-flex;
    max-width: 100%;
    gap: 4px;
    padding: 6px;
    margin-bottom: 32px;
    border-radius: 14px;
    background: var(--gw-dc-surface-muted);
}

.gw-dc-tab {
    border: 0;
    border-radius: 10px;
    padding: 11px 18px;
    background: transparent;
    color: var(--gw-dc-muted);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.gw-dc-tab span {
    margin-left: 6px;
    opacity: 0.72;
}

.gw-dc-tab:hover {
    color: var(--gw-dc-text);
}

.gw-dc-tab.is-active {
    color: var(--gw-dc-primary);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gw-dc-panel {
    display: none;
}

.gw-dc-panel.is-active {
    display: grid;
    gap: 16px;
}

.gw-dc-driver-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--gw-dc-border);
    border-radius: 16px;
    background: var(--gw-dc-surface-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.gw-dc-driver-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 117, 217, 0.28);
    box-shadow: var(--gw-dc-shadow);
}

.gw-dc-driver-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.gw-dc-driver-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gw-dc-surface-muted);
    color: var(--gw-dc-muted-strong);
    font-size: 22px;
    font-weight: 800;
}

.gw-dc-driver-icon i {
    line-height: 1;
}

.gw-dc-driver-body {
    min-width: 0;
}

.gw-dc-driver-body h3 {
    margin: 0 0 5px;
    color: var(--gw-dc-text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.gw-dc-driver-body p {
    margin: 0 0 10px;
    color: var(--gw-dc-muted);
    font-size: 14px;
}

.gw-dc-driver-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: var(--gw-dc-muted);
    font-size: 12px;
}

.gw-dc-driver-meta span:first-child {
    color: var(--gw-dc-primary);
    font-weight: 900;
}

.gw-dc-note {
    margin-top: 12px;
    color: var(--gw-dc-muted-strong);
    font-size: 13px;
    line-height: 1.5;
}

.gw-dc-note p {
    margin: 0;
}

.gw-dc-driver-action {
    flex: 0 0 auto;
}

.gw-dc-download-btn,
.gw-dc-support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border-radius: 12px;
    padding: 0 34px;
    border: 1px solid var(--gw-dc-primary);
    color: var(--gw-dc-primary);
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.2s ease;
}

.gw-dc-download-btn i,
.gw-dc-support-btn i {
    font-size: 13px;
    line-height: 1;
}

.gw-dc-download-btn:hover,
.gw-dc-support-btn:hover {
    color: #fff;
    background: var(--gw-dc-primary);
    box-shadow: 0 12px 24px rgba(0, 117, 217, 0.18);
}

.gw-dc-download-btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.gw-dc-support-card {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 64px;
    padding: 32px;
    border: 1px solid var(--gw-dc-border);
    border-radius: 16px;
    background: #f3f3f6;
    box-shadow: var(--gw-dc-shadow);
}

.gw-dc-support-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 117, 217, 0.1);
    color: var(--gw-dc-primary);
    font-size: 28px;
    font-weight: 900;
}

.gw-dc-support-card h4 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 900;
}

.gw-dc-support-card p {
    max-width: 620px;
    margin: 0;
    color: var(--gw-dc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.gw-dc-support-btn {
    margin-left: auto;
    color: #fff;
    background: var(--gw-dc-primary);
    width : 200px;

}

.gw-dc-empty {
    width: 100%;
    padding: 32px;
    border: 1px dashed var(--gw-dc-border);
    border-radius: 16px;
    background: #fff;
    color: var(--gw-dc-muted);
    text-align: center;
}

@media (max-width: 991px) {
    .gw-dc-wrap {
        padding: 0 16px 48px;
    }

    .gw-dc-shell {
        display: block;
    }

    .gw-dc-sidebar {
        position: relative;
        top: auto;
        width: 100%;
        max-height: none;
        border-right: 0;
        border-bottom: 1px solid var(--gw-dc-border);
        padding: 24px 0;
    }

    .gw-dc-main {
        padding: 28px 0;
    }

    .gw-dc-hero {
        flex-direction: column;
        padding: 28px;
        gap: 28px;
        text-align: center;
    }

    .gw-dc-hero-desc,
    .gw-dc-hero-desc p {
        margin-left: auto;
        margin-right: auto;
    }

    .gw-dc-support-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .gw-dc-support-btn {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .gw-dc-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .gw-dc-tab {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .gw-dc-driver-card,
    .gw-dc-driver-left {
        align-items: flex-start;
        flex-direction: column;
    }

    .gw-dc-driver-action,
    .gw-dc-download-btn {
        width: 100%;
    }

    .gw-dc-hero-media img {
        max-height: 210px;
    }
}
