/*==============================================================
  ServEaseHub — brand layer on top of the Qlinest template.
  Loaded AFTER style.css. The template defines every colour once
  in :root and consumes it via var(), so re-pointing those tokens
  re-themes the whole site; anything below that is a new component
  the template didn't ship with.
===============================================================*/

:root {
  /* --- Re-point the template's tokens to the ServEaseHub app palette --- */
  --primary-color: #1A2027;   /* headings / body-strong (app: text)        */
  --secondary-color: #5C6670; /* body copy       (app: textSecondary)      */
  --accent-color: #E8A33D;    /* CTAs, badges    (app: accent amber)       */
  --dark-blue: #0F4C5C;       /* hero + newsletter bg (app: primary teal)  */
  --light-blue: #E3EEF1;      /* (app: primarySoft)                        */
  --lightest-blue: #E3EEF1;   /* pills / tinted sections                   */
  --gray-color1: #F5F2EA;     /* accordion / muted card (app: surfaceAlt)  */
  --gray-color2: #CFC8B5;     /* footer secondary text                     */
  --gray-color3: #8B8B85;     /* (app: textTertiary)                       */
  --web-wash: #FAF8F3;        /* page canvas (app: cream background)       */

  /* --- ServEaseHub tokens (mirrors src/theme/colors.js exactly) --- */
  --se-primary: #0F4C5C;
  --se-primary-dark: #093641;
  --se-primary-light: #1B6478;
  --se-primary-soft: #E3EEF1;
  --se-accent: #E8A33D;
  --se-accent-dark: #C68820;  /* amber that PASSES contrast on light bg   */
  --se-accent-soft: #FBEFD6;
  --se-bg: #FAF8F3;
  --se-surface: #FFFFFF;
  --se-surface-alt: #F2EFE7;
  --se-text: #1A2027;
  --se-text-2: #5C6670;
  --se-text-3: #8B8B85;
  --se-border: #E5DFD0;
  --se-border-strong: #CFC8B5;
  --se-divider: #EFEBE0;
  --se-success: #4A7C59;
  --se-success-soft: #E2EEE5;
  --se-error: #B23A3A;
  --se-error-soft: #F4E0E0;
  --se-warning: #D4830F;
  --se-warning-soft: #FBEFD6;
  --se-info: #3F6A8C;
  --se-info-soft: #E1EAF1;
  --se-shadow: rgba(15, 76, 92, 0.08);
  --se-shadow-lg: rgba(15, 76, 92, 0.14);
}

body, html { background-color: var(--web-wash); }

/* Footer/dark blocks: the template ties these to --primary-color (near-black);
   ServEaseHub's dark is deep teal, so point them at the brand colour instead. */
.cs_primary_bg { background-color: var(--se-primary-dark); }

/* Sticky header also inherits --primary-color; keep it on-brand. */
.cs_site_header.cs_style_1.cs_sticky_active { background-color: var(--se-primary-dark); }

/* Our nav carries 8 items where the template's demo had 5, so three of its
   desktop rules need correcting:
     1. it hides the last <li> outright (their 5th was a duplicate CTA),
     2. 56px gaps are too wide to fit,
     3. labels wrap mid-phrase ("How / It / Works") without nowrap.
   The centre column also needs more room than its default 52%. */
@media (min-width: 1200px) {
  .cs_site_header.cs_style_1 .cs_nav_list > li:last-child { display: block; }
  .cs_site_header.cs_style_1 .cs_nav_list > li { margin-left: 26px; }
  .cs_site_header.cs_style_1 .cs_nav_list > li > a { white-space: nowrap; }
  .cs_site_header.cs_style_1 .cs_main_header_center { width: 68%; }
}
/* At the narrow end of "desktop" 8 items genuinely doesn't fit at the
   template's original gaps/type-size — verified against a real overlap with
   the header's CTA button at exactly 1200px, not just a guess. */
