/* =========================================================
   ITECH Secure Plus — Premium Public Website
   Apple + Stripe + Framer-inspired (minimal, corporate)
   ========================================================= */

:root {
    --ws-bg: #ffffff;
    --ws-bg-soft: #f8fafc;
    --ws-bg-muted: #f1f5f9;
    --ws-ink: #0b1220;
    --ws-ink-2: #1e293b;
    --ws-muted: #64748b;
    --ws-border: #e2e8f0;
    --ws-primary: #2563eb;
    --ws-primary-dark: #1d4ed8;
    --ws-primary-soft: rgba(37, 99, 235, 0.08);
    --ws-accent: #0ea5e9;
    --ws-success: #059669;
    --ws-dark: #0f172a;
    --ws-radius: 1rem;
    --ws-radius-sm: 0.75rem;
    --ws-radius-pill: 999px;
    --ws-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
    --ws-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --ws-nav-h: 76px;
    --ws-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --ws-display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --ws-transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Accessibility: skip link + focus */
.ws-skip-link {
    position: absolute;
    left: 0.75rem;
    top: -3rem;
    z-index: 3000;
    padding: 0.55rem 1rem;
    border-radius: var(--ws-radius-pill);
    background: var(--ws-ink);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: top 0.2s ease;
}

.ws-skip-link:focus {
    top: 0.75rem;
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

.ws-body :focus-visible {
    outline: 2px solid var(--ws-primary);
    outline-offset: 2px;
}

.ws-btn:focus-visible,
.ws-chip:focus-visible,
.ws-nav-toggle:focus-visible {
    outline: 2px solid var(--ws-primary);
    outline-offset: 3px;
}

body.ws-body {
    margin: 0;
    font-family: var(--ws-font);
    color: var(--ws-ink-2);
    background: var(--ws-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.ws-body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--ws-primary);
    text-decoration: none;
    transition: color var(--ws-transition);
}

a:hover {
    color: var(--ws-primary-dark);
}

.ws-main {
    min-height: 50vh;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ---------- Typography ---------- */
.ws-display {
    font-family: var(--ws-display);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--ws-ink);
}

.ws-h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
}

.ws-h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.ws-h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--ws-ink);
}

.ws-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--ws-muted);
    line-height: 1.7;
    max-width: 38rem;
}

.ws-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ws-primary);
    margin-bottom: 0.85rem;
}

.ws-section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.ws-section--soft {
    background: var(--ws-bg-soft);
}

.ws-section--dark {
    background: var(--ws-dark);
    color: #e2e8f0;
}

.ws-section--dark .ws-display,
.ws-section--dark .ws-h3 {
    color: #fff;
}

.ws-section--dark .ws-lead,
.ws-section--dark .ws-muted {
    color: #94a3b8;
}

.ws-section-head {
    max-width: 40rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.ws-section-head .ws-lead {
    margin-left: auto;
    margin-right: auto;
}

.ws-muted {
    color: var(--ws-muted);
}

/* ---------- Buttons ---------- */
.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    border-radius: var(--ws-radius-pill);
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    transition: transform var(--ws-transition), box-shadow var(--ws-transition),
        background var(--ws-transition), color var(--ws-transition), border-color var(--ws-transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.ws-btn:active {
    transform: translateY(1px);
}

.ws-btn-primary {
    background: var(--ws-primary);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.ws-btn-primary:hover {
    background: var(--ws-primary-dark);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.ws-btn-secondary {
    background: #fff;
    color: var(--ws-ink) !important;
    border-color: var(--ws-border);
    box-shadow: var(--ws-shadow);
}

.ws-btn-secondary:hover {
    border-color: #cbd5e1;
    color: var(--ws-ink) !important;
}

.ws-btn-ghost {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28);
}

.ws-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.ws-btn-success {
    background: #25d366;
    color: #fff !important;
}

.ws-btn-sm {
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
}

.ws-btn-lg {
    padding: 1rem 1.6rem;
    font-size: 1rem;
}

/* ---------- Cards ---------- */
.ws-card {
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: calc(var(--ws-radius) + 0.15rem);
    box-shadow: var(--ws-shadow);
    transition: transform var(--ws-transition), box-shadow var(--ws-transition),
        border-color var(--ws-transition);
    height: 100%;
    overflow: hidden;
}

.ws-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
    border-color: #dbe3ee;
}

.ws-card__body {
    padding: 1.5rem 1.5rem 1.65rem;
}

.ws-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ws-primary-soft);
    color: var(--ws-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.ws-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--ws-radius-pill);
    font-size: 0.75rem;
    font-weight: 650;
    background: var(--ws-primary-soft);
    color: var(--ws-primary);
}

