@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary:       #DF2B1F;
    --primary-light: #FA9727;
    --accent:        #128CD4;
    --accent-light:  #A3B1B8;
    --bg-dark:       #0A0A0B;
    --text-dark:     #1A1417;
    --text-medium:   #E1E0DE;
    --white:         #FFFFFF;
    --off-white:     #F7F5F3;
    --font-heading:  'Montserrat', sans-serif;
    --font-body:     'Open Sans', sans-serif;
}

body, .et_pb_section, p, li, .et_pb_text_inner { font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.wh-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin: 0 0 14px;
}
.wh-hero-h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.4rem, 4.4vw + 1rem, 4.6rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0 0 22px;
}
.wh-hero-h1 .wh-accent { color: var(--primary-light); }
.wh-word { display: inline-block; opacity: 0; transform: translateY(100%);
    animation: wh-word-up .7s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes wh-word-up { to { opacity: 1; transform: translateY(0); } }

.wh-section-h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.9rem, 2.6vw + 1rem, 3rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.wh-section-h2 .wh-accent { color: var(--primary); }
.wh-body-lg { font-size: 1.15rem; line-height: 1.7; max-width: 62ch; }
.et_pb_text_inner p, .et_pb_blurb_content p { line-height: 1.72; }

/* ============================================================
   BUTTONS
   ============================================================ */
.wh-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700; font-size: 0.98rem; letter-spacing: 0.03em;
    padding: 16px 30px; border-radius: 6px; text-decoration: none;
    transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1), background .25s ease;
    cursor: pointer;
}
.wh-btn-primary {
    background: var(--primary); color: var(--white);
    box-shadow: 0 2px 8px rgba(223,43,31,.18), 0 14px 28px -10px rgba(223,43,31,.45);
}
.wh-btn-primary:hover { transform: translateY(-3px); background: #c22318;
    box-shadow: 0 4px 12px rgba(223,43,31,.24), 0 20px 36px -10px rgba(223,43,31,.55); color: var(--white); }

.wh-btn-outline {
    position: relative; overflow: hidden; z-index: 1;
    color: var(--white); border: 1.5px solid rgba(255,255,255,.55);
    transition: color .35s ease, border-color .35s ease;
}
.wh-btn-outline::before {
    content: ''; position: absolute; inset: 0; background: var(--white);
    transform: scaleX(0); transform-origin: left; z-index: -1;
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.wh-btn-outline:hover { color: var(--text-dark); border-color: var(--white); }
.wh-btn-outline:hover::before { transform: scaleX(1); }

.wh-hero-btns { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.wh-hero-btns.wh-center { justify-content: center; }

/* Animated underline links */
.wh-link-underline { position: relative; text-decoration: none; color: inherit; }
.wh-link-underline::after {
    content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1.5px;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.wh-link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   HERO — aurora gradient mesh background
   ============================================================ */
.wh-hero-bg {
    position: relative;
    display: flex; align-items: center;
    padding: 160px 60px 100px;
    background:
        radial-gradient(ellipse 60% 55% at 18% 15%, rgba(223,43,31,.38) 0%, transparent 62%),
        radial-gradient(ellipse 55% 45% at 85% 75%, rgba(18,140,212,.30) 0%, transparent 62%),
        radial-gradient(ellipse 70% 60% at 50% 105%, rgba(250,151,39,.22) 0%, transparent 65%),
        var(--bg-dark);
    background-size: 200% 200%;
    animation: wh-aurora 20s ease-in-out infinite;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .wh-hero-bg { padding: 130px 24px 70px; }
}
@keyframes wh-aurora {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.wh-hero-photo {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: .30; mix-blend-mode: luminosity;
}
/* Flat black — no gradient, no animation, no photo — ready for a video
   background to be dropped in (Divi Visual Builder video-background setting,
   or a <video>/wh-hero-video element once a file is supplied). */
.wh-hero-bg-video {
    background: var(--bg-dark) !important;
    animation: none !important;
}
.wh-hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.wh-hero-fade { position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.88) 100%); }

.wh-badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; align-items: center; }
.wh-badge {
    display: flex; align-items: center; gap: 9px;
    color: var(--white); font-size: 0.86rem; font-weight: 700;
    background: rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 10px 16px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}
.wh-badge svg { flex-shrink: 0; color: var(--primary-light); }
@media (max-width: 767px) {
    .wh-badge-row { gap: 10px; }
    .wh-badge { font-size: .78rem; padding: 9px 13px; white-space: normal; }
}

/* ============================================================
   CARDS — blurb / trust / service
   ============================================================ */
.et_pb_blurb, .wh-trust-card, .wh-service-card {
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1);
}
.et_pb_blurb:hover, .wh-trust-card:hover, .wh-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 24px 44px -14px rgba(0,0,0,.28) !important;
}