@media (min-width: 1200px) and (max-width: 1399px) {
  .cs_site_header.cs_style_1 .cs_nav_list > li { margin-left: 14px; }
  .cs_site_header.cs_style_1 .cs_nav_list > li > a { font-size: 13.5px; }
  .cs_site_header.cs_style_1 .cs_main_header_center { width: 70%; }
  /* Giving the centre column room for 8 items otherwise squeezes this
     button into a two-line wrap — keep it on one line and let it shrink
     its own padding a touch instead. */
  .cs_site_header.cs_style_1 .cs_main_header_right .cs_btn_style_1 {
    white-space: nowrap;
    padding: 9px 18px;
    font-size: 13.5px;
  }
}

/* ---------------------------------------------------------------
   Brand mark
---------------------------------------------------------------- */
.se-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.se-logo svg { width: 38px; height: 38px; flex: none; }
.se-logo-text { font-family: var(--primary-font); font-weight: 700; font-size: 22px; letter-spacing: -0.4px; line-height: 1; }
.se-logo-text .se-hub { color: var(--se-accent); }
.se-logo--light .se-logo-text { color: #fff; }
.se-logo--dark .se-logo-text { color: var(--se-text); }
.cs_footer_logo .se-logo svg { width: 52px; height: 52px; }
.cs_footer_logo .se-logo-text { font-size: 28px; }

/* ---------------------------------------------------------------
   Badges / pills
---------------------------------------------------------------- */
.se-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 32px;
  font-family: var(--primary-font); font-size: 13px; font-weight: 600;
  line-height: 1.2;
}
.se-pill--soon { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.se-pill--offer { background: var(--se-accent); color: var(--se-text); }
.se-pill--live { background: var(--se-error); color: #fff; }
.se-pill--soft { background: var(--se-primary-soft); color: var(--se-primary); }

.se-pill--soon .se-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--se-accent);
  box-shadow: 0 0 0 0 rgba(232,163,61,0.7); animation: sePulse 2s infinite;
}
@keyframes sePulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,163,61,0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(232,163,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,163,61,0); }
}

/* ---------------------------------------------------------------
   Notify-me form (no backend yet — see assets/js/serveasehub.js)
---------------------------------------------------------------- */
.se-notify { max-width: 520px; }
.se-notify-row { display: flex; gap: 10px; flex-wrap: wrap; }
.se-notify input[type="email"] {
  flex: 1 1 240px; min-width: 0;
  height: 56px; padding: 0 20px;
  border-radius: 32px; border: 1px solid var(--se-border);
  background: #fff; color: var(--se-text);
  font-family: var(--secondary-font); font-size: 15px;
}
.se-notify input[type="email"]::placeholder { color: var(--se-text-3); }
.se-notify input[type="email"]:focus { outline: 3px solid rgba(232,163,61,0.45); outline-offset: 2px; border-color: var(--se-accent); }
.se-notify button {
  height: 56px; padding: 0 30px; border: 0; cursor: pointer;
  border-radius: 32px; background: var(--se-accent); color: var(--se-text);
  font-family: var(--primary-font); font-weight: 700; font-size: 15px;
  transition: background .25s ease, transform .25s ease;
}
.se-notify button:hover { background: var(--se-accent-dark); }
.se-notify-note { font-size: 13px; margin: 12px 0 0; font-family: var(--primary-font); }
.se-notify-msg { font-size: 14px; margin: 12px 0 0; font-family: var(--primary-font); font-weight: 600; display: none; }
.se-notify-msg.is-shown { display: block; }
.se-notify-msg.is-ok { color: var(--se-success); }
.se-notify-msg.is-warn { color: var(--se-warning); }
.se-notify-msg.is-err { color: var(--se-error); }
.se-on-dark .se-notify-note { color: rgba(255,255,255,0.72); }
.se-on-dark .se-notify-msg.is-ok { color: #BFE3C9; }
.se-on-dark .se-notify-msg.is-warn { color: var(--se-accent); }

/* ---------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.se-hero { background: var(--se-primary); padding: 170px 16px 100px; }
@media (max-width: 991px) { .se-hero { padding: 130px 16px 72px; } }

/* --- Hero background video ------------------------------------------
   Clips are injected by serveasehub.js — only at >=768px, only after
   window load, and never for reduced-motion or data-saver visitors.
   When they're skipped the flat teal above is what shows, and the hero
   is designed to look finished that way. */
.se-hero-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.se-hero-media video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%) scale(1.04);
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease-in-out;
}
.se-hero-media video.is-active { opacity: 1; }
/* Teal wash keeps the headline readable over any frame of the footage. */
/* Kept deliberately light so the footage actually reads — the heavy end of
   the gradient sits only under the headline column, where contrast matters. */
