/* =======================================================================
   Swiss theme (International Typographic Style)
   Loaded AFTER cms.css. cms.css drives its whole design system off CSS
   custom properties (--primary, --secondary, --text-primary, --gradient-*),
   so re-declaring them here re-skins every shared page (contact us, blog,
   custom pages) automatically. Everything under the "sw-*" namespace below
   is bespoke markup used by the Swiss shell/home page.
   Design language: flat, grid-based, red/black/white, no shadows, no
   rounded corners, bold condensed sans-serif type, generous rule lines.
   ======================================================================= */

:root {
    --primary: #E30613;
    --secondary: #0A0A0A;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: #E30613;
    --gradient-secondary: #0A0A0A;

    --text-primary: #0A0A0A;
    --elements-roundness: 0px;

    --sw-red: #E30613;
    --sw-black: #0A0A0A;
    --sw-white: #FFFFFF;
    --sw-gray-light: #F2F2F2;
    --sw-gray-mid: #D9D9D9;
    --sw-gray-text: #55575A;
    --sw-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body.sw-theme {
    font-family: var(--sw-font);
    color: var(--sw-black);
    background: var(--sw-white);
}

body.sw-theme h1, body.sw-theme h2, body.sw-theme h3,
body.sw-theme h4, body.sw-theme h5, body.sw-theme h6 {
    font-family: var(--sw-font);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

body.sw-theme .btn { border-radius: 0; box-shadow: none; }
body.sw-theme .btn:hover, body.sw-theme .btn:focus { transform: none; }

/* ---------- Buttons ---------- */
.sw-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sw-font);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.85rem 1.75rem;
    border-radius: 0;
    border: 2px solid var(--sw-black);
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sw-btn--primary { background: var(--sw-red); color: #fff; border-color: var(--sw-red); }
.sw-btn--primary:hover { background: var(--sw-black); color: #fff; border-color: var(--sw-black); }
.sw-btn--outline { background: transparent; color: var(--sw-black); }
.sw-btn--outline:hover { background: var(--sw-black); color: #fff; }
.sw-btn--light { background: #fff; color: var(--sw-black); border-color: #fff; }
.sw-btn--light:hover { background: var(--sw-black); color: #fff; border-color: var(--sw-black); }
.sw-btn--lg { padding: 1rem 2.2rem; font-size: 0.9rem; }

/* ---------- Navbar ---------- */
.sw-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 3px solid var(--sw-black);
    padding: 0;
    transition: box-shadow .15s ease;
}
.sw-nav.is-scrolled { box-shadow: 0 6px 0 0 rgba(0,0,0,.05); }
.sw-nav__container { padding: 0.85rem 2.5rem; }
.sw-nav__brand img { height: 36px; width: auto; object-fit: contain; }
.sw-nav__toggler { border: none; border-radius: 0; padding: 4px; display: flex; flex-direction: column; gap: 5px; }
.sw-nav__toggler-bar { display: block; width: 22px; height: 2px; background: var(--sw-black); }
.sw-nav__links .nav-link {
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--sw-black);
    padding: 0.5rem 1rem;
}
.sw-nav__links .nav-link span { color: var(--sw-red); margin-right: 0.3rem; }
.sw-nav__links .nav-link:hover { color: var(--sw-red); }
.sw-nav__dropdown { border-radius: 0; border: 2px solid var(--sw-black); box-shadow: none; padding: 0; }
.sw-nav__dropdown .dropdown-item { font-size: 0.85rem; padding: 0.6rem 1rem; }
.sw-nav__link { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; color: var(--sw-black); text-decoration: none; }
.sw-nav__link:hover { color: var(--sw-red); }

/* ---------- Hero ---------- */
.sw-hero { background: #fff; overflow: hidden; }
.sw-hero__wrap { padding: 0; }
.sw-hero__col { padding: 5.5rem 4rem 4rem; }
.sw-eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sw-red);
    margin-bottom: 1.25rem;
}
.sw-eyebrow--dark { color: var(--sw-black); }
.sw-hero__title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
    color: var(--sw-black);
    margin-bottom: 1.5rem;
}
.sw-hero__rule { width: 80px; height: 6px; background: var(--sw-red); margin-bottom: 1.5rem; }
.sw-hero__desc { color: var(--sw-gray-text); font-size: 1.05rem; margin-bottom: 2.25rem; text-transform: none; }
.sw-hero__desc p:last-child { margin-bottom: 0; }
.sw-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.sw-hero__visual-col { position: relative; background: var(--sw-gray-light); min-height: 420px; }
.sw-hero__visual { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; padding: 3rem; }
.sw-hero__block {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -1.5rem;
    bottom: -1.5rem;
    background: var(--sw-red);
    z-index: 0;
}
.sw-hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    border: 3px solid var(--sw-black);
    display: block;
}
@media (max-width: 991px) {
    .sw-hero__col { padding: 3.5rem 1.5rem 3rem; }
    .sw-hero__visual-col { min-height: 320px; }
}

/* ---------- Sections ---------- */
.sw-section { padding: 5rem 2.5rem; }
.sw-section--tinted { background: var(--sw-gray-light); }
.sw-section__head-row { margin-bottom: 3rem; }
.sw-section__title { color: var(--sw-black); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0; }
.sw-section__title--light { color: #fff; }
.sw-section__desc { color: var(--sw-gray-text); text-transform: none; font-size: 1rem; }
.sw-section__desc--light { color: rgba(255,255,255,.72); }
@media (max-width: 767px) {
    .sw-section { padding: 3.5rem 1.25rem; }
}

/* ---------- Numbered feature list ---------- */
.sw-numbered-list {
    border-top: 2px solid var(--sw-black);
}
.sw-numbered-list__item {
    display: grid;
    grid-template-columns: 70px 60px 1fr;
    align-items: start;
    gap: 0 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 2px solid var(--sw-black);
}
.sw-numbered-list__index { font-size: 1.4rem; font-weight: 800; color: var(--sw-red); }
.sw-numbered-list__icon { font-size: 1.4rem; color: var(--sw-black); }
.sw-numbered-list__title { grid-column: 3; font-size: 1.1rem; margin: 0 0 0.4rem; text-transform: uppercase; }
.sw-numbered-list__desc { grid-column: 3; color: var(--sw-gray-text); margin: 0; text-transform: none; font-size: 0.95rem; }
@media (max-width: 575px) {
    .sw-numbered-list__item { grid-template-columns: 40px 40px 1fr; }
}

/* ---------- Industry grid ---------- */
.sw-industry-grid { border-top: 2px solid var(--sw-black); border-left: 2px solid var(--sw-black); }
.sw-industry-card {
    border-right: 2px solid var(--sw-black);
    border-bottom: 2px solid var(--sw-black);
    padding: 2.25rem 1.75rem;
    background: #fff;
}
.sw-industry-card__icon { display: block; font-size: 1.6rem; color: var(--sw-red); margin-bottom: 1rem; }
.sw-industry-card__title { font-size: 0.98rem; color: var(--sw-black); margin-bottom: 0.6rem; }
.sw-industry-card__desc { color: var(--sw-gray-text); font-size: 0.88rem; margin: 0; text-transform: none; }

/* ---------- Stats ---------- */
.sw-stats { background: var(--sw-black); }
.sw-stats__grid { border-top: 1px solid rgba(255,255,255,.2); }
.sw-stat { text-align: center; padding: 2rem 1rem; border-right: 1px solid rgba(255,255,255,.2); }
.sw-stat:last-child { border-right: none; }
.sw-stat__number { display: block; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--sw-red); }
.sw-stat__label { color: rgba(255,255,255,.7); margin: 0.4rem 0 0; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Testimonials ---------- */
.sw-testimonial-grid { border-top: 2px solid var(--sw-black); border-left: 2px solid var(--sw-black); }
.sw-testimonial-card {
    border-right: 2px solid var(--sw-black);
    border-bottom: 2px solid var(--sw-black);
    padding: 2.25rem;
    background: #fff;
}
.sw-testimonial-card__quote { display: block; font-size: 3rem; line-height: 1; color: var(--sw-red); font-weight: 800; margin-bottom: 0.5rem; }
.sw-testimonial-card__body { color: var(--sw-black); font-size: 1rem; text-transform: none; }
.sw-testimonial-card__person { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.sw-testimonial-card__person img { width: 42px; height: 42px; object-fit: cover; border: 2px solid var(--sw-black); }
.sw-testimonial-card__name { font-weight: 700; color: var(--sw-black); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.02em; }

/* ---------- CTA banner ---------- */
.sw-cta { background: var(--sw-red); padding: 3.5rem 2.5rem; color: #fff; }
.sw-cta__title { color: #fff; margin-bottom: 0.6rem; }
.sw-cta__desc { color: rgba(255,255,255,.9); margin: 0; text-transform: none; font-size: 1rem; }
@media (max-width: 767px) {
    .sw-cta { padding: 2.5rem 1.25rem; }
}

/* ---------- FAQ ---------- */
.sw-faq { max-width: 860px; }
.sw-faq__item {
    background: #fff;
    border: 2px solid var(--sw-black);
    border-radius: 0 !important;
    margin-bottom: 1rem;
    overflow: hidden;
}
.sw-faq__question {
    font-weight: 700;
    color: var(--sw-black);
    background: #fff;
    font-size: 0.98rem;
    text-transform: none;
    border-radius: 0;
    box-shadow: none !important;
}
.sw-faq__question::after {
    content: '\2212';
    font-size: 1.3rem;
    background-image: none !important;
    color: var(--sw-red);
    transform: none !important;
    font-weight: 700;
}
.sw-faq__question.collapsed::after { content: '+'; color: var(--sw-black); }
.sw-faq__question:not(.collapsed) { color: var(--sw-red); }
.sw-faq__answer { color: var(--sw-gray-text); font-size: 0.95rem; text-transform: none; }

/* ---------- Footer ---------- */
.sw-footer { background: var(--sw-black); color: rgba(255,255,255,.75); padding: 4rem 2.5rem 1.5rem; }
.sw-footer__logo { height: 30px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.sw-footer__tagline { font-size: 0.9rem; max-width: 280px; margin-bottom: 1.25rem; }
.sw-footer__social { gap: 0.6rem; }
.sw-footer__social a {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
}
.sw-footer__social a:hover { background: var(--sw-red); border-color: var(--sw-red); }
.sw-footer__heading { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1.1rem; }
.sw-footer__links li { margin-bottom: 0.65rem; }
.sw-footer__links a { color: rgba(255,255,255,.7); font-size: 0.9rem; text-decoration: none; }
.sw-footer__links a:hover { color: var(--sw-red); }
.sw-footer__cta-text { font-size: 0.88rem; margin-bottom: 1rem; }
.sw-footer__rule { border-top: 1px solid rgba(255,255,255,.2); margin: 2.5rem 0 1.5rem; }
.sw-footer__bottom { font-size: 0.8rem; color: rgba(255,255,255,.5); text-align: center; text-transform: uppercase; letter-spacing: 0.03em; }
@media (max-width: 767px) {
    .sw-footer { padding: 3rem 1.25rem 1.25rem; }
}
