/**
 * =====================================================================================
 * /promote/css/promote_landing.css
 *
 * CSS unificado para los 4 landings de Promote (Venue, Yacht, Agency, Artist).
 * Las variables CSS (:root) se definen en cada landing para personalizar colores.
 *
 * NUEVAS CLASES respecto a v1:
 *   .dark-hero        — hero oscuro para el landing de Artist
 *   .feature-list-col — columnas de lista (Artist)
 *   .feature-list-item — ítem de lista con check (Artist)
 *   .discover-box     — caja CTA azul interna (Artist)
 *   .who-line-box     — caja de texto "¿Para quién?" (Artist)
 *   .wk-testi-grid / .wk-quote — grid de citas alternativo (Artist)
 *   .testimonial-stars / .wk-quote-stars — estrellas ★★★★★
 *
 * AUTOR: Fernando A. Peón - WebMaster
 * VERSIÓN: 2.0.0
 * FECHA: 2026-05-07
 * =====================================================================================
 */

/* ── Reset básico ───────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

/* ── Body ───────────────────────────────────────────────────────────────── */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    background: var(--wk-body, #f9f9f9);
    color: #333;
    line-height: 1.6;
    padding-top: 100px !important;
    overflow-x: hidden;
}

/* ── Contenedor responsivo ──────────────────────────────────────────────── */
.container-fluid-custom {
    width: 95%;
    margin: 0 auto;
}
@media (min-width: 1200px) {
    .container-fluid-custom { width: 85%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — dos variantes: claro (venue/yacht/agency) y oscuro (artist)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero claro */
.modern-header {
    background-color: var(--alternate-bg, #d9e6f2);
    color: var(--dark, #2D3436);
    padding: 72px 0 80px;
    text-align: center;
}

/* Hero oscuro (artist) */
.dark-hero {
    background: linear-gradient(135deg, #001B3C 0%, #005BAB 65%, #034B8D 100%);
    color: #fff;
    padding: 72px 0 80px;
    text-align: center;
}
.dark-hero .header-title       { color: #fff; white-space: normal; }
.dark-hero .header-subtitle    { color: rgba(255, 255, 255, .88); }
.dark-hero .header-description { color: rgba(255, 255, 255, .75); }

/* Contenido del hero */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.header-title {
    font-size: 2.9rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
    color: var(--primary, #005BAB);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}
@media (max-width: 1200px) { .header-title { font-size: 2.6rem; } }
@media (max-width: 992px)  { .header-title { font-size: 2.2rem; } }
@media (max-width: 768px)  { .header-title { font-size: 1.9rem; white-space: normal; line-height: 1.25; } }
@media (max-width: 576px)  { .header-title { font-size: 1.65rem; } }

.header-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    margin-bottom: 18px;
    max-width: 760px;
    color: var(--dark, #2D3436);
    opacity: .95;
    text-align: center;
}
.header-description {
    font-size: 1.05rem;
    max-width: 760px;
    margin-bottom: 36px;
    color: #555;
    line-height: 1.75;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOTÓN CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.btn-modern {
    background: linear-gradient(135deg, var(--secondary, #F8941D) 0%, #FFA726 100%);
    border: none;
    color: #fff;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .3px;
    transition: var(--transition, all .3s ease);
    box-shadow: 0 8px 20px rgba(248, 148, 29, .35);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-modern::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transition: .5s;
}
.btn-modern:hover::after { left: 100%; }
.btn-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(248, 148, 29, .45);
    color: #fff;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECCIONES — fondo alternado
   ═══════════════════════════════════════════════════════════════════════════ */
.section-modern {
    padding: 90px 0;
    position: relative;
}

/* Venue / Yacht / Agency */
#features.section-modern             { background-color: #fff; }
#tools.section-modern                { background-color: var(--alternate-bg, #d9e6f2); }
#who.section-modern                  { background-color: #fff; }
.testimonials-modern.section-modern  { background-color: var(--alternate-bg, #d9e6f2); }
#security.section-modern             { background-color: #fff; }
#pricing.section-modern              { background-color: var(--alternate-bg, #d9e6f2); }

/* Artist */
#discover.section-modern             { background-color: var(--alternate-bg, #d9e6f2); }
#testimonials.section-modern         { background-color: var(--alternate-bg, #d9e6f2); }

/* CTA final — fondo azul en todos los landings */
.cta-modern.section-modern {
    background: linear-gradient(135deg, var(--primary, #005BAB) 0%, #034B8D 100%);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TÍTULO DE SECCIÓN
   ═══════════════════════════════════════════════════════════════════════════ */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--dark, #2D3436);
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -18px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 4px;
    background: linear-gradient(to right, var(--primary, #005BAB), var(--secondary, #F8941D));
    border-radius: 2px;
}
/* Título blanco en CTA */
.cta-modern .cta-title-modern,
.cta-modern .section-title { color: #fff; }
.cta-modern .section-title::after {
    background: linear-gradient(to right, #fff, rgba(255,255,255,.5));
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURE CARDS (sección "Por qué")
   ═══════════════════════════════════════════════════════════════════════════ */
.feature-grid-modern {
    display: grid;
    gap: 28px;
    margin-top: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .feature-grid-modern { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
    .feature-grid-modern { grid-template-columns: 1fr; }
}

.feature-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 38px 26px;
    text-align: center;
    transition: var(--transition, all .3s ease);
    box-shadow: 0 4px 18px rgba(0, 91, 171, .07);
    border: 1.5px solid rgba(0, 91, 171, .09);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 91, 171, .14);
    border-color: var(--primary, #005BAB);
}

/* Icono en círculo degradado */
.feature-icon-modern {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #005BAB) 0%, #034B8D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}
.feature-icon-modern i,
.feature-icon-modern .fas,
.feature-icon-modern .far,
.feature-icon-modern .fab {
    font-size: 2rem;
    color: #fff;
    /* Neutralizar herencia del gradient-text del CSS anterior */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #fff;
}

.feature-card-modern h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark, #2D3436);
}
.feature-card-modern p {
    color: #666;
    line-height: 1.75;
    margin: 0;
    font-size: .97rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECCIÓN TOOLS — dos columnas de ítems con check
   ═══════════════════════════════════════════════════════════════════════════ */
#tools .feature-grid-modern {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 10px;
}
#tools .feature-card-modern {
    flex: 0 1 440px;
    max-width: 480px;
    text-align: left;
    align-items: flex-start;
}
@media (max-width: 767.98px) {
    #tools .feature-card-modern { flex: 1 1 100%; max-width: 100%; }
}

/* Check de los ítems de Tools — restaurar color verde */
#tools .fa-check-circle {
    color: #00B894 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #00B894 !important;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHO CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.who-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    margin-top: 10px;
}
.who-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition, all .3s ease);
    box-shadow: 0 4px 18px rgba(0, 91, 171, .07);
    border: 1.5px solid rgba(0, 91, 171, .09);
}
.who-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 91, 171, .14);
    border-color: var(--primary, #005BAB);
}
.who-icon-modern {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #005BAB) 0%, #034B8D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.who-icon-modern i,
.who-icon-modern .fas {
    font-size: 1.7rem;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #fff;
}
.who-card-modern h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark, #2D3436);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIOS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonial-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 10px;
}
.testimonial-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1.5px solid rgba(0, 91, 171, .09);
    transition: var(--transition, all .3s ease);
    box-shadow: 0 4px 18px rgba(0, 91, 171, .07);
}
.testimonial-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 91, 171, .13);
}
.testimonial-stars {
    color: var(--secondary, #F8941D);
    font-size: 1.05rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
    color: #555;
}
.testimonial-author {
    font-weight: 700;
    font-size: .95rem;
    color: var(--primary, #005BAB);
    padding-left: 20px;
    position: relative;
}
.testimonial-author::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 10px; height: 2px;
    background: var(--secondary, #F8941D);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRECIOS
   ═══════════════════════════════════════════════════════════════════════════ */
.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 10px;
}
.pricing-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition, all .3s ease);
    box-shadow: 0 4px 18px rgba(0, 91, 171, .07);
    border: 2px solid rgba(0, 91, 171, .09);
}
/* Tercera tarjeta (el "sí, comisión") — destacada */
.pricing-card-modern:last-child {
    border-color: var(--primary, #005BAB);
    background: linear-gradient(160deg, #EEF4FF 0%, #fff 100%);
    box-shadow: 0 8px 28px rgba(0, 91, 171, .16);
}
.pricing-card-modern:hover { transform: translateY(-6px); }
.pricing-card-modern h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark, #2D3436);
    margin: 0;
}

/* Iconos de pricing — sin círculo de fondo, mantener color inline */
.pricing-card-modern .feature-icon-modern {
    background: none;
    width: auto;
    height: auto;
    margin-bottom: 16px;
    display: block;
}
.pricing-card-modern .feature-icon-modern i,
.pricing-card-modern .feature-icon-modern .fas {
    font-size: 2.4rem;
    /* el color viene del style inline del HTML (rojo / verde) */
    -webkit-text-fill-color: unset;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA FINAL (fondo azul en todos los landings)
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-title-modern {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.2;
}
.cta-text-modern {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, .9);
}
.cta-modern p { color: rgba(255, 255, 255, .8); }

/* ═══════════════════════════════════════════════════════════════════════════
   ARTIST — clases específicas integradas en el CSS compartido
   ═══════════════════════════════════════════════════════════════════════════ */

/* Listas de features (reemplaza las tarjetas de features) */
.feature-list-col {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 91, 171, .07);
    border: 1.5px solid rgba(0, 91, 171, .09);
    transition: var(--transition, all .3s ease);
}
.feature-list-col:hover {
    box-shadow: 0 14px 32px rgba(0, 91, 171, .13);
    border-color: var(--primary, #005BAB);
}
.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    font-size: 1.02rem;
    color: #444;
    line-height: 1.55;
}
.feature-list-item:last-child { margin-bottom: 0; }
.feature-list-item i {
    color: #00B894;
    -webkit-text-fill-color: #00B894;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Caja "Descúbrete" — gradiente azul */
.discover-box {
    background: linear-gradient(135deg, var(--primary, #005BAB) 0%, #034B8D 100%);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 91, 171, .22);
}
.discover-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.discover-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .9);
    max-width: 640px;
    margin: 0 auto 12px;
}
@media (max-width: 576px) {
    .discover-box { padding: 36px 22px; }
    .discover-box h2 { font-size: 1.65rem; }
}

/* Caja "¿Para quién?" — línea de texto centrada */
.who-line-box {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 91, 171, .07);
    border: 1.5px solid rgba(0, 91, 171, .09);
    font-size: 1.1rem;
    color: #333;
    line-height: 2;
    max-width: 900px;
    margin: 10px auto 0;
}

/* Grid de citas (artist) */
.wk-testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 10px;
}
.wk-quote {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 18px rgba(0, 91, 171, .07);
    border: 1.5px solid rgba(0, 91, 171, .09);
    transition: var(--transition, all .3s ease);
}
.wk-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 91, 171, .13);
}
.wk-quote-stars {
    color: var(--secondary, #F8941D);
    font-size: 1.05rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.wk-quote-text {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.wk-quote-author {
    font-weight: 700;
    color: var(--primary, #005BAB);
    font-size: .95rem;
    padding-left: 20px;
    position: relative;
}
.wk-quote-author::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 10px; height: 2px;
    background: var(--secondary, #F8941D);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO CON IMAGEN — clase unificada para los 4 landings
   Uso: <header class="wk-hero" style="background-image:url('...')">
   El overlay rgba(0,0,0,.55) se aplica vía ::before para garantizar
   legibilidad sobre cualquier fotografía.
   ═══════════════════════════════════════════════════════════════════════════ */
.wk-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 120px 0 110px;
    text-align: center;
    overflow: hidden;
}
/* Overlay oscuro al 55% */
.wk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 0;
}
/* El contenedor principal queda por encima del overlay */
.wk-hero .container-fluid-custom {
    position: relative;
    z-index: 1;
}
/* Textos siempre blancos en el hero con imagen */
.wk-hero .header-title       { color: #fff; white-space: normal; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.wk-hero .header-subtitle    { color: rgba(255, 255, 255, .92); text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.wk-hero .header-description { color: rgba(255, 255, 255, .82); text-shadow: 0 1px 4px rgba(0,0,0,.35); }
/* Responsive */
@media (max-width: 768px) {
    .wk-hero { padding: 90px 0 80px; }
}
@media (max-width: 576px) {
    .wk-hero { padding: 72px 0 64px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER COMPARTIDO — .wk-landing-footer
   Cuatro columnas en desktop → dos en tablet → una en móvil
   ═══════════════════════════════════════════════════════════════════════════ */
.wk-landing-footer {
    background: linear-gradient(160deg, #002D5C 0%, #005BAB 100%);
    color: #C8DEFF;
    font-size: .93rem;
}

/* Franja superior con columnas */
.wk-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 44px;
    align-items: start;
}
@media (max-width: 991.98px) {
    .wk-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575.98px) {
    .wk-footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 30px; }
}

/* Marca / descripción */
.wk-footer-brand .wk-footer-logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 12px;
    display: inline-block;
}
.wk-footer-brand .wk-footer-logo-text span {
    color: var(--secondary, #F8941D);
}
.wk-footer-brand p {
    font-size: .9rem;
    color: rgba(200, 222, 255, .8);
    line-height: 1.7;
    max-width: 280px;
    margin: 0;
}

/* Columnas de enlaces */
.wk-footer-links h6,
.wk-footer-social h6 {
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary, #F8941D);
    display: inline-block;
}
.wk-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wk-footer-links ul li {
    margin-bottom: 10px;
}
.wk-footer-links ul li a {
    color: rgba(200, 222, 255, .85);
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
    display: inline-block;
}
.wk-footer-links ul li a:hover {
    color: var(--secondary, #F8941D);
    padding-left: 4px;
}

/* Iconos de redes sociales */
.wk-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.wk-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 222, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200, 222, 255, .85);
    text-decoration: none;
    transition: all .25s ease;
    font-size: .95rem;
}
.wk-social-icons a:hover {
    background: var(--secondary, #F8941D);
    border-color: var(--secondary, #F8941D);
    color: #fff;
    transform: translateY(-3px);
}

/* Franja inferior — copyright */
.wk-footer-bottom {
    border-top: 1px solid rgba(200, 222, 255, .15);
    padding: 20px 0;
    text-align: center;
}
.wk-footer-bottom p {
    margin: 0;
    font-size: .86rem;
    color: rgba(200, 222, 255, .6);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER ANTIGUO — mantenido por compatibilidad (no se usa en landings)
   ═══════════════════════════════════════════════════════════════════════════ */
.footer-modern {
    background: linear-gradient(135deg, var(--primary, #005BAB) 0%, #034B8D 100%);
    color: #EAF4FF;
    text-align: center;
    padding: 36px 20px;
    font-size: .92rem;
}
.footer-modern a {
    color: var(--secondary, #F8941D);
    text-decoration: none;
    margin: 0 8px;
    transition: var(--transition, all .3s ease);
}
.footer-modern a:hover { color: #fff; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    body             { padding-top: 80px !important; }
    .modern-header,
    .dark-hero       { padding: 52px 0 65px; }
    .section-modern  { padding: 62px 0; }
    .section-title   { font-size: 1.9rem; }
    .cta-title-modern { font-size: 2rem; }
    .feature-card-modern,
    .testimonial-card-modern,
    .who-card-modern,
    .pricing-card-modern { padding: 26px 18px; }
    .feature-grid-modern,
    .testimonial-grid-modern,
    .who-grid-modern,
    .pricing-grid-modern,
    .wk-testi-grid   { grid-template-columns: 1fr; }
    .who-line-box    { padding: 26px 22px; }
}
@media (max-width: 576px) {
    .section-title    { font-size: 1.7rem; }
    .btn-modern       { padding: 14px 28px; font-size: 1rem; }
    .header-title     { font-size: 1.55rem; }
    .cta-title-modern { font-size: 1.75rem; }
}