.se-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    95deg,
    rgba(9,54,65,0.94) 0%,
    rgba(9,54,65,0.88) 44%,   /* copy column ends about here */
    rgba(9,54,65,0.52) 70%,
    rgba(9,54,65,0.26) 100%
  );
}
/* Narrower screens stack the copy over the middle of the frame, so the wash
   needs to stay even rather than fading off to one side. */
@media (max-width: 1199px) {
  .se-hero-media::after { background: rgba(9,54,65,0.86); }
}
.se-hero > .container { position: relative; z-index: 1; }
/* Copy sits in a left column; the space to its right is deliberately left
   empty so the background footage is visible rather than covered up. */
.se-hero-grid { max-width: 660px; }
.se-hero-title { font-size: clamp(34px, 5.4vw, 62px); line-height: 1.08; letter-spacing: -1px; color: #fff; font-weight: 700; margin-bottom: 22px; }
/* Safety net for bright frames in the footage behind the copy — soft enough
   to be invisible against the flat background, enough to hold contrast if a
   clip cuts to something light. */
.se-hero-title, .se-hero-desc, .se-hero-meta-item { text-shadow: 0 1px 20px rgba(9,54,65,0.55); }
.se-hero-title .se-hl { color: var(--se-accent); }
.se-hero-desc { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.65; max-width: 560px; }
.se-hero-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 30px; }
.se-hero-meta-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.9); font-size: 14px; font-family: var(--primary-font); font-weight: 500; }
.se-hero-meta-item i { color: var(--se-accent); }


/* ---------------------------------------------------------------
   Trust strip
---------------------------------------------------------------- */
.se-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 991px) { .se-trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .se-trust { grid-template-columns: 1fr; } }
.se-trust-item {
  background: var(--se-surface); border: 1px solid var(--se-border);
  border-radius: 16px; padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}
.se-trust-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px var(--se-shadow); }
.se-trust-ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: grid; place-items: center; font-size: 18px;
  background: var(--se-primary-soft); color: var(--se-primary);
}
.se-trust-item h3 { font-size: 16px; margin: 0 0 4px; font-weight: 600; color: var(--se-text); font-family: var(--primary-font); }
.se-trust-item p { font-size: 13.5px; margin: 0; color: var(--se-text-2); line-height: 1.55; }