.wh-stat { text-align: center; }
.wh-stat-num {
    display: block; font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(2.2rem, 3.2vw, 3.6rem); color: var(--primary-light); line-height: 1;
}
.wh-stat-label { display: block; margin-top: 10px; font-size: 0.92rem; color: var(--text-medium);
    text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ============================================================
   ICON CARD GRID — replaces blurb() icon grids. Real inline-SVG
   icons, CSS Grid so every card is the same height AND width
   regardless of copy length (no float/flex drift).
   ============================================================ */
.wh-card-grid { display: grid; gap: 28px; align-items: stretch; }
.wh-card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wh-card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.wh-card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .wh-card-grid-3, .wh-card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .wh-card-grid-2, .wh-card-grid-3, .wh-card-grid-4 { grid-template-columns: 1fr; }
}

.wh-icon-card {
    background: var(--bg-dark);
    border-radius: 14px;
    padding: 36px 30px;
    height: 100%;
    display: flex; flex-direction: column;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 2px 8px rgba(0,0,0,.1), 0 20px 40px -18px rgba(0,0,0,.5);
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1), border-color .35s ease;
    position: relative;
    overflow: hidden;
}
.wh-icon-card:hover {
    transform: translateY(-7px);
    border-color: rgba(250,151,39,.35);
    box-shadow: 0 2px 8px rgba(0,0,0,.14), 0 28px 52px -18px rgba(0,0,0,.6);
}
.wh-icon-card-icon {
    width: 54px; height: 54px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; border-radius: 12px;
    background:
        radial-gradient(circle at 30% 30%, rgba(223,43,31,.35), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(18,140,212,.30), transparent 60%),
        rgba(255,255,255,.06);
    background-size: 220% 220%;
    animation: wh-aurora 9s ease-in-out infinite;
}
.wh-icon-card-title {
    font-family: var(--font-heading); font-weight: 700; font-size: 1.14rem;
    color: var(--white); margin: 0 0 10px; line-height: 1.3;
}
.wh-icon-card-title a { color: inherit; text-decoration: none; }
.wh-icon-card-title a:hover { color: var(--primary-light); }
.wh-icon-card-desc { color: var(--text-medium); font-size: .93rem; line-height: 1.7; margin: 0; flex: 1 1 auto; }

/* ============================================================
   TESTIMONIAL GRID — real customer reviews
   ============================================================ */
.wh-tm-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    box-sizing: border-box;
    display: flex; flex-direction: column;
    transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s ease;
}
.wh-tm-card:hover { transform: translateY(-6px); border-color: rgba(250,151,39,.4); }
.wh-tm-quote { color: var(--text-medium); font-size: 1rem; line-height: 1.75; flex: 1 1 auto; margin: 0 0 20px; }
.wh-tm-quote::before { content: '\201C'; }
.wh-tm-quote::after { content: '\201D'; }
.wh-tm-author { font-family: var(--font-heading); font-weight: 700; color: var(--white); margin: 0; }
.wh-tm-loc { color: var(--accent-light); font-size: .85rem; margin: 4px 0 0; }

/* ============================================================
   STATS GRID — responsive (fixes cramped mobile layout)
   ============================================================ */
.wh-stats-grid { display: grid; gap: 32px; text-align: center; }
.wh-stats-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wh-stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
.wh-stats-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 600px) {
    .wh-stats-grid-3, .wh-stats-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 420px) {
    .wh-stats-grid-2, .wh-stats-grid-3, .wh-stats-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS STEPS GRID — responsive (fixes cramped mobile layout)
   ============================================================ */
.wh-steps-grid { display: grid; gap: 36px; }
.wh-steps-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wh-steps-grid-3 { grid-template-columns: repeat(3, 1fr); }
.wh-steps-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .wh-steps-grid-3, .wh-steps-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .wh-steps-grid-2, .wh-steps-grid-3, .wh-steps-grid-4 { grid-template-columns: 1fr; }
}
.wh-step-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; margin: 0 0 10px; color: var(--text-dark); }
.wh-step-body { color: #555; line-height: 1.65; font-size: .95rem; margin: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.wh-reveal { opacity: 0; transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.wh-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MARQUEE — trust/certification strip
   ============================================================ */
.wh-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
    mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.wh-marquee-track { display: flex; gap: 72px; width: max-content; align-items: center;
    animation: wh-marquee 26s linear infinite; }
.wh-marquee:hover .wh-marquee-track { animation-play-state: paused; }
@keyframes wh-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wh-marquee-item { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem;
    color: var(--text-medium); white-space: nowrap; opacity: .85; display: flex; align-items: center; gap: 10px; }

/* ============================================================
   TESTIMONIAL SPOTLIGHT
   ============================================================ */
.wh-testimonial { max-width: 780px; margin: 0 auto; text-align: center; }
.wh-testimonial-quote { font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.3rem,2vw + .8rem,1.9rem);
    line-height: 1.5; color: var(--white); margin-bottom: 28px; }
