/* Webersoft site theme — modern fire-service look. */

:root {
    --ws-red: #c8102e;
    --ws-red-dark: #9b0c23;
    --ws-red-light: #e63b4f;
    --ws-ink: #1a1d24;
    --ws-slate: #2b303b;
    --ws-muted: #5b6472;
    --ws-bg: #ffffff;
    --ws-bg-alt: #f6f7f9;
    --ws-border: #e6e8ec;
    --ws-radius: 14px;
    --ws-shadow: 0 12px 40px rgba(16, 20, 30, 0.08);
    --ws-shadow-sm: 0 4px 16px rgba(16, 20, 30, 0.06);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ws-ink);
    background-color: var(--ws-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ws-ink);
}

a {
    color: var(--ws-red);
    text-decoration: none;
}

a:hover {
    color: var(--ws-red-dark);
}

/* Buttons */
.btn-ws-primary {
    background-color: var(--ws-red);
    border: 2px solid var(--ws-red);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    transition: all 0.18s ease;
}

.btn-ws-primary:hover,
.btn-ws-primary:focus {
    background-color: var(--ws-red-dark);
    border-color: var(--ws-red-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-ws-outline {
    background-color: transparent;
    border: 2px solid var(--ws-border);
    color: var(--ws-ink);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    transition: all 0.18s ease;
}

.btn-ws-outline:hover,
.btn-ws-outline:focus {
    border-color: var(--ws-red);
    color: var(--ws-red);
}

/* Navbar */
.ws-navbar {
    background-color: var(--ws-ink);
    padding: 0.85rem 0;
}

.ws-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ws-brand-logo {
    height: 36px;
    width: auto;
    border-radius: 6px;
}

.ws-brand-mark {
    filter: saturate(1.2);
}

.ws-navbar .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    padding: 0.4rem 0.9rem;
}

.ws-navbar .nav-link:hover {
    color: #fff;
}

/* Hero */
.ws-hero {
    background: radial-gradient(1200px 500px at 15% -10%, rgba(200, 16, 46, 0.14), transparent 60%), linear-gradient(180deg, #fff 0%, var(--ws-bg-alt) 100%);
    padding: 5rem 0 4.5rem;
    border-bottom: 1px solid var(--ws-border);
}

.ws-hero-compact {
    padding: 3.5rem 0 2.5rem;
}

.ws-eyebrow {
    display: inline-block;
    background: rgba(200, 16, 46, 0.1);
    color: var(--ws-red-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.ws-hero-title {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.08;
    margin-bottom: 1.1rem;
}

.ws-hero-lead {
    font-size: 1.2rem;
    color: var(--ws-muted);
    max-width: 40rem;
    margin-bottom: 1.8rem;
}

.ws-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.ws-hero-note {
    color: var(--ws-muted);
    font-size: 0.92rem;
    margin: 0;
}

.ws-hero-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    box-shadow: var(--ws-shadow);
    padding: 2rem;
}

.ws-hero-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.ws-hero-card p {
    color: var(--ws-muted);
}

.ws-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.ws-hero-card li {
    padding: 0.4rem 0 0.4rem 1.7rem;
    position: relative;
    color: var(--ws-slate);
}

.ws-hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ws-red);
    font-weight: 700;
}

.ws-hero-card-badge {
    position: absolute;
    top: -0.8rem;
    right: 1.5rem;
    background: var(--ws-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
}

/* Sections */
.ws-section {
    padding: 4.5rem 0;
}

.ws-section-alt {
    background: var(--ws-bg-alt);
}

.ws-section-head {
    max-width: 42rem;
    margin: 0 auto 2.8rem;
}

.ws-section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 0.7rem;
}

.ws-section-head p {
    color: var(--ws-muted);
    font-size: 1.1rem;
}

.ws-disclaimer {
    font-size: 0.9rem !important;
    font-style: italic;
    color: var(--ws-muted);
}

.ws-page-head {
    background: var(--ws-ink);
    color: #fff;
    padding: 3.5rem 0;
}

.ws-page-head h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.ws-page-head p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin: 0;
}

/* Feature cards */
.ws-feature-card {
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.8rem;
    height: 100%;
    box-shadow: var(--ws-shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ws-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow);
}

.ws-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.ws-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ws-feature-card p {
    color: var(--ws-muted);
    margin: 0;
}

