/* ========================================
   DQ26 Homepage – converted from React/Tailwind design
   Color scheme: slate (gray-blue) + yellow-400 (#facc15)
   ======================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Section titles --- */
.dq-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
}

.dq-section-title span {
    position: relative;
    display: inline-block;
}

.dq-section-hint {
    text-align: center;
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: -10px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .dq-section-hint {
        display: none;
    }
}

/* --- Buttons --- */
.dq-btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dq-btn--primary {
    background: #facc15;
    color: #0f172a;
    box-shadow: 0 4px 16px rgba(250, 204, 21, 0.25);
}

.dq-btn--primary:hover {
    background: #eab308;
    text-decoration: none;
}

.dq-btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(4px);
}

.dq-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.dq-btn--submit {
    background: #475569;
    color: #fff;
    width: 100%;
    padding: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dq-btn--submit:hover {
    background: #334155;
}

.dq-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 9999px;
    font-size: 10px;
    letter-spacing: 0.2em;
    padding: 14px 36px;
}

.dq-btn--ghost:hover {
    background: #facc15;
    color: #0f172a;
    border-color: #facc15;
    text-decoration: none;
}

/* ========================================
   HERO
   ======================================== */
.dq-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

@media (min-width: 768px) {
    .dq-hero {
        min-height: 650px;
        padding: 0;
    }
}

.dq-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.dq-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.5), transparent);
}

.dq-hero__slogan {
    position: absolute;
    top: 40px;
    right: 40px;
    display: none;
}

@media (min-width: 1024px) {
    .dq-hero__slogan {
        display: block;
    }
}

.dq-hero__slogan span {
    background: rgba(250, 204, 21, 0.9);
    backdrop-filter: blur(4px);
    padding: 8px 24px;
    border-left: 4px solid #0f172a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: #0f172a;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.dq-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
}

.dq-hero__badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.dq-hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .dq-hero__title {
        font-size: 64px;
    }
}

.dq-hero__title span {
    color: #facc15;
}

.dq-hero__desc {
    font-size: 17px;
    opacity: 0.8;
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 36px;
}

.dq-hero__desc strong {
    font-weight: 500;
    color: #fff;
}

.dq-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========================================
   PRODUCTS CAROUSEL
   ======================================== */
.dq-products {
    padding: 64px 0;
    background: #fff;
    overflow: hidden;
}

.dq-products__carousel-wrap {
    position: relative;
    margin-top: 40px;
}

.dq-products__carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dq-products__carousel::-webkit-scrollbar {
    display: none;
}

.dq-product-card {
    flex-shrink: 0;
    width: 280px;
    cursor: pointer;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .dq-product-card {
        width: 320px;
    }
}

.dq-product-card__img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f1f5f9;
}

.dq-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dq-product-card:hover .dq-product-card__img img {
    transform: scale(1.05);
}

.dq-product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #1e293b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    letter-spacing: 0.1em;
}

.dq-product-card__title {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}

.dq-product-card:hover .dq-product-card__title {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #cbd5e1;
}

/* Carousel buttons */
.dq-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #0f172a;
    z-index: 10;
    transition: opacity 0.3s;
}

@media (min-width: 768px) {
    .dq-carousel-btn {
        display: flex;
    }

    .dq-products__carousel-wrap:hover .dq-carousel-btn {
        opacity: 1;
    }
}

.dq-carousel-btn--prev {
    left: -16px;
}

.dq-carousel-btn--next {
    right: -16px;
}

/* ========================================
   FEATURES (Why Choose Us)
   ======================================== */
.dq-features {
    padding: 80px 0;
    background: #f8fafc;
}

.dq-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .dq-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dq-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dq-feature-item__icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dq-feature-item__icon svg {
    width: 28px;
    height: 28px;
    color: #94a3b8;
}

.dq-feature-item__cat {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.dq-feature-item__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #0f172a;
}

.dq-feature-item__desc {
    font-size: 14px;
    color: #64748b;
    max-width: 260px;
    line-height: 1.6;
}

/* ========================================
   VIDEO SHOWCASE
   ======================================== */
.dq-video {
    padding: 96px 0;
    background: #0f172a;
    color: #fff;
    overflow: hidden;
}

.dq-video__header {
    margin-bottom: 56px;
}

.dq-video__label {
    font-size: 10px;
    font-weight: 700;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 12px;
}

.dq-video__title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .dq-video__title {
        font-size: 48px;
    }
}

.dq-video__title span {
    color: #facc15;
}

.dq-video__desc {
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.7;
}

.dq-video__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .dq-video__grid {
        grid-template-columns: 9fr 3fr;
    }
}

.dq-video__main,
.dq-video__side {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background: #1e293b;
}