.ws-badge--soft {
    background: var(--ws-bg-muted);
    color: var(--ws-muted);
}

/* ---------- Navbar ---------- */
.ws-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    height: var(--ws-nav-h);
    display: flex;
    align-items: center;
    transition: background var(--ws-transition), box-shadow var(--ws-transition),
        backdrop-filter var(--ws-transition);
}

.ws-navbar.is-transparent {
    background: transparent;
}

/* Solid bar: scrolled on home OR any inner page (body.ws-nav-solid) */
.ws-navbar.is-solid,
.ws-navbar.is-scrolled,
body.ws-nav-solid .ws-navbar,
body.ws-nav-solid .ws-navbar.is-transparent {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.ws-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.ws-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none !important;
    color: inherit !important;
    min-width: 0;
    flex-shrink: 0;
}

.ws-brand__logo {
    width: 2.35rem;
    height: 2.35rem;
    object-fit: contain;
    border-radius: 0.55rem;
    background: #fff;
    padding: 0.2rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.ws-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.ws-brand__name {
    font-weight: 750;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    color: var(--ws-ink);
}

.ws-brand__tag {
    font-size: 0.65rem;
    color: var(--ws-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Default link styles (dark text) */
.ws-nav-links {
    display: none;
    align-items: center;
    gap: 0.05rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    flex-wrap: nowrap;
}

.ws-nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.45rem 0.55rem;
    border-radius: 0.65rem;
    font-weight: 550;
    font-size: 0.84rem;
    white-space: nowrap;
    color: var(--ws-ink-2) !important;
    text-decoration: none !important;
}

.ws-nav-links a:hover,
.ws-nav-links a.is-active {
    background: var(--ws-primary-soft);
    color: var(--ws-primary) !important;
}

.ws-nav-actions {
    display: none;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.ws-nav-actions .ws-btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
}

.ws-nav-toggle {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--ws-border);
    border-radius: 0.65rem;
    background: #fff;
    align-items: center;
    justify-content: center;
    color: var(--ws-ink);
    flex-shrink: 0;
}

/* ---- Transparent home (dark hero): white text ---- */
body:not(.ws-nav-solid) .ws-navbar.is-transparent:not(.is-scrolled) .ws-brand__name {
    color: #fff;
}

body:not(.ws-nav-solid) .ws-navbar.is-transparent:not(.is-scrolled) .ws-brand__tag {
    color: rgba(255, 255, 255, 0.7);
}

body:not(.ws-nav-solid) .ws-navbar.is-transparent:not(.is-scrolled) .ws-nav-links a {
    color: rgba(255, 255, 255, 0.92) !important;
}

body:not(.ws-nav-solid) .ws-navbar.is-transparent:not(.is-scrolled) .ws-nav-links a:hover,
body:not(.ws-nav-solid) .ws-navbar.is-transparent:not(.is-scrolled) .ws-nav-links a.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

body:not(.ws-nav-solid) .ws-navbar.is-transparent:not(.is-scrolled) .ws-nav-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ---- Solid / scrolled / all inner pages: dark text (wins over transparent) ---- */
body.ws-nav-solid .ws-navbar .ws-brand__name,
.ws-navbar.is-scrolled .ws-brand__name,
.ws-navbar.is-solid .ws-brand__name {
    color: var(--ws-ink) !important;
}

body.ws-nav-solid .ws-navbar .ws-brand__tag,
.ws-navbar.is-scrolled .ws-brand__tag,
.ws-navbar.is-solid .ws-brand__tag {
    color: var(--ws-muted) !important;
}

body.ws-nav-solid .ws-navbar .ws-nav-links a,
.ws-navbar.is-scrolled .ws-nav-links a,
.ws-navbar.is-solid .ws-nav-links a {
    color: var(--ws-ink-2) !important;
}

body.ws-nav-solid .ws-navbar .ws-nav-links a:hover,
body.ws-nav-solid .ws-navbar .ws-nav-links a.is-active,
.ws-navbar.is-scrolled .ws-nav-links a:hover,
.ws-navbar.is-scrolled .ws-nav-links a.is-active,
.ws-navbar.is-solid .ws-nav-links a:hover,
.ws-navbar.is-solid .ws-nav-links a.is-active {
    background: var(--ws-primary-soft);
    color: var(--ws-primary) !important;
}

body.ws-nav-solid .ws-navbar .ws-nav-toggle,
.ws-navbar.is-scrolled .ws-nav-toggle,
.ws-navbar.is-solid .ws-nav-toggle {
    background: #fff;
    border-color: var(--ws-border);
    color: var(--ws-ink);
}

/* Desktop: show full menu; use larger breakpoint so items aren't crushed */
@media (min-width: 1100px) {
    .ws-nav-links {
        display: flex;
    }

    .ws-nav-actions {
        display: flex;
    }

    .ws-nav-toggle {
        display: none;
    }
}

/* Mid desktop: slightly tighter link padding */
@media (min-width: 1100px) and (max-width: 1280px) {
    .ws-nav-links a {
        padding: 0.4rem 0.42rem;
        font-size: 0.8rem;
    }

    .ws-brand__tag {
        display: none;
    }
}

/* Below 1100px: hamburger menu */
@media (max-width: 1099.98px) {
    .ws-nav-links {
        display: none !important;
    }

    .ws-nav-actions {
        display: none !important;
    }

    .ws-nav-toggle {
        display: inline-flex !important;
    }
}

/* Mega menu */
.ws-mega {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    top: calc(100% + 0.35rem);
    width: min(720px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: 1.1rem;
    box-shadow: var(--ws-shadow-lg);
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ws-transition), transform var(--ws-transition),
        visibility var(--ws-transition);
    z-index: 1050;
}

.ws-nav-item--mega {
    position: relative;
}

.ws-nav-item--mega:hover .ws-mega,
.ws-nav-item--mega:focus-within .ws-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ws-mega__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.ws-mega__link {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 0.85rem;
    color: inherit !important;
    text-decoration: none !important;
}

.ws-mega__link:hover {
    background: var(--ws-bg-soft);
}

.ws-mega__link i {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: var(--ws-primary-soft);
    color: var(--ws-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ws-mega__link strong {
    display: block;
    font-size: 0.92rem;
    color: var(--ws-ink);
}

.ws-mega__link span {
    display: block;
    font-size: 0.8rem;
    color: var(--ws-muted);
    margin-top: 0.15rem;
}

/* Mobile drawer */
.ws-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
}

.ws-drawer.is-open {
    pointer-events: auto;
}

.ws-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity var(--ws-transition);
}

.ws-drawer.is-open .ws-drawer__backdrop {
    opacity: 1;
}

.ws-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100%;
    background: #fff;
    box-shadow: var(--ws-shadow-lg);
    padding: 1.25rem;
    transform: translateX(100%);
    transition: transform var(--ws-transition);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ws-drawer.is-open .ws-drawer__panel {
    transform: translateX(0);
}

.ws-drawer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ws-drawer__links a {
    display: block;
    padding: 0.85rem 0.9rem;
    border-radius: 0.75rem;
    color: var(--ws-ink) !important;
    font-weight: 600;
    text-decoration: none !important;
}

.ws-drawer__links a:hover {
    background: var(--ws-bg-soft);
}

/* Offset content under fixed nav */
.ws-page-pad {
    padding-top: var(--ws-nav-h);
}

/* ---------- Hero ---------- */
.ws-hero {
    position: relative;
    padding: calc(var(--ws-nav-h) + 3.5rem) 0 5rem;
    background:
        radial-gradient(ellipse 80% 60% at 80% 10%, rgba(37, 99, 235, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(14, 165, 233, 0.18), transparent 50%),
        linear-gradient(160deg, #0b1220 0%, #0f172a 45%, #111827 100%);
    color: #fff;
    overflow: hidden;
}

.ws-hero .ws-display {
    color: #fff;
}

.ws-hero .ws-lead {
    color: rgba(226, 232, 240, 0.88);
}

.ws-hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .ws-hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.ws-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.ws-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.ws-hero__pills span {
    padding: 0.4rem 0.8rem;
    border-radius: var(--ws-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
}

.ws-hero__visual {
    position: relative;
}

.ws-hero__visual img {
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-hero__float {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ws-ink);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    box-shadow: var(--ws-shadow);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.ws-hero__float i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    background: var(--ws-primary-soft);
    color: var(--ws-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Page hero (inner pages) */
.ws-page-hero {
    padding: calc(var(--ws-nav-h) + 3rem) 0 3rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--ws-border);
}

.ws-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--ws-muted);
    margin-bottom: 1rem;
}

.ws-breadcrumb a {
    color: var(--ws-muted);
    text-decoration: none !important;
}

.ws-breadcrumb a:hover {
    color: var(--ws-primary);
}

.ws-breadcrumb .sep {
    opacity: 0.5;
}

/* ---------- Stats ---------- */
.ws-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .ws-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.ws-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--ws-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-stat__value {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 750;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.1;
}

.ws-stat__label {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ---------- Feature / product grids ---------- */
.ws-grid-3 {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .ws-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .ws-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ws-grid-4 {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .ws-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .ws-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------- Timeline ---------- */
.ws-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.ws-timeline::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 2px;
    background: var(--ws-border);
}

.ws-timeline__item {
    position: relative;
    padding: 0 0 1.75rem 1.25rem;
}

.ws-timeline__item::before {
    content: "";
    position: absolute;
    left: -1.28rem;
    top: 0.35rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--ws-primary);
    box-shadow: 0 0 0 4px var(--ws-primary-soft);
}

/* ---------- Accordion ---------- */
.ws-accordion .accordion-item {
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-sm) !important;
    overflow: hidden;
    margin-bottom: 0.65rem;
    background: #fff;
}

.ws-accordion .accordion-button {
    font-weight: 600;
    box-shadow: none !important;
    background: #fff;
}

.ws-accordion .accordion-button:not(.collapsed) {
    color: var(--ws-primary);
    background: var(--ws-primary-soft);
}

/* ---------- Testimonials ---------- */
.ws-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ws-ink-2);
}

.ws-quote__author {
    margin-top: 1.25rem;
    font-weight: 650;
    color: var(--ws-ink);
}

.ws-quote__role {
    font-size: 0.85rem;
    color: var(--ws-muted);
}

/* ---------- CTA ---------- */
.ws-cta {
    border-radius: 1.5rem;
    padding: clamp(2rem, 5vw, 3.25rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.35), transparent 45%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    box-shadow: var(--ws-shadow-lg);
}

.ws-cta h2 {
    color: #fff;
    letter-spacing: -0.03em;
}

.ws-cta p {
    color: #94a3b8;
    max-width: 32rem;
}

/* ---------- Forms ---------- */
.ws-form .form-control,
.ws-form .form-select {
    border-radius: 0.75rem;
    border-color: var(--ws-border);
    padding: 0.8rem 1rem;
    min-height: 3rem;
    box-shadow: none;
}

.ws-form .form-control:focus,
.ws-form .form-select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.ws-form .form-label {
    font-weight: 600;
    color: var(--ws-ink-2);
    margin-bottom: 0.4rem;
}

/* ---------- Footer ---------- */
.ws-footer {
    position: relative;
    z-index: 2;
    background: #0b1220;
    color: #94a3b8;
    padding-top: 4rem;
    /* Space for floating WhatsApp / back-to-top so they don't cover footer content */
    padding-bottom: 5.5rem;
    margin-top: 0;
    clear: both;
}

.ws-footer a {
    color: #cbd5e1;
    text-decoration: none !important;
}

.ws-footer a:hover {
    color: #fff;
}

.ws-footer__title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.ws-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ws-footer__links li {
    margin-bottom: 0.55rem;
}

.ws-footer__bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* ---------- Floating widgets ---------- */
.ws-float-wa {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1030;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    transition: transform var(--ws-transition);
}

.ws-float-wa:hover {
    transform: scale(1.06);
    color: #fff !important;
}

.ws-back-top {
    position: fixed;
    right: 1.15rem;
    bottom: 5.25rem;
    z-index: 1030;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--ws-border);
    background: #fff;
    color: var(--ws-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ws-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--ws-transition), transform var(--ws-transition),
        visibility var(--ws-transition);
}