.wh-testimonial-quote::before { content: '\201C'; }
.wh-testimonial-quote::after { content: '\201D'; }
.wh-stars { color: var(--primary-light); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 18px; }
.wh-testimonial-author { font-weight: 700; color: var(--text-medium); }
.wh-testimonial-loc { color: var(--accent-light); font-size: .9rem; }

/* ============================================================
   PILLS — nearby service areas
   ============================================================ */
.wh-pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.wh-pill { display: inline-block; padding: 10px 20px; border-radius: 999px; border: 1.5px solid rgba(0,0,0,.12);
    font-weight: 600; font-size: .92rem; color: var(--text-dark); text-decoration: none;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease; }
.wh-pill:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   STICKY PROCESS STEPS (numbered)
   ============================================================ */
.wh-step-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
    border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-heading); font-weight: 800;
    font-size: 1.1rem; margin-bottom: 16px; }

/* ============================================================
   BEFORE/AFTER-STYLE COMPARISON (used on maintenance plan tiers etc if needed)
   ============================================================ */
.wh-ba-slider { position: relative; overflow: hidden; border-radius: 14px; --pos: 50%; }
.wh-ba-before-wrap { position: absolute; inset: 0; width: var(--pos); overflow: hidden; }
.wh-ba-before { width: 100%; max-width: none; }
.wh-ba-range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; margin:0; }

/* ============================================================
   SECTION BACKGROUND GRADIENT LAYERS (rhythm on tinted/dark sections)
   ============================================================ */
/* Subtle animated red/blue "fire & ice" glow, echoing the logo, on every
   dark section site-wide — large enough to read clearly, slow/low-opacity
   enough to stay in the background rather than compete with content. */
.et_pb_section[style*="background-color: #0A0A0B"],
.et_pb_section[style*="background-color:#0A0A0B"] {
    background-image:
        radial-gradient(ellipse 75% 50% at 15% -8%, rgba(223,43,31,.20) 0%, transparent 60%),
        radial-gradient(ellipse 65% 55% at 90% 105%, rgba(18,140,212,.20) 0%, transparent 60%)
        !important;
    background-color: var(--bg-dark) !important;
    background-size: 220% 220% !important;
    animation: wh-aurora 24s ease-in-out infinite;
}
.et_pb_section[style*="background-color: #DF2B1F"],
.et_pb_section[style*="background-color:#DF2B1F"] {
    background-image:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(250,151,39,.26) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 100% 100%, rgba(0,0,0,.22) 0%, transparent 60%)
        !important;
    background-color: var(--primary) !important;
    background-size: 200% 200% !important;
    animation: wh-aurora 18s ease-in-out infinite;
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.wh-mobile-cta { display: none; }
@media (max-width: 980px) {
    .wh-mobile-cta {
        display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
        background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 -6px 24px rgba(0,0,0,.35);
    }
    .wh-mobile-cta a { flex: 1; text-align: center; padding: 16px 10px; font-family: var(--font-heading);
        font-weight: 700; font-size: .92rem; text-decoration: none; display: flex; align-items: center;
        justify-content: center; gap: 8px; }
    .wh-mobile-cta a:first-child { color: var(--text-medium); }
    .wh-mcta-btn { background: var(--primary); color: #fff; }
    body { padding-bottom: 58px; }
}

/* ============================================================
   NINJA FORMS RESTYLE
   ============================================================ */
.nf-form-cont { border-radius: 16px; padding: 40px 36px; position: relative; overflow: hidden;
    background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 24px 48px -16px rgba(0,0,0,.18); }
.nf-form-cont::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent), var(--primary));
    background-size: 300% 100%; animation: wh-shimmer 5s linear infinite; }
@keyframes wh-shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.nf-field-label label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-dark); }
.nf-field-element input, .nf-field-element textarea, .nf-field-element select {
    border: 1.5px solid #DDE2E6 !important; border-radius: 8px !important; padding: 14px 16px !important;
    transition: border-color .2s ease, box-shadow .2s ease; font-family: var(--font-body); }
.nf-field-element input:focus, .nf-field-element textarea:focus {
    border-color: var(--accent) !important; box-shadow: 0 0 0 4px rgba(18,140,212,.14); outline: none; }
