/* WiseLead Solutions - Custom Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #1c65af;
    --secondary-color: #0f2d5e;
    --success-color: #1c65af;
    --success: #1c65af;
    --bs-success: #1c65af;
    --bs-success-rgb: 28, 101, 175;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #000000;
    --font-family: 'DM Sans', sans-serif;
    --font-family-heading: 'Bebas Neue', sans-serif;
    --font-main: 'DM Sans', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --accent-light: #92d7ef;
    --accent-gray: #979583;
    --brand-ink: #0a192f;
    --brand-deep: #0f2d5e;
    --brand-mid: #1c65af;
    --brand-aqua: #7dd3fc;
    --panel-bg: #f7f9fc;

    /* Override huro-theme.css which sets these to teal/green */
    --bs-primary: #1c65af;
    --bs-primary-rgb: 28, 101, 175;
    --bs-link-color: #1c65af;
    --bs-link-hover-color: #114d86;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3 {
    font-family: var(--font-family-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.h1, .h2, .h3,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-family-heading);
    letter-spacing: 0.02em;
}

h4, h5, h6,
.h4, .h5, .h6 {
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: 0;
}

button,
input,
textarea,
select,
.btn {
    font-family: var(--font-family);
}

/* Typography */
.display-4 { font-size: clamp(2rem, 5vw, 3.5rem); }
.display-5 { font-size: clamp(1.75rem, 4vw, 3rem); }
.display-6 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
.lead { font-size: clamp(1rem, 2vw, 1.25rem); }

p,
li,
small,
label,
input,
textarea,
select {
    font-weight: 400;
}

/* Header */
.header { transition: all 0.3s ease; }
.navbar-brand { font-size: 1.5rem; }

.wl-header {
    backdrop-filter: blur(12px);
}

.wl-header .navbar {
    border-bottom: 1px solid rgba(15, 45, 94, 0.08);
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.06);
}

.wl-brand {
    gap: 0.7rem;
}

.wl-brand-logo {
    height: 42px;
    width: auto;
    border-radius: 10px;
}

.wl-brand-text {
    font-size: 1.03rem;
    letter-spacing: 0.01em;
}

.wl-nav-list .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a !important;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.wl-nav-list .nav-link:hover,
.wl-nav-list .nav-link:focus {
    color: var(--brand-mid) !important;
}

/* Rejist-aligned Homepage Design */
.wl-hero-split {
    display: flex;
    min-height: calc(100vh - 76px);
}

.wl-hero-left,
.wl-hero-right {
    width: 50%;
}