.ws-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---------- Reveal animations ---------- */
.ws-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ws-reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Page loader ---------- */
.ws-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ws-loader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ws-loader__dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--ws-primary);
    animation: ws-pulse 0.9s ease-in-out infinite alternate;
    box-shadow: 1.1rem 0 0 var(--ws-primary), -1.1rem 0 0 var(--ws-primary);
}

@keyframes ws-pulse {
    from {
        opacity: 0.35;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------- Utilities ---------- */
.ws-container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.ws-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ws-logo-chip {
    padding: 0.65rem 1.1rem;
    border-radius: var(--ws-radius-pill);
    border: 1px solid var(--ws-border);
    background: #fff;
    font-weight: 650;
    font-size: 0.85rem;
    color: var(--ws-ink-2);
    letter-spacing: -0.01em;
}

.ws-map-embed {
    border: 0;
    border-radius: var(--ws-radius);
    width: 100%;
    min-height: 360px;
    background: var(--ws-bg-muted);
    box-shadow: var(--ws-shadow);
}

/* Home contact block — keep clear of footer */
#contact-home {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(3.5rem, 7vw, 5.5rem) !important;
    margin-bottom: 0;
    overflow: hidden;
}

#contact-home .ws-map-wrap {
    position: relative;
    z-index: 0;
    margin-bottom: 0;
}