/* ---------------------------------------------------------------
   Category cards
---------------------------------------------------------------- */
.se-cat {
  display: block; height: 100%; text-decoration: none;
  background: var(--se-surface); border: 1px solid var(--se-border);
  border-radius: 18px; padding: 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.se-cat:hover { transform: translateY(-5px); box-shadow: 0 18px 40px var(--se-shadow); border-color: var(--se-accent); }
.se-cat-ico {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  font-size: 28px; background: var(--se-primary-soft); margin-bottom: 20px;
  transition: background .3s ease;
}
.se-cat:hover .se-cat-ico { background: var(--se-accent-soft); }
.se-cat h3 { font-size: 19px; font-weight: 600; color: var(--se-text); margin: 0 0 8px; font-family: var(--primary-font); }
.se-cat p { font-size: 14px; color: var(--se-text-2); margin: 0 0 16px; line-height: 1.6; }
.se-cat-more { font-size: 13px; font-weight: 700; color: var(--se-primary); font-family: var(--primary-font); display: inline-flex; align-items: center; gap: 7px; }
.se-cat:hover .se-cat-more { color: var(--se-accent-dark); }
.se-cat:hover .se-cat-more i { transform: translateX(4px); }
.se-cat-more i { transition: transform .3s ease; }

/* ---------------------------------------------------------------
   Steps
---------------------------------------------------------------- */
.se-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
@media (max-width: 991px) { .se-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .se-steps { grid-template-columns: 1fr; } }
.se-step { position: relative; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: 18px; padding: 30px 24px; }
.se-step-num {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--se-primary); color: #fff; font-weight: 700; font-size: 17px;
  font-family: var(--primary-font); margin-bottom: 18px;
}
.se-step h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; color: var(--se-text); font-family: var(--primary-font); }
.se-step p { font-size: 14px; color: var(--se-text-2); margin: 0; line-height: 1.6; }

/* ---------------------------------------------------------------
   Feature list (safety / vendor benefits)
---------------------------------------------------------------- */
.se-feat { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.se-feat-ico { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; font-size: 18px; background: var(--se-accent-soft); color: var(--se-accent-dark); }
.se-feat h3 { font-size: 17px; font-weight: 600; margin: 0 0 6px; color: var(--se-text); font-family: var(--primary-font); }
.se-feat p { font-size: 14.5px; color: var(--se-text-2); margin: 0; line-height: 1.62; }
.se-on-dark .se-feat h3 { color: #fff; }
.se-on-dark .se-feat p { color: rgba(255,255,255,0.75); }
.se-on-dark .se-feat-ico { background: rgba(232,163,61,0.16); color: var(--se-accent); }

/* ---------------------------------------------------------------
   Emergency band
---------------------------------------------------------------- */
.se-emergency { background: var(--se-primary-dark); border-radius: 20px; overflow: hidden; position: relative; }
.se-emergency::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(178,58,58,0.30), transparent 55%);
  pointer-events: none;
}
.se-emergency > * { position: relative; z-index: 1; }
.se-eta {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 20px 22px; display: flex; align-items: center; gap: 16px;
}
.se-eta-num { font-family: var(--primary-font); font-weight: 700; font-size: 30px; color: var(--se-accent); line-height: 1; }
.se-eta-label { font-size: 13px; color: rgba(255,255,255,0.7); font-family: var(--primary-font); }

/* ---------------------------------------------------------------
   Rewards: points + tiers
---------------------------------------------------------------- */
.se-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 767px) { .se-points { grid-template-columns: 1fr 1fr; } }
@media (max-width: 429px) { .se-points { grid-template-columns: 1fr; } }
.se-point {
  background: var(--se-surface); border: 1px solid var(--se-border); border-radius: 14px;
  padding: 18px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.se-point span { font-size: 14px; color: var(--se-text-2); font-family: var(--primary-font); line-height: 1.4; }
.se-point b { font-family: var(--primary-font); font-weight: 700; font-size: 16px; color: var(--se-success); white-space: nowrap; }

.se-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 991px) { .se-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .se-tiers { grid-template-columns: 1fr; } }
.se-tier {
  background: var(--se-surface); border: 1px solid var(--se-border); border-radius: 18px;
  padding: 28px 22px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.se-tier:hover { transform: translateY(-5px); box-shadow: 0 16px 38px var(--se-shadow); }
.se-tier--top { border-color: var(--se-accent); background: var(--se-accent-soft); }
.se-tier-ico { font-size: 30px; line-height: 1; margin-bottom: 12px; }
.se-tier h3 { font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--se-text); font-family: var(--primary-font); }
.se-tier-pts { font-size: 13px; color: var(--se-text-3); font-family: var(--primary-font); margin: 0 0 14px; }
.se-tier-off { font-family: var(--primary-font); font-weight: 700; font-size: 30px; color: var(--se-primary); line-height: 1; }
.se-tier-off small { display: block; font-size: 12px; font-weight: 500; color: var(--se-text-3); margin-top: 5px; }

