/* DentTALKS — Extended bilingual sections */
/* Reuses --dt-* variables from denttalks.css */

/* ===== Shared eyebrow / highlight ===== */
.dt-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dt-secondary);
    margin-bottom: 0.75rem;
}

.dt-highlight {
    color: var(--dt-secondary);
}

/* ===== What-Is pillars ===== */
.dt-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.dt-pillar {
    background: #f8f9fa;
    border-left: 3px solid var(--dt-secondary);
    border-radius: 8px;
    padding: 0.9rem 1rem;
}

.dt-pillar-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dt-secondary);
    margin-bottom: 0.3rem;
}

.dt-pillar h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dt-primary);
    margin: 0 0 0.25rem;
}

.dt-pillar p {
    font-size: 0.82rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ===== Focus area icon grid (8 items) ===== */
.dt-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.dt-focus-card {
    background: #fff;
    border: 1px solid rgba(14, 65, 91, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dt-focus-card:hover {
    box-shadow: 0 8px 24px rgba(14, 65, 91, 0.12);
    transform: translateY(-3px);
}

.dt-focus-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.dt-focus-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dt-primary);
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.dt-focus-card p {
    font-size: 0.78rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ===== Why DentTALKS advantages ===== */
.dt-why-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.dt-why-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dt-why-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--dt-primary);
    margin: 0;
}

.dt-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.dt-advantage {
    background: #fff;
    border: 1px solid rgba(14, 65, 91, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(14, 65, 91, 0.06);
}

.dt-adv-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.dt-advantage h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dt-primary);
    margin: 0 0 0.35rem;
}

.dt-advantage p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ===== Final CTA ===== */
.dt-final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dt-primary), #06293a);
    color: #fff;
    text-align: center;
}

.dt-final-cta-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1rem;
}

.dt-final-cta h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.5px;
}

.dt-final-cta .dt-highlight {
    color: #fbbf24;
}

.dt-final-cta .dt-eyebrow {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.9rem;
}

.dt-final-cta p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
}

.dt-final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.dt-final-cta-buttons .dent-cta-final {
    min-width: 210px;
}

.dt-final-cta-buttons .dent-cta-final .inner {
    padding: 13px 26px;
    white-space: nowrap;
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
    .dt-focus-grid { grid-template-columns: repeat(2, 1fr); }
    .dt-advantages { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .dt-pillars { grid-template-columns: 1fr; }
    .dt-focus-grid { grid-template-columns: 1fr 1fr; }
    .dt-advantages { grid-template-columns: 1fr; }
    .dt-final-cta { padding: 3.5rem 0; }
    .dt-final-cta-buttons { flex-direction: column; align-items: stretch; }
    .dt-final-cta-buttons .dent-cta-final { width: 100%; }
    .dt-final-cta-buttons .dent-cta-final .inner {
        width: 100%;
        justify-content: center;
        white-space: normal;
        line-height: 1.25;
    }

}