#contact-home .ws-map-embed {
    display: block;
    max-height: 420px;
}

/* Contact split */
.ws-contact-panel {
    background: var(--ws-bg-soft);
    border: 1px solid var(--ws-border);
    border-radius: calc(var(--ws-radius) + 0.15rem);
    padding: 1.75rem;
    height: auto;
    min-height: 100%;
}

.ws-contact-line {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.ws-contact-line i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    background: #fff;
    border: 1px solid var(--ws-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ws-primary);
    flex-shrink: 0;
}

/* ---------- Intro panel ---------- */
.ws-intro-panel {
    display: grid;
    gap: 1rem;
}

.ws-intro-stat {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.25rem 1.35rem;
    border-radius: var(--ws-radius);
    border: 1px solid var(--ws-border);
    background: #fff;
    box-shadow: var(--ws-shadow);
}

.ws-intro-stat strong {
    font-size: 1.65rem;
    font-weight: 750;
    letter-spacing: -0.03em;
    color: var(--ws-ink);
    min-width: 4.5rem;
    line-height: 1.1;
}

.ws-intro-stat span {
    color: var(--ws-muted);
    font-size: 0.95rem;
}

/* ---------- Badges ---------- */
.ws-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: var(--ws-radius-pill);
    background: var(--ws-primary-soft);
    color: var(--ws-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---------- Project cards ---------- */
.ws-project-card {
    overflow: hidden;
}

.ws-project-card__visual {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a, #1e3a8a 55%, #2563eb);
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.5rem;
}

/* ---------- Map ---------- */
.ws-map-wrap {
    position: relative;
}

.ws-map-embed--footer {
    min-height: 180px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---------- Social icons ---------- */
.ws-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ws-social a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0 !important;
    background: rgba(255, 255, 255, 0.04);
    transition: background var(--ws-transition), color var(--ws-transition);
}

.ws-social a:hover {
    background: var(--ws-primary);
    border-color: transparent;
    color: #fff !important;
}

/* ---------- Newsletter ---------- */
.ws-newsletter__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ws-newsletter__row .form-control {
    flex: 1 1 12rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
}

.ws-newsletter__row .form-control::placeholder {
    color: #94a3b8;
}

.ws-newsletter__row .form-control:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

/* ---------- Lists ---------- */
.ws-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ws-check-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.7rem;
    color: var(--ws-ink-2);
}