.nf-field-element input[type="submit"] {
    width: 100%; background: var(--primary) !important; color: #fff !important; border: none !important;
    padding: 16px !important; font-family: var(--font-heading); font-weight: 700 !important; letter-spacing: .03em;
    border-radius: 8px !important; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.nf-field-element input[type="submit"]:hover { transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(223,43,31,.5); }
.nf-response-msg { background: var(--bg-dark); color: var(--white); border-left: 4px solid var(--primary-light);
    padding: 16px 20px; border-radius: 8px; }
.nf-error .nf-field-element input { border-color: #E53E3E !important; box-shadow: 0 0 0 3px rgba(229,62,62,.12); }
select.ninja-forms-field {
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%231A1417' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
}

/* ============================================================
   HEADER (Divi default header + primary-menu)
   ============================================================ */
#main-header {
    background:
        radial-gradient(ellipse 60% 220% at 8% 50%, rgba(223,43,31,.16) 0%, transparent 70%),
        radial-gradient(ellipse 60% 220% at 92% 50%, rgba(18,140,212,.16) 0%, transparent 70%),
        var(--bg-dark) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
#logo { max-height: 58px; width: auto; }
.et_pb_menu__menu nav > ul > li > a {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: .96rem;
    letter-spacing: .01em;
    color: var(--text-medium) !important;
    transition: color .25s ease;
}
.et_pb_menu__menu nav > ul > li > a:hover { color: var(--primary-light) !important; }
.et_pb_menu__menu nav > ul > li > ul.sub-menu {
    background: #131315 !important;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2), 0 24px 44px -14px rgba(0,0,0,.5);
    overflow: hidden;
}
.et_pb_menu__menu nav > ul > li > ul.sub-menu a {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    color: var(--text-medium) !important;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.et_pb_menu__menu nav > ul > li > ul.sub-menu a:hover {
    background: rgba(255,255,255,.06) !important;
    color: var(--primary-light) !important;
    padding-left: 26px !important;
}
.et_pb_menu__menu a[href^="tel:"] {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 11px 22px !important;
    border-radius: 6px !important;
    transition: transform .25s ease, background .25s ease;
    display: inline-block;
}
.et_pb_menu__menu a[href^="tel:"]:hover { background: #c22318 !important; transform: translateY(-2px); }
/* Mobile hamburger icon + slide-out menu panel */
.mobile_menu_bar:before, #et-top-navigation .mobile_menu_bar:before { color: var(--white) !important; }
#et_mobile_nav_menu, .et_mobile_menu {
    background: var(--bg-dark) !important;
    border-top: 1px solid rgba(255,255,255,.08);
}
.et_mobile_menu li a { color: var(--text-medium) !important; }
.et_mobile_menu li a:hover { color: var(--primary-light) !important; }

/* ============================================================
   FOOTER (Divi default footer widget areas + bottom bar)
   ============================================================ */
#main-footer, .et_pb_footer {
    background-color: var(--bg-dark) !important;
    background-image:
        radial-gradient(ellipse 70% 50% at 15% 0%, rgba(18,140,212,.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 100%, rgba(223,43,31,.12) 0%, transparent 60%) !important;
    background-size: 220% 220% !important;
    animation: wh-aurora 26s ease-in-out infinite;
}
.et_pb_footer .fwidget img { margin-bottom: 16px; max-width: 150px; height: auto; }
.et_pb_footer .fwidget h4, .et_pb_footer .fwidget .widgettitle, .et_pb_footer .fwidget .widget-title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .88rem;
    color: var(--primary-light) !important;
    margin-bottom: 18px !important;
}
.et_pb_footer .fwidget, .et_pb_footer .fwidget p, .et_pb_footer .fwidget li {
    color: var(--text-medium) !important;
    line-height: 1.9;
}
.et_pb_footer .fwidget a {
    color: var(--text-medium) !important;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}
.et_pb_footer .fwidget a:hover { color: var(--primary-light) !important; padding-left: 4px; }
.et_pb_footer .fwidget ul { list-style: none; padding: 0; margin: 0; }
.et_pb_footer .fwidget li { margin-bottom: 9px; }
#footer-bottom {
    background: #000 !important;
    border-top: 1px solid rgba(255,255,255,.06);
}
#footer-info, #footer-bottom .container p {
    color: var(--accent-light) !important;
    font-size: .82rem !important;
}
#footer-bottom a { color: var(--accent-light) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
    .wh-hero-btns { flex-direction: column; align-items: stretch; }
    .wh-badge-row { gap: 16px; }
    .nf-form-cont { padding: 28px 22px; }
}

/* ============================================================
   ACCESSIBILITY — reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important;
        transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .wh-word { opacity: 1 !important; transform: none !important; }
    .wh-reveal { opacity: 1 !important; transform: none !important; }
}
