@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
}

@media (min-width: 769px) {
    .desktop-img {
        display: block;
    }

    .mobile-img {
        display: none;
    }
}

/* Turquality design system */
.turquality-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 12px 64px;
    color: #1f2937;
}

.turq-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 56px 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 248, 220, 0.42), transparent 22%),
        linear-gradient(135deg, #f6e3a1 0%, #d9b45c 48%, #c79a2b 100%);
    color: #111827;
    box-shadow: 0 24px 60px rgba(163, 120, 15, 0.18);
    border: 1px solid rgba(137, 101, 20, 0.16);
}

.turq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.turq-subhero {
    text-align: left;
}

.turq-subhero .turq-pill-row {
    justify-content: flex-start;
}

.turq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(17, 24, 39, 0.1);
    color: #111827;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.turq-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111827;
}

.turq-hero p {
    font-size: 1.08rem;
    max-width: 880px;
    margin: 0 auto;
    color: #111827;
    opacity: 0.94;
}

.turq-subhero p {
    margin: 0;
    max-width: 780px;
}

.turq-pill-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.turq-pill-row-left {
    justify-content: flex-start;
}

.turq-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(17, 24, 39, 0.12);
    color: #111827;
    backdrop-filter: blur(8px);
}

.turq-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.turq-actions-left {
    justify-content: flex-start;
}

.turq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.turq-btn:hover {
    transform: translateY(-2px);
}

.turq-btn-primary {
    background: #111827;
    color: #fff;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.16);
}

.turq-btn-primary:hover {
    color: #fff;
    background: #0f172a;
}

.turq-btn-secondary {
    background: rgba(255, 255, 255, 0.42);
    color: #111827;
    border: 1px solid rgba(17, 24, 39, 0.12);
}

.turq-btn-secondary:hover {
    color: #111827;
    background: rgba(255, 255, 255, 0.58);
}

.turq-section {
    margin-top: 42px;
}

.turq-section-title {
    text-align: center;
    margin-bottom: 14px;
    color: #111827;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 800;
}

.turq-section-intro {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
    color: #4b5563;
    font-size: 1rem;
}

.turq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.turq-stat {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.turq-stat strong {
    display: block;
    font-size: 1.35rem;
    color: #9f1239;
    margin-bottom: 6px;
}

.turq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.turq-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    height: 100%;
}

.turq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
    border-color: rgba(178, 31, 31, 0.18);
}

.turq-card-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(178, 31, 31, 0.08);
    color: #9f1239;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.turq-card h3 {
    color: #7f1d1d;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.turq-card p {
    color: #4b5563;
    margin-bottom: 16px;
}

.turq-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.turq-link-list li {
    margin-bottom: 10px;
}

.turq-link-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: #102a62;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.turq-link-list a:hover {
    background: rgba(16, 42, 98, 0.06);
    color: #7f1d1d;
    transform: translateX(2px);
}

.turq-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.turq-step {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    padding: 20px;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
}

.turq-step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}

.turq-step h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.turq-academy {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 34px;
    border-radius: 24px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.05);
}

.turq-academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.turq-academy-link {
    display: block;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    text-align: center;
    border-radius: 16px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.turq-academy-link:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 42, 108, 0.18);
    box-shadow: 0 16px 28px rgba(17, 24, 39, 0.09);
    color: #102a62;
}

.turq-footer {
    margin-top: 46px;
    padding: 30px;
    border-radius: 22px;
    border-left: 6px solid #b21f1f;
    background: linear-gradient(180deg, #fff7f7 0%, #fff 100%);
    box-shadow: 0 16px 34px rgba(178, 31, 31, 0.07);
}

.turq-footer h4 {
    margin-top: 0;
    color: #9f1239;
    font-weight: 800;
    margin-bottom: 12px;
}

.turq-footer p:last-child {
    margin-bottom: 0;
}

.turq-visual-showcase {
    margin-top: 34px;
}

.turq-visual-frame {
    position: relative;
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffdf8 0%, #f8fafc 100%);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    padding: 18px;
}

.turq-visual-media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.turq-visual-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    background: #fff;
}

.turq-visual-overlay {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 500px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.56);
    color: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.18);
}

.turq-visual-overlay strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.turq-visual-overlay span {
    display: block;
    font-size: 0.96rem;
    line-height: 1.45;
}

.turq-visual-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 18%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

@media (max-width: 576px) {
    .turquality-container {
        padding: 16px 8px 48px;
    }

    .turq-hero {
        padding: 34px 16px 30px;
        border-radius: 18px;
        text-align: left;
    }

    .turq-kicker {
        font-size: 0.82rem;
        padding: 8px 12px;
        margin-bottom: 14px;
    }

    .turq-hero h1 {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .turq-hero p,
    .turq-subhero p {
        font-size: 0.96rem;
        max-width: 100%;
    }

    .turq-pill-row,
    .turq-pill-row-left,
    .turq-actions,
    .turq-actions-left {
        justify-content: flex-start;
        gap: 10px;
    }

    .turq-pill-row {
        margin-top: 20px;
    }

    .turq-pill {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .turq-btn {
        width: 100%;
        min-height: 46px;
    }

    .turq-section {
        margin-top: 30px;
    }

    .turq-section-title {
        text-align: left;
        font-size: 1.45rem;
        margin-bottom: 10px;
    }

    .turq-section-intro {
        text-align: left;
        font-size: 0.95rem;
        margin: 0 0 22px;
    }

    .turq-stats,
    .turq-grid,
    .turq-process,
    .turq-academy-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .turq-stat,
    .turq-card,
    .turq-step,
    .turq-footer {
        padding: 18px;
        border-radius: 16px;
    }

    .turq-card h3,
    .turq-step h3 {
        font-size: 1.08rem;
    }

    .turq-link-list a {
        padding: 10px 10px;
        border-radius: 10px;
        font-size: 0.95rem;
    }

    .turq-academy {
        padding: 22px 14px;
        border-radius: 18px;
    }

    .turq-academy-link {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .turq-visual-showcase {
        margin-top: 24px;
    }

    .turq-visual-frame {
        padding: 8px;
        border-radius: 18px;
    }

    .turq-visual-image {
        max-height: none;
        min-height: 180px;
        border-radius: 14px;
    }

    .turq-visual-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 14px 14px;
        border-radius: 14px;
    }

    .turq-visual-overlay strong {
        font-size: 1rem;
    }

    .turq-visual-overlay span {
        font-size: 0.88rem;
    }
}