/* ---------------------------------------------------------------
   Payment / escrow cards
---------------------------------------------------------------- */
.se-pay { background: var(--se-surface); border: 1px solid var(--se-border); border-radius: 18px; padding: 28px 24px; height: 100%; }
.se-pay-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; background: var(--se-primary-soft); color: var(--se-primary); margin-bottom: 18px; }
.se-pay h3 { font-size: 18px; font-weight: 600; margin: 0 0 10px; color: var(--se-text); font-family: var(--primary-font); }
.se-pay p { font-size: 14.5px; color: var(--se-text-2); margin: 0; line-height: 1.62; }

/* ---------------------------------------------------------------
   Layout fixes
---------------------------------------------------------------- */
/* The template restores 18px container padding below 992px, but every
   container in this build carries Bootstrap's .p-0 (padding:0 !important),
   which wins — leaving Bootstrap rows (-12px side margins) wider than the
   viewport and clipped by the template's `overflow-x: clip` on <body>.
   Restoring the padding at the same breakpoint fixes the overflow. */
@media (max-width: 991px) {
  .cs_custom_content_wrapper .container.p-0 {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* Dark/tinted content panels (emergency band, provider card, final CTA).
   Was an inline padding; as a class it can shrink on small screens instead
   of squeezing the text column. */
.se-panel { padding: 56px 40px; }
.se-panel--lg { padding: 64px 40px; }
@media (max-width: 767px) { .se-panel, .se-panel--lg { padding: 40px 22px; } }
@media (max-width: 479px) { .se-panel, .se-panel--lg { padding: 32px 18px; } }

/* ---------------------------------------------------------------
   Section helpers
---------------------------------------------------------------- */
.se-sec-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.5px; color: var(--se-text); line-height: 1.2; }
.se-on-dark .se-sec-title, .se-on-dark h2, .se-on-dark h3 { color: #fff; }
.se-on-dark p { color: rgba(255,255,255,0.76); }
.se-lead { font-size: 16.5px; color: var(--se-text-2); line-height: 1.68; }
.se-note {
  background: var(--se-info-soft); border-left: 3px solid var(--se-info);
  border-radius: 10px; padding: 16px 18px; font-size: 14px; color: var(--se-text-2);
  font-family: var(--primary-font); line-height: 1.6;
}

/* Page banner for inner pages */
.se-page-head { background: var(--se-primary); border-radius: 20px; padding: 74px 0; text-align: center; position: relative; overflow: hidden; }
.se-page-head h1 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); font-weight: 700; letter-spacing: -0.6px; margin: 0 0 14px; }
.se-page-head p { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; font-size: 16px; }
.se-crumb { color: rgba(255,255,255,0.6); font-size: 13.5px; font-family: var(--primary-font); margin-top: 16px; }
.se-crumb a { color: var(--se-accent); text-decoration: none; }
.se-crumb a:hover { text-decoration: underline; }

/* Legal / long-form copy */
.se-doc { background: var(--se-surface); border: 1px solid var(--se-border); border-radius: 18px; padding: 40px; }
@media (max-width: 575px) { .se-doc { padding: 26px 20px; } }
.se-doc h2 { font-size: 21px; font-weight: 700; color: var(--se-text); margin: 34px 0 12px; font-family: var(--primary-font); }
.se-doc h2:first-child { margin-top: 0; }
.se-doc p, .se-doc li { font-size: 15px; color: var(--se-text-2); line-height: 1.72; }
.se-doc ul { padding-left: 20px; margin-bottom: 16px; }
.se-doc li { margin-bottom: 7px; }