.wl-hero-left {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--brand-ink) 0%, var(--brand-deep) 52%, var(--brand-mid) 100%);
    padding: 3.2rem clamp(1.4rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-hero-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(125, 211, 252, 0.15) 0%, transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.wl-hero-left-inner {
    width: 100%;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.wl-hero-logo {
    width: min(220px, 56%);
    height: auto;
    margin-bottom: 1.8rem;
}

.wl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.42rem 0.9rem;
    margin-bottom: 1rem;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wl-hero-title {
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.wl-hero-title-accent {
    color: var(--brand-aqua);
    display: block;
}

.wl-hero-title:focus,
.wl-hero-title:focus-visible {
    outline: none;
    box-shadow: none;
}

.wl-hero-copy {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    line-height: 1.72;
    max-width: 510px;
    margin-bottom: 1.35rem;
}

.wl-hero-stats {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 1.25rem;
}

.wl-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.22rem;
    text-align: center;
}

.wl-stat-value {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
}

.wl-stat-label {
    color: rgba(255, 255, 255, 0.64);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.66rem;
    font-weight: 700;
}

.wl-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0 0.3rem;
}

.wl-signal-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.wl-signal-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 0.95rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.wl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wl-dot-red { background: #ff5f57; }
.wl-dot-amber { background: #f59e0b; }
.wl-dot-green { background: #60a5fa; }

.wl-signal-title {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.73rem;
    font-weight: 700;
    margin-left: 0.2rem;
}

.wl-signal-row {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.65rem 0.95rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wl-signal-row:last-child {
    border-bottom: 0;
}

.wl-signal-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.wl-hero-right {
    background: linear-gradient(180deg, #ffffff 0%, var(--panel-bg) 100%);
    padding: 3.2rem clamp(1.4rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-hero-right-inner {
    width: 100%;
    max-width: 560px;
}

.wl-panel-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-mid);
    background: rgba(28, 101, 175, 0.08);
    border: 1px solid rgba(28, 101, 175, 0.15);
    border-radius: 999px;
    padding: 0.4rem 0.88rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}

.wl-panel-title {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 0.7rem;
}

.wl-panel-copy {
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.3rem;
}

.wl-mini-cards {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.3rem;
}

.wl-mini-card {
    text-decoration: none;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #dce4ef;
    border-radius: 14px;
    padding: 0.88rem;
    transition: all 0.25s ease;
    color: inherit;
}

.wl-mini-card:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 101, 175, 0.35);
    box-shadow: 0 14px 24px rgba(10, 25, 47, 0.08);
}

.wl-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f2d5e 0%, #1c65af 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.wl-mini-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wl-mini-body strong {
    color: #0f172a;
    font-size: 0.96rem;
}

.wl-mini-body small {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.4;
}

.wl-hero-cta {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.wl-hero-cta .btn {
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
}

.wl-solutions,
.wl-products,
.wl-cta-band {
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.wl-solutions {
    background: #ffffff;
}

.wl-products {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.wl-section-header {
    margin-bottom: 2.2rem;
}

.wl-section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--brand-mid);
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.wl-feature-card {
    background: #fff;
    border: 1px solid #e3ebf5;
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 10px 30px rgba(15, 45, 94, 0.06);
    transition: all 0.28s ease;
}

.wl-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 45, 94, 0.11);
}

.wl-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
}

.wl-grad-blue { background: linear-gradient(135deg, #0f2d5e 0%, #1c65af 100%); }
.wl-grad-teal { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%); }
.wl-grad-violet { background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%); }

.wl-product-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dde7f5;
    padding: 1.4rem;
    box-shadow: 0 16px 36px rgba(10, 25, 47, 0.07);
}

.wl-product-head {
    margin-bottom: 0.7rem;
}

.wl-product-pill {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.24rem 0.66rem;
    background: rgba(28, 101, 175, 0.12);
    color: var(--brand-mid);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.wl-product-head h3 {
    margin-bottom: 0;
}

.wl-product-card p {
    color: #475569;
    line-height: 1.7;
}

.wl-product-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.1rem;
    display: grid;
    gap: 0.5rem;
}

.wl-product-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.92rem;
}

.wl-product-list i {
    color: var(--brand-mid);
}

.wl-cta-band {
    background: #ffffff;
    padding-top: 0;
}

.wl-cta-card {
    border-radius: 20px;
    background: linear-gradient(140deg, var(--brand-ink) 0%, var(--brand-deep) 58%, var(--brand-mid) 100%);
    color: #fff;
    padding: clamp(1.6rem, 5vw, 2.8rem);
    text-align: center;
    box-shadow: 0 22px 46px rgba(15, 45, 94, 0.28);
}

.wl-cta-card h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.wl-cta-card p {
    color: rgba(255, 255, 255, 0.76);
    max-width: 720px;
    margin: 0 auto 1rem;
}

/* Inner Page System */
.wl-page-hero {
    padding: clamp(3.3rem, 8vw, 5.2rem) 0;
    position: relative;
    overflow: hidden;
}

.wl-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(125, 211, 252, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(14, 165, 233, 0.16) 0%, transparent 40%);
    pointer-events: none;
}

.wl-page-hero-about,
.wl-page-hero-solutions,
.wl-page-hero-learning,
.wl-page-hero-cloud,
.wl-page-hero-software,
.wl-page-hero-contact,
.wl-page-hero-rejist,
.wl-page-hero-shakad,
.wl-page-hero-workspaces {
    background: linear-gradient(145deg, var(--brand-ink) 0%, var(--brand-deep) 58%, var(--brand-mid) 100%);
}

.wl-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.wl-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
}

.wl-page-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.65;
    max-width: 760px;
    margin: 0 auto;
}

.wl-page-section {
    padding: clamp(2.6rem, 6vw, 4.4rem) 0;
}

.wl-page-section-muted {
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
}

.wl-panel-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #dde6f3;
    box-shadow: 0 16px 34px rgba(10, 25, 47, 0.08);
    padding: 1.2rem;
}

.wl-check-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0;
}

.wl-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #1f2d3d;
    line-height: 1.5;
}

.wl-check-list i {
    color: var(--brand-mid);
    margin-top: 2px;
}