.dq-video__main {
    aspect-ratio: 16/9;
}

.dq-video__side {
    aspect-ratio: 9/16;
}

@media (min-width: 1024px) {
    .dq-video__side {
        aspect-ratio: auto;
    }
}

.dq-video__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 1s ease;
}

.dq-video__main:hover .dq-video__thumb,
.dq-video__side:hover .dq-video__thumb {
    transform: scale(1.05);
}

.dq-video__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

@media (min-width: 768px) {
    .dq-video__main .dq-video__overlay {
        padding: 36px;
    }
}

.dq-video__overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dq-video__overlay-bottom h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

@media (min-width: 768px) {
    .dq-video__main .dq-video__overlay-bottom h3 {
        font-size: 28px;
    }
}

.dq-video__overlay-bottom p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

.dq-video__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.dq-video__tag--yellow {
    background: #facc15;
    color: #0f172a;
}

.dq-video__tag--red {
    background: #ef4444;
    color: #fff;
}

.dq-video__live {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.dq-video__live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.dq-video__play-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .dq-video__play-btn {
        width: 64px;
        height: 64px;
    }
}

.dq-video__play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

@media (min-width: 768px) {
    .dq-video__play-btn svg {
        width: 32px;
        height: 32px;
    }
}

.dq-video__play-btn--sm {
    width: 40px;
    height: 40px;
}

.dq-video__play-btn--sm svg {
    width: 16px;
    height: 16px;
}

.dq-video__main:hover .dq-video__play-btn {
    background: #facc15;
    color: #0f172a;
}

.dq-video__side:hover .dq-video__play-btn {
    background: #ef4444;
}

.dq-video__more {
    margin-top: 48px;
    text-align: center;
}

/* ========================================
   CAREERS
   ======================================== */
.dq-careers {
    padding: 80px 0;
    background: #fff;
}

.dq-careers__card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .dq-careers__card {
        flex-direction: row;
    }
}

.dq-careers__img {
    height: 256px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .dq-careers__img {
        width: 50%;
        height: auto;
    }
}

.dq-careers__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dq-careers__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .dq-careers__content {
        width: 50%;
        padding: 48px 64px;
    }
}

.dq-careers__label {
    font-size: 10px;
    font-weight: 700;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.dq-careers__title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    line-height: 1.2;
}

.dq-careers__desc {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.dq-careers__jobs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.dq-careers__job {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.dq-careers__job-num {
    width: 40px;
    height: 40px;
    background: #0f172a;
    color: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.dq-careers__job-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px;
}

.dq-careers__job-meta {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

.dq-careers__link {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 2px solid #0f172a;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.dq-careers__link:hover {
    color: #facc15;
    border-color: #facc15;
    text-decoration: none;
}

/* ========================================
   BLOG
   ======================================== */
.dq-blog {
    padding: 96px 0;
    background: #f8fafc;
}

.dq-blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.dq-blog__label {
    font-size: 10px;
    font-weight: 700;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 12px;
}

.dq-blog__title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    color: #0f172a;
}

@media (min-width: 768px) {
    .dq-blog__title {
        font-size: 36px;
    }
}

.dq-blog__title span {
    color: #eab308;
}

.dq-blog__viewall {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .dq-blog__viewall {
        display: flex;
    }
}

.dq-blog__viewall:hover {
    color: #ca8a04;
    text-decoration: none;
}

.dq-blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .dq-blog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dq-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.dq-blog-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.dq-blog-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dq-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dq-blog-card:hover .dq-blog-card__img img {
    transform: scale(1.05);
}

.dq-blog-card__body {
    padding: 24px;
}

.dq-blog-card__date {
    font-size: 10px;
    font-weight: 700;
    color: #eab308;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.dq-blog-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.dq-blog-card:hover .dq-blog-card__title {
    color: #ca8a04;
}

.dq-blog-card__excerpt {
    font-size: 14px;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 16px;
    line-height: 1.5;
}

.dq-blog-card__more {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0f172a;
}

/* ========================================
   CONTACT / QUOTE
   ======================================== */
.dq-contact {
    padding: 64px 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.dq-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

@media (min-width: 1024px) {
    .dq-contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dq-contact__form-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #0f172a;
}

.dq-contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dq-contact__form input,
.dq-contact__form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    padding: 12px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.dq-contact__form input:focus,
.dq-contact__form textarea:focus {
    border-color: #94a3b8;
}

.dq-contact__clients {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .dq-contact__clients {
        align-items: flex-end;
    }
}

.dq-contact__clients-title {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 28px;
}

.dq-contact__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

@media (min-width: 576px) {
    .dq-contact__logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dq-contact__logo-item {
    height: 48px;
    background: #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dq-contact__logo-item img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}