/*
Theme Name: DWT Digital Word Technology
Theme URI: https://digitalwordtechnology.ro
Author: Digital Word Technology
Author URI: https://digitalwordtechnology.ro
Description: Temă WordPress profesională pentru servicii IT, infrastructură, cloud, software, securitate și soluții audio. Include pagini separate, conținut demonstrativ și modul propriu de administrare.
Version: 3.0.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: dwt-technology
*/

:root {
    --dwt-yellow: #f5b400;
    --dwt-yellow-deep: #e19c00;
    --dwt-yellow-soft: #fff7da;
    --dwt-ink: #151515;
    --dwt-charcoal: #252525;
    --dwt-muted: #666b73;
    --dwt-line: #e4e5e7;
    --dwt-surface: #f6f7f8;
    --dwt-white: #ffffff;
    --dwt-radius: 22px;
    --dwt-radius-sm: 14px;
    --dwt-shadow: 0 18px 50px rgba(22, 22, 22, 0.12);
    --dwt-shadow-sm: 0 10px 28px rgba(22, 22, 22, 0.08);
    --dwt-container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--dwt-ink);
    background: var(--dwt-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
body.dwt-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: #a87500; text-decoration: none; }
a:hover { color: var(--dwt-ink); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 99999;
    background: var(--dwt-white);
    color: var(--dwt-ink);
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: var(--dwt-shadow-sm);
}

.dwt-container { width: min(calc(100% - 40px), var(--dwt-container)); margin-inline: auto; }
.dwt-section { padding: 92px 0; }
.dwt-section-sm { padding: 62px 0; }
.dwt-section-alt { background: var(--dwt-surface); }
.dwt-section-dark {
    color: var(--dwt-white);
    background:
        radial-gradient(circle at 15% 12%, rgba(245,180,0,.23), transparent 32%),
        radial-gradient(circle at 90% 85%, rgba(245,180,0,.10), transparent 27%),
        linear-gradient(135deg, #0f0f10, #27272a);
}
.dwt-section-dark a { color: var(--dwt-white); }
.dwt-grid { display: grid; gap: 28px; }
.dwt-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dwt-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dwt-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.dwt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a87500;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.dwt-eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--dwt-yellow), var(--dwt-ink));
}
.dwt-section-dark .dwt-eyebrow { color: #ffd85f; }
.dwt-title {
    margin: 14px 0 18px;
    color: var(--dwt-ink);
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}
.dwt-section-dark .dwt-title { color: var(--dwt-white); }
.dwt-lead { max-width: 790px; margin: 0; color: var(--dwt-muted); font-size: 1.15rem; }
.dwt-section-dark .dwt-lead { color: rgba(255,255,255,.72); }
.dwt-section-heading { margin-bottom: 44px; }
.dwt-section-heading.center { text-align: center; }
.dwt-section-heading.center .dwt-lead { margin-inline: auto; }
.dwt-section-heading.dwt-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.dwt-section-heading.dwt-heading-row > div { max-width: 860px; }
.dwt-section-action { margin-top: 34px; text-align: center; }

.dwt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.dwt-button:hover { transform: translateY(-2px); }
.dwt-button-primary {
    color: var(--dwt-ink);
    background: linear-gradient(135deg, #ffd04b, var(--dwt-yellow));
    box-shadow: 0 13px 28px rgba(245,180,0,.27);
}
.dwt-button-primary:hover { color: #000; box-shadow: 0 16px 34px rgba(245,180,0,.36); }
.dwt-button-secondary { color: var(--dwt-ink); background: var(--dwt-white); border-color: rgba(21,21,21,.18); }
.dwt-button-secondary:hover { color: #000; border-color: var(--dwt-yellow); }
.dwt-button-ghost { color: var(--dwt-white); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.dwt-button-ghost:hover { color: var(--dwt-white); background: rgba(255,255,255,.14); }
.dwt-button svg { width: 18px; height: 18px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(21,21,21,.08);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(0,0,0,.10); }
.dwt-header-inner { display: flex; align-items: center; min-height: 84px; gap: 28px; }
.site-branding { flex: 0 0 auto; }
.site-branding a { display: flex; align-items: center; }
.custom-logo { width: auto; max-height: 62px; }
.dwt-default-logo { width: 184px; height: 62px; object-fit: contain; object-position: left center; display: block; }
.dwt-nav-wrap { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.primary-navigation ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation a { display: block; padding: 11px 10px; color: var(--dwt-ink); font-size: .92rem; font-weight: 750; border-radius: 10px; }
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current-menu-ancestor > a { color: #000; background: var(--dwt-yellow-soft); }
.primary-navigation .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: block;
    width: 285px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    background: var(--dwt-white);
    border: 1px solid var(--dwt-line);
    border-radius: 16px;
    box-shadow: var(--dwt-shadow);
    transition: .2s ease;
}
.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-navigation .sub-menu a { padding: 10px 12px; }
.dwt-header-cta { white-space: nowrap; font-size: .9rem; }
.dwt-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: var(--dwt-white);
    border: 1px solid var(--dwt-line);
    border-radius: 12px;
}
.dwt-menu-toggle span,
.dwt-menu-toggle span::before,
.dwt-menu-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dwt-ink);
    content: "";
    transition: .2s ease;
}
.dwt-menu-toggle span { position: relative; }
.dwt-menu-toggle span::before { position: absolute; top: -7px; }
.dwt-menu-toggle span::after { position: absolute; top: 7px; }
.dwt-menu-toggle.is-active span { background: transparent; }
.dwt-menu-toggle.is-active span::before { top: 0; transform: rotate(45deg); }
.dwt-menu-toggle.is-active span::after { top: 0; transform: rotate(-45deg); }

.dwt-hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #f8f8f8;
}
.dwt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.995) 0%, rgba(255,255,255,.97) 40%, rgba(255,255,255,.48) 63%, rgba(255,255,255,.07) 100%),
        var(--dwt-hero-image, none) center/cover no-repeat;
}
.dwt-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62%;
    height: 7px;
    background: linear-gradient(90deg, var(--dwt-yellow), var(--dwt-ink), transparent);
}
.dwt-hero-content { position: relative; z-index: 2; max-width: 720px; padding: 105px 0 120px; }
.dwt-hero h1 { margin: 14px 0 22px; color: var(--dwt-ink); font-size: clamp(2.7rem, 5.8vw, 5rem); line-height: .98; letter-spacing: -.06em; }
.dwt-hero h1 strong { color: #b37a00; }
.dwt-hero p { max-width: 660px; margin: 0; color: #4e5359; font-size: 1.2rem; }
.dwt-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.dwt-hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.dwt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    color: var(--dwt-ink);
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(21,21,21,.12);
    border-radius: 999px;
    font-size: .87rem;
    font-weight: 750;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.dwt-badge svg { width: 17px; height: 17px; color: #b37a00; }

.dwt-trust-bar { position: relative; z-index: 4; margin-top: -34px; }
.dwt-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    background: var(--dwt-white);
    border: 1px solid rgba(21,21,21,.09);
    border-radius: var(--dwt-radius);
    box-shadow: var(--dwt-shadow);
}
.dwt-trust-item { display: flex; align-items: center; gap: 13px; padding: 22px 18px; }
.dwt-trust-item + .dwt-trust-item { border-left: 1px solid var(--dwt-line); }
.dwt-icon-wrap {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--dwt-ink);
    background: linear-gradient(145deg, #fff9e6, #fff2bb);
    border: 1px solid #f5dfa2;
    border-radius: 16px;
}
.dwt-icon-wrap svg { width: 28px; height: 28px; }
.dwt-trust-item strong { display: block; color: var(--dwt-ink); line-height: 1.25; }
.dwt-trust-item span { color: var(--dwt-muted); font-size: .83rem; line-height: 1.35; }

.dwt-card {
    position: relative;
    overflow: hidden;
    background: var(--dwt-white);
    border: 1px solid var(--dwt-line);
    border-radius: var(--dwt-radius);
    box-shadow: var(--dwt-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.dwt-card:hover { transform: translateY(-6px); border-color: rgba(245,180,0,.6); box-shadow: var(--dwt-shadow); }
.dwt-card-body { padding: 30px; }
.dwt-card h2,
.dwt-card h3 { margin: 18px 0 10px; color: var(--dwt-ink); font-size: 1.34rem; line-height: 1.2; }
.dwt-card h2 a,
.dwt-card h3 a { color: inherit; }
.dwt-card p { margin: 0; color: var(--dwt-muted); }
.dwt-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: #8c6200; font-weight: 850; }
.dwt-card-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.dwt-card-link:hover svg { transform: translateX(4px); }
.dwt-service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--dwt-yellow), var(--dwt-ink)); }
.dwt-service-card .dwt-icon-wrap { width: 62px; height: 62px; }
.dwt-card-image { display: block; height: 220px; overflow: hidden; background: #efefef; }
.dwt-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dwt-card:hover .dwt-card-image img { transform: scale(1.04); }
.dwt-card-placeholder { display: grid; place-items: center; background: linear-gradient(135deg, #f4f4f4, #fff5c9); }
.dwt-card-placeholder span { width: 76px; height: 76px; display: grid; place-items: center; color: #8c6200; border: 1px solid #efd57f; border-radius: 20px; background: rgba(255,255,255,.72); }
.dwt-card-placeholder svg { width: 40px; height: 40px; }
.dwt-meta-label { display: inline-block; color: #986b00; font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.dwt-resource-card { min-height: 100%; }
.dwt-resource-card .dwt-icon-wrap { border-radius: 50%; }

.dwt-solutions-section { overflow: hidden; position: relative; }
.dwt-solutions-section::after { content: ""; position: absolute; right: -120px; top: -140px; width: 420px; height: 420px; border: 1px solid rgba(245,180,0,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(245,180,0,.03), 0 0 0 120px rgba(245,180,0,.02); }
.dwt-solution-grid { position: relative; z-index: 2; }
.dwt-solution-card { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.055); transition: .25s ease; }
.dwt-solution-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(245,180,0,.4); }
.dwt-solution-card .dwt-icon-wrap { color: #111; background: var(--dwt-yellow); border-color: transparent; }
.dwt-solution-card h3 { margin: 22px 0 10px; font-size: 1.25rem; }
.dwt-solution-card p { color: rgba(255,255,255,.67); }
.dwt-solution-card > a { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 800; }
.dwt-solution-card > a svg { width: 17px; height: 17px; }

.dwt-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.dwt-split-compact { grid-template-columns: 1.2fr .8fr; }
.dwt-process-list { display: grid; gap: 16px; margin-top: 36px; }
.dwt-process-list > div { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; padding: 18px 0; border-top: 1px solid var(--dwt-line); }
.dwt-process-list > div > span { display: grid; place-items: center; width: 48px; height: 48px; color: #2d2100; background: var(--dwt-yellow); border-radius: 50%; font-size: .86rem; font-weight: 900; }
.dwt-process-list strong { display: block; font-size: 1.1rem; }
.dwt-process-list p { margin: 4px 0 0; color: var(--dwt-muted); }
.dwt-visual-panel { position: relative; padding: 32px; border: 1px solid var(--dwt-line); border-radius: 28px; background: var(--dwt-white); box-shadow: var(--dwt-shadow); }
.dwt-visual-panel::before { content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(21,21,21,.12); border-radius: 20px; pointer-events: none; }
.dwt-visual-panel > img { position: relative; z-index: 2; display: block; width: min(100%, 390px); margin: 0 auto; }
.dwt-stat-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 22px; border-top: 1px solid var(--dwt-line); }
.dwt-stat-grid > div { padding: 24px 12px 6px; text-align: center; }
.dwt-stat-grid > div + div { border-left: 1px solid var(--dwt-line); }
.dwt-stat-grid strong { display: block; font-size: 1.6rem; line-height: 1; }
.dwt-stat-grid span { display: block; margin-top: 8px; color: var(--dwt-muted); font-size: .82rem; }

.dwt-check-panel { padding: 32px; background: var(--dwt-white); border: 1px solid var(--dwt-line); border-radius: var(--dwt-radius); box-shadow: var(--dwt-shadow-sm); }
.dwt-check-panel ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.dwt-check-panel li { position: relative; padding-left: 30px; color: var(--dwt-charcoal); }
.dwt-check-panel li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 22px; height: 22px; color: #111; background: var(--dwt-yellow); border-radius: 50%; font-size: .78rem; font-weight: 900; }

.dwt-testimonial { position: relative; margin: 0; padding: 34px; border: 1px solid var(--dwt-line); border-radius: var(--dwt-radius); background: var(--dwt-white); box-shadow: var(--dwt-shadow-sm); }
.dwt-testimonial > span { position: absolute; top: 16px; right: 24px; color: var(--dwt-yellow); font-family: Georgia, serif; font-size: 4rem; line-height: 1; }
.dwt-testimonial p { margin: 0; color: #444a50; }
.dwt-testimonial footer { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--dwt-line); }
.dwt-testimonial strong { display: block; }
.dwt-testimonial small { color: var(--dwt-muted); }

.dwt-faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.dwt-faq-list { display: grid; gap: 12px; }
.dwt-faq-item { overflow: hidden; background: var(--dwt-white); border: 1px solid var(--dwt-line); border-radius: 16px; }
.dwt-faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 24px; color: var(--dwt-ink); background: transparent; border: 0; text-align: left; font-weight: 800; }
.dwt-faq-item button svg { width: 20px; height: 20px; flex: 0 0 auto; transition: transform .2s ease; }
.dwt-faq-item.is-open button svg { transform: rotate(45deg); }
.dwt-faq-answer { display: none; padding: 0 24px 22px; color: var(--dwt-muted); }
.dwt-faq-answer p:first-child { margin-top: 0; }
.dwt-faq-item.is-open .dwt-faq-answer { display: block; }

.dwt-cta { overflow: hidden; color: var(--dwt-white); background: linear-gradient(125deg, #111 0%, #282828 65%, #3b2b00 100%); border-radius: 28px; box-shadow: var(--dwt-shadow); position: relative; }
.dwt-cta::before { content: ""; position: absolute; right: -100px; top: -180px; width: 420px; height: 420px; border: 54px solid rgba(245,180,0,.18); border-radius: 50%; }
.dwt-cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 52px; }
.dwt-cta h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -.04em; }
.dwt-cta p { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); }
.dwt-cta-actions { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; }

.dwt-page-hero { position: relative; overflow: hidden; padding: 88px 0 62px; background: linear-gradient(135deg, #f7f7f7, #fff8dc); border-bottom: 1px solid var(--dwt-line); }
.dwt-page-hero::before { content: ""; position: absolute; right: -70px; top: -150px; width: 410px; height: 410px; border: 1px solid rgba(245,180,0,.36); border-radius: 50%; box-shadow: 0 0 0 52px rgba(245,180,0,.06), 0 0 0 104px rgba(245,180,0,.025); }
.dwt-page-hero::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36%; height: 4px; background: linear-gradient(90deg, var(--dwt-yellow), transparent); }
.dwt-page-hero .dwt-container { position: relative; z-index: 2; }
.dwt-page-hero h1 { max-width: 930px; margin: 14px 0; font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.055em; }
.dwt-page-hero p { max-width: 780px; margin: 0; color: var(--dwt-muted); font-size: 1.12rem; }
.dwt-breadcrumbs { margin-top: 24px; color: #7b7d82; font-size: .88rem; }
.dwt-breadcrumbs a { color: #795600; font-weight: 700; }

.dwt-entry-intro { max-width: 880px; margin-bottom: 42px; color: var(--dwt-muted); font-size: 1.14rem; }
.dwt-content-narrow { max-width: 900px; }
.dwt-content-with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.dwt-entry-content { color: #35393e; }
.dwt-entry-content > *:first-child { margin-top: 0; }
.dwt-entry-content h2 { margin: 1.8em 0 .55em; color: var(--dwt-ink); font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.12; letter-spacing: -.025em; }
.dwt-entry-content h3 { margin: 1.55em 0 .5em; color: var(--dwt-ink); font-size: 1.35rem; }
.dwt-entry-content p { margin: 0 0 1.2em; }
.dwt-entry-content ul,
.dwt-entry-content ol { margin: 0 0 1.35em; padding-left: 1.35em; }
.dwt-entry-content li { margin-bottom: .5em; }
.dwt-entry-content blockquote { margin: 1.6em 0; padding: 22px 26px; background: var(--dwt-yellow-soft); border-left: 5px solid var(--dwt-yellow); }
.dwt-entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.dwt-entry-content th,
.dwt-entry-content td { padding: 12px 14px; border: 1px solid var(--dwt-line); text-align: left; }
.dwt-entry-image { margin-bottom: 34px; overflow: hidden; border-radius: var(--dwt-radius); box-shadow: var(--dwt-shadow-sm); }
.dwt-side-panel { padding: 28px; background: var(--dwt-surface); border: 1px solid var(--dwt-line); border-radius: var(--dwt-radius); position: sticky; top: 110px; }
.dwt-side-panel h2 { margin: 18px 0 10px; font-size: 1.4rem; }
.dwt-side-panel h3 { margin: 24px 0 8px; }
.dwt-side-panel p { color: var(--dwt-muted); }
.dwt-side-panel ol,
.dwt-side-panel ul { padding-left: 1.2em; }
.dwt-side-panel li { margin-bottom: 8px; }
.dwt-side-panel .dwt-button { width: 100%; margin-top: 12px; }
.dwt-about-layout { display: grid; grid-template-columns: 1fr .78fr; gap: 70px; align-items: center; }
.dwt-about-logo { padding: 34px; background: var(--dwt-surface); border: 1px solid var(--dwt-line); border-radius: 28px; }
.dwt-about-logo > img { display: block; width: 100%; max-width: 450px; margin: auto; }
.dwt-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 20px; border-top: 1px solid var(--dwt-line); }
.dwt-mini-stats > div { padding: 20px 10px 0; text-align: center; }
.dwt-mini-stats > div + div { border-left: 1px solid var(--dwt-line); }
.dwt-mini-stats strong { display: block; font-size: 1.5rem; }
.dwt-mini-stats span { color: var(--dwt-muted); font-size: .78rem; }
.dwt-values-grid > div { padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.05); }
.dwt-values-grid > div > span { display: grid; place-items: center; width: 54px; height: 54px; color: #111; background: var(--dwt-yellow); border-radius: 16px; }
.dwt-values-grid svg { width: 28px; height: 28px; }
.dwt-values-grid h3 { margin: 18px 0 8px; }
.dwt-values-grid p { margin: 0; color: rgba(255,255,255,.65); }

.dwt-contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: start; }
.dwt-contact-card { display: grid; gap: 14px; margin: 34px 0; }
.dwt-contact-card > div { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--dwt-line); border-radius: 14px; background: var(--dwt-white); }
.dwt-contact-card > div > span { display: grid; place-items: center; width: 42px; height: 42px; color: #111; background: var(--dwt-yellow); border-radius: 12px; }
.dwt-contact-card svg { width: 22px; height: 22px; }
.dwt-contact-card strong { display: block; }
.dwt-contact-card a,
.dwt-contact-card div div span { color: var(--dwt-muted); }
.dwt-form-panel { padding: 38px; background: var(--dwt-white); border: 1px solid var(--dwt-line); border-radius: 28px; box-shadow: var(--dwt-shadow); }
.dwt-form-panel h2 { margin: 0 0 6px; font-size: 2rem; }
.dwt-form-panel > p { margin-top: 0; color: var(--dwt-muted); }
.dwt-contact-form { display: grid; gap: 18px; margin-top: 28px; }
.dwt-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.dwt-contact-form label { display: grid; gap: 7px; color: #303338; font-size: .9rem; font-weight: 700; }
.dwt-contact-form input,
.dwt-contact-form textarea,
.dwt-contact-form select { width: 100%; padding: 13px 14px; color: var(--dwt-ink); background: #fafafa; border: 1px solid #d7d9dd; border-radius: 10px; outline: none; }
.dwt-contact-form input:focus,
.dwt-contact-form textarea:focus,
.dwt-contact-form select:focus { border-color: var(--dwt-yellow); box-shadow: 0 0 0 3px rgba(245,180,0,.15); background: #fff; }
.dwt-consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; }
.dwt-consent input { width: 18px; height: 18px; margin-top: 3px; }
.dwt-honeypot { position: absolute !important; left: -9999px !important; }
.dwt-notice { margin: 18px 0; padding: 13px 16px; border-radius: 10px; font-weight: 700; }
.dwt-notice.success { background: #e9f7e9; color: #27652b; border: 1px solid #b8dfbb; }
.dwt-notice.error { background: #fff0f0; color: #9d2929; border: 1px solid #efc2c2; }

.dwt-post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 46px; align-items: start; }
.dwt-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.dwt-post-meta { color: #8a6500; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.dwt-blog-sidebar { display: grid; gap: 20px; position: sticky; top: 110px; }
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.search-field { width: 100%; height: 46px; padding: 0 13px; border: 1px solid var(--dwt-line); border-radius: 10px; }
.search-submit { padding: 0 16px; color: #111; background: var(--dwt-yellow); border: 0; border-radius: 10px; font-weight: 800; }
.dwt-blog-sidebar .dwt-side-panel { position: static; }
.dwt-blog-sidebar ul { margin: 0; padding: 0; list-style: none; }
.dwt-blog-sidebar li { padding: 9px 0; border-bottom: 1px solid var(--dwt-line); }
.dwt-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.dwt-tags a { padding: 7px 11px; background: var(--dwt-yellow-soft); border-radius: 999px; font-size: .82rem; font-weight: 750; }
.dwt-panel { margin-top: 50px; padding: 28px; background: var(--dwt-surface); border: 1px solid var(--dwt-line); border-radius: var(--dwt-radius); }

.pagination,
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 38px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; color: var(--dwt-ink); background: #fff; border: 1px solid var(--dwt-line); border-radius: 10px; }
.page-numbers.current,
.page-numbers:hover { color: #111; background: var(--dwt-yellow); border-color: var(--dwt-yellow); }

.dwt-error-page { min-height: 70vh; display: grid; place-items: center; padding: 90px 0; text-align: center; background: linear-gradient(135deg, #f7f7f7, #fff9e7); }
.dwt-error-code { display: block; color: var(--dwt-yellow); font-size: clamp(6rem, 18vw, 14rem); font-weight: 950; line-height: .75; letter-spacing: -.08em; text-shadow: 0 12px 32px rgba(245,180,0,.22); }
.dwt-error-page h1 { margin: 24px 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); }
.dwt-error-page p { max-width: 620px; margin: 0 auto; color: var(--dwt-muted); }
.dwt-error-page .dwt-hero-actions { justify-content: center; }

.site-footer { margin-top: 30px; color: rgba(255,255,255,.76); background: #111; }
.dwt-footer-main { padding: 70px 0 50px; }
.dwt-footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1fr; gap: 46px; }
.dwt-footer-logo { width: 150px; height: 150px; object-fit: contain; background: #fff; border-radius: 50%; }
.dwt-footer-brand p { max-width: 420px; }
.dwt-footer-title { margin: 0 0 18px; color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.dwt-footer-menu,
.dwt-footer-contact { margin: 0; padding: 0; list-style: none; }
.dwt-footer-menu li,
.dwt-footer-contact li { margin-bottom: 9px; }
.dwt-footer-menu a,
.dwt-footer-contact a { color: rgba(255,255,255,.7); }
.dwt-footer-menu a:hover,
.dwt-footer-contact a:hover { color: var(--dwt-yellow); }
.dwt-socials { display: flex; gap: 9px; margin-top: 20px; }
.dwt-socials a { display: grid; place-items: center; width: 38px; height: 38px; color: #111; background: var(--dwt-yellow); border-radius: 10px; }
.dwt-socials svg { width: 19px; height: 19px; }
.dwt-footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: .84rem; }
.dwt-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dwt-footer-legal ul,
ul.dwt-footer-legal { display: flex; gap: 18px; margin: 0; padding: 0; list-style: none; }
.dwt-footer-legal a { color: rgba(255,255,255,.68); }

@media (max-width: 1180px) {
    .dwt-header-cta { display: none; }
    .dwt-trust-grid { grid-template-columns: repeat(3, 1fr); }
    .dwt-trust-item + .dwt-trust-item { border-left: 0; }
    .dwt-trust-item:nth-child(n+4) { border-top: 1px solid var(--dwt-line); }
    .dwt-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    body.admin-bar .site-header { top: 46px; }
    .dwt-menu-toggle { display: inline-flex; margin-left: auto; }
    .dwt-nav-wrap { position: fixed; inset: 84px 0 auto 0; display: block; max-height: calc(100vh - 84px); overflow-y: auto; padding: 22px 20px 30px; opacity: 0; visibility: hidden; transform: translateY(-12px); background: #fff; border-top: 1px solid var(--dwt-line); box-shadow: var(--dwt-shadow); transition: .2s ease; }
    .dwt-nav-wrap.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .primary-navigation ul { display: block; }
    .primary-navigation a { padding: 13px 12px; }
    .primary-navigation .sub-menu { position: static; width: auto; padding: 4px 0 4px 18px; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; }
    .dwt-hero { min-height: 620px; }
    .dwt-hero::before { background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.92) 62%, rgba(255,255,255,.35) 100%), var(--dwt-hero-image, none) 62% center/cover no-repeat; }
    .dwt-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .dwt-split,
    .dwt-faq-layout,
    .dwt-about-layout,
    .dwt-contact-layout,
    .dwt-content-with-aside,
    .dwt-post-layout { grid-template-columns: 1fr; }
    .dwt-side-panel,
    .dwt-blog-sidebar { position: static; }
    .dwt-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .dwt-cta-inner { display: block; }
    .dwt-cta-actions { flex-direction: row; margin-top: 28px; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .dwt-container { width: min(calc(100% - 28px), var(--dwt-container)); }
    .dwt-section { padding: 68px 0; }
    .dwt-section-sm { padding: 46px 0; }
    .dwt-header-inner { min-height: 74px; }
    .dwt-nav-wrap { inset: 74px 0 auto; max-height: calc(100vh - 74px); }
    .dwt-default-logo { width: 145px; height: 54px; }
    .dwt-hero { min-height: 700px; align-items: end; }
    .dwt-hero::before { background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.95) 54%, rgba(255,255,255,.25) 100%), var(--dwt-hero-image, none) 66% top/auto 52% no-repeat; }
    .dwt-hero-content { padding: 290px 0 72px; }
    .dwt-hero h1 { font-size: clamp(2.45rem, 12vw, 4.2rem); }
    .dwt-hero p { font-size: 1.05rem; }
    .dwt-trust-bar { margin-top: -24px; }
    .dwt-trust-grid { grid-template-columns: 1fr; }
    .dwt-trust-item:nth-child(n+2) { border-top: 1px solid var(--dwt-line); }
    .dwt-grid-2,
    .dwt-grid-3,
    .dwt-grid-4,
    .dwt-post-grid { grid-template-columns: 1fr; }
    .dwt-section-heading.dwt-heading-row { display: block; }
    .dwt-section-heading.dwt-heading-row .dwt-card-link { margin-top: 18px; }
    .dwt-stat-grid,
    .dwt-mini-stats { grid-template-columns: 1fr; }
    .dwt-stat-grid > div + div,
    .dwt-mini-stats > div + div { border-left: 0; border-top: 1px solid var(--dwt-line); }
    .dwt-form-grid { grid-template-columns: 1fr; }
    .dwt-form-panel { padding: 26px 20px; }
    .dwt-cta-inner { padding: 36px 24px; }
    .dwt-cta-actions { flex-direction: column; align-items: stretch; }
    .dwt-footer-grid { grid-template-columns: 1fr; }
    .dwt-footer-bottom-inner { display: block; }
    .dwt-footer-legal ul,
    ul.dwt-footer-legal { margin-top: 12px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .dwt-hero-actions .dwt-button { width: 100%; }
    .dwt-hero-badges { display: grid; }
    .dwt-badge { justify-content: center; }
    .dwt-card-body { padding: 25px 22px; }
    .dwt-page-hero { padding: 70px 0 50px; }
}

/* DWT CRM Intelligence 3.1 — contact interface */
body.page-template-page-contact .dwt-page-hero {
    padding: 82px 0 68px;
    color: var(--dwt-white);
    background:
        radial-gradient(circle at 84% 34%, rgba(245,180,0,.18), transparent 26%),
        linear-gradient(125deg, #111214 0%, #1d2025 62%, #292014 100%);
    border-bottom: 4px solid var(--dwt-yellow);
}
body.page-template-page-contact .dwt-page-hero::before {
    right: 4%; top: -165px; width: 520px; height: 520px;
    border-color: rgba(245,180,0,.27);
    box-shadow: 0 0 0 58px rgba(245,180,0,.055), 0 0 0 116px rgba(245,180,0,.025);
}
body.page-template-page-contact .dwt-page-hero::after {
    width: 46%; height: 4px;
    background: linear-gradient(90deg, var(--dwt-yellow), rgba(245,180,0,0));
}
body.page-template-page-contact .dwt-page-hero h1 { color: #fff; }
body.page-template-page-contact .dwt-page-hero p { color: rgba(255,255,255,.76); }
body.page-template-page-contact .dwt-breadcrumbs,
body.page-template-page-contact .dwt-breadcrumbs a { color: rgba(255,255,255,.70); }
body.page-template-page-contact .dwt-breadcrumbs a:hover { color: var(--dwt-yellow); }

.dwt-contact-crm-section {
    position: relative;
    padding: 72px 0 96px;
    background:
        linear-gradient(rgba(245,180,0,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,180,0,.025) 1px, transparent 1px),
        #f8f9fa;
    background-size: 34px 34px;
}
.dwt-contact-crm-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 260px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245,180,0,.07), transparent);
}
.dwt-contact-grid-crm {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px,.70fr) minmax(0,1.55fr);
    gap: 30px;
    align-items: start;
}
.dwt-contact-crm-section .dwt-card {
    overflow: visible;
    border: 1px solid #e1e4e8;
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 55px rgba(18,20,24,.08);
    transform: none;
}
.dwt-contact-crm-section .dwt-card:hover {
    transform: none;
    border-color: #e1e4e8;
    box-shadow: 0 20px 55px rgba(18,20,24,.08);
}
.dwt-contact-sidebar {
    position: sticky;
    top: 112px;
    display: block !important;
    padding: 34px 32px;
}
.dwt-contact-sidebar > div,
.dwt-contact-sidebar > ul,
.dwt-contact-sidebar > p { width: 100%; }
.dwt-contact-sidebar .dwt-title {
    margin: 14px 0 22px;
    font-size: clamp(2rem,3.1vw,3.2rem);
    line-height: 1.06;
}
.dwt-contact-sidebar > p { margin: 0 0 18px; color: var(--dwt-muted); }
.dwt-contact-sidebar .dwt-content { margin-bottom: 20px; }
.dwt-contact-sidebar .dwt-content > *:last-child { margin-bottom: 0; }

/* Neutralize legacy contact-card child rules inside CRM sidebar. */
.dwt-contact-crm-section .dwt-contact-sidebar > div {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.dwt-crm-process { display: grid !important; gap: 0; margin: 30px 0 26px; }
.dwt-crm-process > div {
    display: grid !important;
    grid-template-columns: 44px minmax(0,1fr);
    gap: 2px 13px;
    padding: 16px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--dwt-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
}
.dwt-crm-process > div:last-child { border-bottom: 0 !important; }
.dwt-crm-process span {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #111;
    background: linear-gradient(135deg,#ffd75b,var(--dwt-yellow-deep));
    border-radius: 12px;
    box-shadow: 0 9px 20px rgba(245,180,0,.22);
    font-size: .78rem;
    font-weight: 950;
}
.dwt-crm-process strong { align-self: end; color: var(--dwt-ink); font-size: 1rem; }
.dwt-crm-process small { align-self: start; color: var(--dwt-muted); line-height: 1.42; }

.dwt-contact-list { display: grid; gap: 0; margin: 22px 0 0; padding: 0; list-style: none; }
.dwt-contact-list li {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    gap: 12px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid var(--dwt-line);
}
.dwt-contact-list svg { width: 22px; height: 22px; color: #9a6b00; margin-top: 2px; }
.dwt-contact-list strong { color: var(--dwt-ink); }
.dwt-contact-list a,
.dwt-contact-list li div { color: var(--dwt-muted); }
.dwt-contact-security {
    margin-top: 20px !important;
    padding: 16px 18px;
    color: #5d6269 !important;
    background: #f5f6f7;
    border: 1px solid #e2e4e7;
    border-radius: 14px;
    font-size: .82rem;
    line-height: 1.55;
}

.dwt-crm-form-card { display: block !important; padding: 38px 38px 42px; }
.dwt-crm-form-head {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}
.dwt-crm-form-head h2 {
    margin: 10px 0 0;
    color: var(--dwt-ink);
    font-size: clamp(2rem,3.5vw,3rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.dwt-crm-secure {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    color: #5e4800;
    background: #fff6d2;
    border: 1px solid #f2d56e;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 850;
}
.dwt-crm-secure::before { content: "🔒"; font-size: .76rem; }

.dwt-crm-form { display: grid; gap: 22px; margin: 0; }
.dwt-crm-fieldset {
    display: grid;
    gap: 18px;
    min-width: 0;
    margin: 0;
    padding: 27px 24px 24px;
    border: 1px solid #dfe2e6;
    border-radius: 20px;
    background: linear-gradient(180deg,#fff,#fcfcfc);
}
.dwt-crm-fieldset legend {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 1px 12px;
    max-width: calc(100% - 18px);
    padding: 0 12px 0 0;
    color: var(--dwt-ink);
    background: #fff;
}
.dwt-crm-fieldset legend > span {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #111;
    background: linear-gradient(135deg,#ffd858,var(--dwt-yellow));
    border-radius: 11px;
    box-shadow: 0 8px 18px rgba(245,180,0,.20);
    font-size: .9rem;
    font-weight: 950;
}
.dwt-crm-fieldset legend strong { align-self: end; line-height: 1.15; }
.dwt-crm-fieldset legend small { align-self: start; color: var(--dwt-muted); font-size: .76rem; line-height: 1.3; }
.dwt-form-row {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
}
.dwt-form-row-three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.dwt-field { display: grid; gap: 7px; min-width: 0; }
.dwt-field-compact { max-width: 50%; }
.dwt-field label,
.dwt-crm-form > label,
.dwt-crm-fieldset > label {
    color: #2b2f35;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.35;
}
.dwt-field input,
.dwt-field select,
.dwt-field textarea,
.dwt-crm-fieldset input,
.dwt-crm-fieldset select,
.dwt-crm-fieldset textarea {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--dwt-ink);
    background: #fff;
    border: 1px solid #d5d9de;
    border-radius: 11px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.dwt-field textarea,
.dwt-crm-fieldset textarea { min-height: 126px; resize: vertical; line-height: 1.5; }
.dwt-field input:focus,
.dwt-field select:focus,
.dwt-field textarea:focus,
.dwt-crm-fieldset input:focus,
.dwt-crm-fieldset select:focus,
.dwt-crm-fieldset textarea:focus {
    border-color: var(--dwt-yellow-deep);
    box-shadow: 0 0 0 4px rgba(245,180,0,.14);
    background: #fffef9;
}
.dwt-field small,
.dwt-crm-fieldset > small { color: var(--dwt-muted); font-size: .76rem; line-height: 1.45; }
.dwt-crm-fieldset input[type="file"] {
    min-height: auto;
    padding: 10px;
    background: #f8f9fa;
    border-style: dashed;
}
.dwt-crm-fieldset input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 13px;
    color: #111;
    background: var(--dwt-yellow);
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}
.dwt-crm-consents {
    display: grid;
    gap: 12px;
    padding: 20px 22px;
    background: #f3f5f7;
    border: 1px solid #e1e4e8;
    border-radius: 15px;
}
.dwt-crm-consents .dwt-consent {
    display: grid;
    grid-template-columns: 22px minmax(0,1fr) !important;
    gap: 11px;
    align-items: start;
    margin: 0;
    color: #444950;
    font-size: .88rem;
    font-weight: 550 !important;
    line-height: 1.5;
}
.dwt-crm-consents input[type="checkbox"] { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--dwt-yellow-deep); }
.dwt-consent-optional { opacity: .9; border-top: 1px solid rgba(18,20,23,.09); padding-top: 13px; margin-top: 2px !important; }
.dwt-crm-consents p { margin: 0; color: var(--dwt-muted); font-size: .76rem; line-height: 1.5; }
.dwt-crm-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 2px;
}
.dwt-crm-submit-row > div { display: grid; gap: 2px; }
.dwt-crm-submit-row strong { color: var(--dwt-ink); }
.dwt-crm-submit-row small { color: var(--dwt-muted); }
.dwt-crm-submit-row .dwt-button { min-width: 280px; }
.dwt-notice-success { color: #386000; background: #f2f9dd; border: 1px solid #d4e9a1; }
.dwt-notice-error { color: #8d2929; background: #fff0f0; border: 1px solid #efc2c2; }

@media (max-width: 1020px) {
    .dwt-contact-grid-crm { grid-template-columns: 1fr; }
    .dwt-contact-sidebar { position: static; }
    .dwt-contact-sidebar .dwt-title { max-width: 700px; }
}
@media (max-width: 760px) {
    body.page-template-page-contact .dwt-page-hero { padding: 64px 0 52px; }
    .dwt-contact-crm-section { padding: 48px 0 70px; }
    .dwt-contact-sidebar,
    .dwt-crm-form-card { padding: 26px 20px; border-radius: 18px !important; }
    .dwt-crm-form-head { display: block !important; }
    .dwt-crm-secure { margin-top: 14px; }
    .dwt-crm-fieldset { padding: 22px 15px 18px; }
    .dwt-form-row,
    .dwt-form-row-three { grid-template-columns: 1fr; }
    .dwt-field-compact { max-width: none; }
    .dwt-crm-submit-row { align-items: stretch; flex-direction: column; }
    .dwt-crm-submit-row .dwt-button { width: 100%; min-width: 0; }
}
@media (max-width: 480px) {
    .dwt-crm-fieldset legend { grid-template-columns: 38px minmax(0,1fr); }
    .dwt-crm-fieldset legend > span { width: 38px; height: 38px; }
    .dwt-crm-form-head h2 { font-size: 2rem; }
}