.wl-stat-card {
    background: #ffffff;
    border: 1px solid #dfebf7;
    border-radius: 16px;
    padding: 1.15rem;
    box-shadow: 0 12px 28px rgba(10, 25, 47, 0.06);
}

.wl-stat-card i {
    font-size: 1.25rem;
    color: var(--brand-mid);
    margin-bottom: 0.6rem;
    display: inline-flex;
}

.wl-stat-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.wl-stat-card p {
    color: #4a5d75;
    margin-bottom: 0;
    font-size: 0.92rem;
}

.wl-contact-band {
    background: #ffffff;
    border: 1px solid #dfebf7;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(10, 25, 47, 0.08);
    padding: clamp(1.2rem, 4vw, 2rem);
}

.wl-contact-info-card {
    background: linear-gradient(145deg, var(--brand-ink) 0%, var(--brand-deep) 70%, var(--brand-mid) 100%);
    border-radius: 18px;
    padding: clamp(1.4rem, 4vw, 2.2rem);
    color: #fff;
    height: 100%;
}

.wl-contact-info-card h2 {
    color: #fff;
    margin-bottom: 1.4rem;
}

.wl-contact-row {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wl-contact-row:last-child {
    border-bottom: none;
}

.wl-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(125, 211, 252, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-aqua);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wl-contact-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
}

.wl-contact-row a {
    color: var(--brand-aqua);
    text-decoration: none;
    font-weight: 600;
}

.wl-contact-row a:hover {
    color: #fff;
}

.wl-form-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e0eaf5;
    box-shadow: 0 16px 34px rgba(10, 25, 47, 0.07);
    padding: clamp(1.4rem, 4vw, 2.2rem);
}

.wl-capability-card {
    background: #fff;
    border: 1px solid #e3ebf5;
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 10px 28px rgba(15, 45, 94, 0.06);
    transition: all 0.28s ease;
    height: 100%;
}

.wl-capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 45, 94, 0.11);
}

.wl-platform-card {
    background: var(--panel-bg);
    border-radius: 16px;
    padding: 1.6rem 1.2rem;
    text-align: center;
    border: 1px solid #dde8f5;
}

.wl-platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.wl-platform-icon.blue { background: rgba(28, 101, 175, 0.12); color: var(--brand-mid); }
.wl-platform-icon.teal { background: rgba(20, 184, 166, 0.12); color: #0d9488; }
.wl-platform-icon.violet { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }

.wl-waitlist-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e0eaf5;
    box-shadow: 0 16px 36px rgba(10, 25, 47, 0.1);
    padding: clamp(1.4rem, 4vw, 2.4rem);
}

.wl-benefit-row {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0f5fb;
}

.wl-benefit-row:last-child {
    border-bottom: none;
}

.wl-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    color: #dc2626;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.wl-copy-muted,
.text-muted.wl-copy-muted {
    color: #4a5d75 !important;
}

.wl-link-strong {
    color: #114d86;
    text-decoration: underline;
    text-underline-offset: 0.16rem;
    text-decoration-thickness: 0.09rem;
}

.wl-link-strong:hover,
.wl-link-strong:focus-visible {
    color: #0a3158;
}

/* Accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid #0ea5e9;
    outline-offset: 2px;
    box-shadow: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, #1c65af 0%, #0f2d5e 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(28, 101, 175, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, #114d86 0%, #1c65af 100%);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(28, 101, 175, 0.45);
    transform: translateY(-1px);
}

.btn-primary:active {
    background: linear-gradient(135deg, #0f2d5e 0%, #1c65af 100%);
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(28, 101, 175, 0.3);
}

.btn-outline-primary {
    border-width: 2px;
    color: #114d86;
    border-color: #114d86;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
    color: #ffffff;
    background-color: #114d86;
    border-color: #114d86;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.82) !important;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1480px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1199px) {
    .wl-signal-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .wl-trust-sep {
        display: none;
    }
    .wl-trust-inner {
        justify-content: center;
        gap: 0.2rem 0;
    }
    .wl-trust-item {
        width: 33.333%;
        padding: 0.4rem 0.5rem;
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .wl-hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .wl-hero-left,
    .wl-hero-right {
        width: 100%;
    }

    .wl-hero-left,
    .wl-hero-right {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }

    .wl-brand-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .wl-hero-logo {
        width: 180px;
    }

    .wl-hero-stats {
        padding: 0.72rem 0.62rem;
    }

    .wl-stat-value {
        font-size: 1rem;
    }

    .wl-stat-label {
        font-size: 0.58rem;
    }

    .wl-panel-title {
        font-size: 1.58rem;
    }

    .wl-mini-card {
        padding: 0.72rem;
    }

    .wl-hero-cta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wl-hero-cta .btn {
        width: 100%;
    }

    .wl-page-title {
        font-size: 1.72rem;
    }

    /* Signal card: stack items vertically on small phones */
    .wl-signal-row {
        flex-direction: column;
        gap: 0.45rem;
    }

    /* Contact band CTA: stack button below text */
    .wl-contact-band .row {
        flex-direction: column;
    }

    .wl-contact-band .col-lg-4 {
        text-align: left !important;
        margin-top: 1rem;
    }

    /* Page section padding tighter on small screens */
    .wl-page-section {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    /* Why/feature cards: tighten internal padding */
    .wl-why-card,
    .wl-feature-card {
        padding: 1.2rem;
    }
}