.ws-check-list li::before {
    content: "✓";
    color: var(--ws-primary);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
}

.ws-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--ws-muted);
}

.ws-bullet-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.35rem;
}

.ws-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--ws-primary);
}

/* ---------- Filter chips / search ---------- */
.ws-search-input {
    max-width: 420px;
    border-radius: 999px !important;
    border-color: var(--ws-border);
    padding-left: 1.15rem;
    padding-right: 1.15rem;
}

.ws-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ws-chip {
    border: 1px solid var(--ws-border);
    background: #fff;
    color: var(--ws-ink-2);
    border-radius: var(--ws-radius-pill);
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--ws-transition), color var(--ws-transition),
        border-color var(--ws-transition);
}

.ws-chip:hover {
    border-color: #bfdbfe;
    color: var(--ws-primary);
}

.ws-chip.is-active {
    background: var(--ws-primary);
    border-color: var(--ws-primary);
    color: #fff;
}

/* ---------- Product / gallery media ---------- */
.ws-product-media {
    height: 180px;
    background: var(--ws-bg-soft);
    overflow: hidden;
}

.ws-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ws-product-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ws-primary);
    font-size: 2.25rem;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
}

.ws-gallery-media {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g-from, #1e3a8a), var(--g-to, #2563eb));
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.5rem;
}

.ws-hash-focus {
    outline: 2px solid rgba(37, 99, 235, 0.35);
    outline-offset: 4px;
    border-radius: calc(var(--ws-radius) + 0.15rem);
}

/* Honeypot — off-screen */
.ws-hp,
.ws-hp-wrap {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* Spec table */
.ws-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.ws-spec-table th,
.ws-spec-table td {
    text-align: left;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--ws-border);
    font-size: 0.95rem;
}

.ws-spec-table th {
    width: 40%;
    color: var(--ws-muted);
    font-weight: 600;
}

/* ---------- Blog prose ---------- */
.ws-prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ws-ink-2);
}

.ws-prose p {
    margin-bottom: 1.15rem;
}

.ws-blog-cover img {
    max-height: 420px;
    object-fit: cover;
    box-shadow: var(--ws-shadow);
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ws-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ws-loader__dot {
        animation: none;
    }
}