/* Product cards */
.ws-product-logo {
    max-height: 80px;
    max-width: 240px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.ws-product-logo-sm {
    max-height: 56px;
    max-width: 180px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.ws-product-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 2rem;
    box-shadow: var(--ws-shadow-sm);
    height: 100%;
}

.ws-product-card h2,
.ws-product-card h3 {
    margin-bottom: 0.3rem;
}

.ws-product-tagline {
    color: var(--ws-red);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.ws-product-card p {
    color: var(--ws-muted);
}

.ws-audience {
    font-size: 0.95rem;
    color: var(--ws-slate);
}

.ws-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.ws-tag {
    display: inline-block;
    background: rgba(200, 16, 46, 0.1);
    color: var(--ws-red-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
}

.ws-lead-text {
    font-size: 1.1rem;
    color: var(--ws-slate);
    line-height: 1.7;
}

/* Integrations */
.ws-integration-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.8rem;
    height: 100%;
    box-shadow: var(--ws-shadow-sm);
}

.ws-integration-logo {
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--ws-ink);
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    box-sizing: content-box;
}

.ws-integration-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.ws-integration-card p {
    color: var(--ws-muted);
    margin: 0;
}

/* Testimonials */
.ws-testimonial {
    background: #fff;
    border: 1px solid var(--ws-border);
    border-left: 4px solid var(--ws-red);
    border-radius: var(--ws-radius);
    padding: 1.8rem;
    height: 100%;
    box-shadow: var(--ws-shadow-sm);
    margin: 0;
}

.ws-testimonial p {
    font-size: 1.1rem;
    color: var(--ws-slate);
    font-style: italic;
    margin-bottom: 1.2rem;
}

.ws-testimonial footer {
    display: flex;
    flex-direction: column;
}

.ws-testimonial footer strong {
    color: var(--ws-ink);
}

.ws-testimonial footer span {
    color: var(--ws-muted);
    font-size: 0.9rem;
}

/* CTA */
.ws-cta {
    background: linear-gradient(135deg, var(--ws-red) 0%, var(--ws-red-dark) 100%);
    color: #fff;
    padding: 4rem 0;
}

.ws-cta h2 {
    color: #fff;
    margin-bottom: 0.7rem;
}

.ws-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
}

.ws-cta .btn-ws-primary {
    background: #fff;
    border-color: #fff;
    color: var(--ws-red-dark);
}

.ws-cta .btn-ws-primary:hover {
    background: var(--ws-ink);
    border-color: var(--ws-ink);
    color: #fff;
}

.ws-cta-card {
    background: var(--ws-ink);
    color: #fff;
    border-radius: var(--ws-radius);
    padding: 2rem;
    box-shadow: var(--ws-shadow);
}

.ws-cta-card h3 {
    color: #fff;
}

.ws-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.3rem;
}

/* Forms */
.ws-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}

.ws-form-card {
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 2.2rem;
    box-shadow: var(--ws-shadow-sm);
}

.ws-form-card .form-label {
    font-weight: 600;
    color: var(--ws-slate);
}

.ws-form-card .form-control,
.ws-form-card .form-select {
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    border-color: var(--ws-border);
}

.ws-form-card .form-control:focus,
.ws-form-card .form-select:focus {
    border-color: var(--ws-red);
    box-shadow: 0 0 0 0.2rem rgba(200, 16, 46, 0.15);
}

.ws-validation-summary:not(:empty) {
    background: rgba(200, 16, 46, 0.08);
    border: 1px solid rgba(200, 16, 46, 0.25);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    color: var(--ws-red-dark);
}

.ws-alert {
    border-radius: var(--ws-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ws-alert-success {
    background: #e9f7ef;
    border: 1px solid #b7e4c7;
    color: #14532d;
}

.ws-alert-success h3 {
    color: #14532d;
}

.ws-contact-side {
    background: var(--ws-bg-alt);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 2rem;
}

.ws-contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.ws-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
}

.ws-contact-note {
    color: var(--ws-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.ws-footer {
    background: var(--ws-ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 1.5rem;
    flex-shrink: 0;
}

.ws-footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.ws-footer-text {
    max-width: 22rem;
}

.ws-footer h6 {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.ws-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ws-footer-links li {
    margin-bottom: 0.5rem;
}

.ws-footer-links a {
    color: rgba(255, 255, 255, 0.75);
}

.ws-footer-links a:hover {
    color: #fff;
}

.ws-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.2rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}