/* ---------------------------------------------------------------
   Footer tweaks
---------------------------------------------------------------- */
.cs_footer_style_1 .cs_footer_menu a:hover { color: var(--se-accent); }
.se-footer-tagline { color: rgba(255,255,255,0.62); font-size: 14px; max-width: 440px; margin: 14px auto 0; text-align: center; font-family: var(--primary-font); line-height: 1.6; }

/* ---------------------------------------------------------------
   Motion polish
   Everything here is transform/opacity only, so it stays on the GPU
   and off the main thread — and all of it is switched off by the
   reduced-motion block at the end of this file.
---------------------------------------------------------------- */

/* Buttons: lift + shadow instead of the template's flat hover. */
.cs_btn_style_1 {
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease, background-color .28s ease;
}
.cs_btn_style_1:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15,76,92,0.22); }
.cs_btn_style_1:active { transform: translateY(-1px); }
.cs_accent_bg.cs_btn_style_1:hover { box-shadow: 0 12px 26px rgba(232,163,61,0.38); }


/* Category / trust / tier cards: smoother easing + icon response. */
.se-cat, .se-trust-item, .se-tier, .se-pay, .se-step {
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.se-pay:hover, .se-step:hover { transform: translateY(-4px); box-shadow: 0 16px 36px var(--se-shadow); }
.se-cat-ico, .se-trust-ico, .se-feat-ico, .se-pay-ico {
  transition: transform .35s cubic-bezier(.2,.7,.3,1), background-color .35s ease;
}
.se-cat:hover .se-cat-ico { transform: translateY(-3px) scale(1.08) rotate(-4deg); }
.se-trust-item:hover .se-trust-ico, .se-pay:hover .se-pay-ico { transform: scale(1.08); }

/* Step numbers fill in on hover. */
.se-step-num { transition: transform .35s cubic-bezier(.2,.7,.3,1), background-color .35s ease; }
.se-step:hover .se-step-num { transform: scale(1.1); background: var(--se-accent); color: var(--se-text); }

/* Tier cards rise a little more, the highlighted one most of all. */
.se-tier:hover { transform: translateY(-7px); }
.se-tier--top:hover { transform: translateY(-10px); box-shadow: 0 22px 44px rgba(232,163,61,0.28); }

/* Nav links get an underline that grows from the left. */
@media (min-width: 1200px) {
  .cs_site_header.cs_style_1 .cs_nav_list > li > a { position: relative; }
  .cs_site_header.cs_style_1 .cs_nav_list > li > a::after {
    content: ""; position: absolute; left: 0; bottom: 28px;
    height: 2px; width: 100%; background: var(--se-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.2,.7,.3,1);
  }
  .cs_site_header.cs_style_1 .cs_nav_list > li > a:hover::after,
  .cs_site_header.cs_style_1 .cs_nav_list > li > a[aria-current="page"]::after { transform: scaleX(1); }
}

/* Footer links slide slightly on hover. */
.cs_footer_menu a { transition: color .25s ease, transform .25s ease; display: inline-block; }
.cs_footer_menu a:hover { transform: translateY(-2px); }

/* Accordion rows respond to hover/open. */
.cs_accordian { transition: background-color .3s ease, box-shadow .3s ease; }
.cs_accordian:hover { box-shadow: 0 10px 26px var(--se-shadow); }
.cs_accordian.active { background: var(--se-primary-soft) !important; }

/* ---------------------------------------------------------------
   Accessibility & motion
---------------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible,
.cs_accordian_head:focus-visible {
  outline: 3px solid var(--se-accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.se-skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--se-accent); color: var(--se-text); padding: 12px 20px;
  border-radius: 0 0 10px 0; font-family: var(--primary-font); font-weight: 700; font-size: 14px;
}
.se-skip:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