/* Trust band: 3-per-row at xs avoids orphaned 5th item */
@media (max-width: 479px) {
    .wl-trust-item {
        width: 33.333%;
        font-size: 0.72rem;
        padding: 0.4rem 0.3rem;
    }

    .wl-trust-item i {
        font-size: 0.9rem;
    }
}

/* Footer: single column on very small screens */
@media (max-width: 575px) {
    .footer .col-md-6 {
        margin-bottom: 1.5rem;
    }

    .wl-form-card,
    .wl-contact-info-card {
        border-radius: 12px;
    }
}

/* Trust Band */
.wl-trust-band {
    background: #fff;
    border-top: 1px solid #e8f0f8;
    border-bottom: 1px solid #e8f0f8;
    padding: 1.1rem 0;
}

.wl-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.wl-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #4a5d75;
}

.wl-trust-item i {
    color: var(--brand-mid);
    font-size: 1rem;
}

.wl-trust-sep {
    width: 1px;
    height: 20px;
    background: #dce8f3;
}

/* Why WiseLead Section */
.wl-why-section {
    background: linear-gradient(180deg, #f8fbff 0%, #f1f5fc 100%);
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.wl-why-card {
    background: #fff;
    border: 1px solid #e3ebf5;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 45, 94, 0.06);
    transition: all 0.28s ease;
    height: 100%;
}

.wl-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 45, 94, 0.11);
}

.wl-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.wl-why-card h3 {
    margin-bottom: 0.5rem;
}

.wl-why-card p {
    color: #4a5d75;
    margin-bottom: 0;
    font-size: 0.93rem;
    line-height: 1.6;
}

/* Values cards */
.wl-value-card {
    background: #fff;
    border: 1px solid #e3ebf5;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 45, 94, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    height: 100%;
}

.wl-value-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(28, 101, 175, 0.18);
    font-family: var(--font-family-heading);
    line-height: 1;
    margin-bottom: 0.3rem;
}

/* Hero */
.hero { position: relative; min-height: 50vh; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%); }
.min-vh-50 { min-height: 50vh; }

/* Cards */
.product-card, .pricing-card, .feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.product-card .icon-wrapper {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,102,204,0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer { margin-top: auto; }
.footer a { transition: color 0.3s ease; }
.footer a:hover { color: var(--brand-aqua) !important; }

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.92rem;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social:hover {
    background: rgba(125, 211, 252, 0.15);
    border-color: rgba(125, 211, 252, 0.35);
    color: var(--brand-aqua) !important;
    transform: translateY(-2px);
}

/* Forms */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.25);
}

/* Blazor Form Validation - Hide validation until user interaction */
.valid.modified:not([type=checkbox]),
.invalid {
    outline: none !important;
}

.validation-message {
    display: none;
}

.modified.invalid .validation-message,
.modified.valid .validation-message {
    display: block;
}

/* Bootstrap validation override - only show after modification */
.form-control:invalid,
.form-select:invalid {
    border-color: #ced4da !important;
    background-image: none !important;
}

.form-control.modified:invalid,
.form-select.modified:invalid {
    border-color: #dc3545 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(0.375em + 0.1875rem) center !important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
    padding-right: calc(1.5em + 0.75rem) !important;
}

.form-control.modified:valid,
.form-select.modified:valid {
    border-color: #1c65af !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231c65af' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(0.375em + 0.1875rem) center !important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
    padding-right: calc(1.5em + 0.75rem) !important;
}

.text-success {
    color: #1c65af !important;
}

/* Blazor Error UI */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
