/* ============================================================
   WinWin Estimator — Public Website Styles
   Bootstrap 5 companion. Isolated from AdminLTE tenant app.
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
    --we-navy:        #1a3566;
    --we-navy-dark:   #0f2244;
    --we-navy-light:  #253f7a;
    --we-blue:        #2563eb;
    --we-orange:      #ea580c;
    --we-orange-light:#fff7ed;
    --we-dark:        #0f172a;
    --we-gray:        #64748b;
    --we-gray-light:  #f8fafc;
    --we-border:      #e2e8f0;
    --we-success:     #16a34a;
    --we-white:       #ffffff;
    --we-radius:      0.75rem;
    --we-shadow:      0 4px 24px rgba(26,53,102,0.10);
    --we-shadow-lg:   0 8px 48px rgba(26,53,102,0.16);
    --navbar-h:       72px;
}

/* ── Base ───────────────────────────────────────────────────── */
body.we-public {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    background: #ffffff;
}

/* ── Utilities ──────────────────────────────────────────────── */
.we-navy       { color: var(--we-navy) !important; }
.we-orange     { color: var(--we-orange) !important; }
.bg-we-navy    { background-color: var(--we-navy) !important; }
.bg-we-dark    { background-color: var(--we-dark) !important; }
.bg-we-orange  { background-color: var(--we-orange) !important; }
.bg-we-light   { background-color: var(--we-gray-light) !important; }
.btn-we-primary {
    background-color: var(--we-orange);
    border-color:     var(--we-orange);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-we-primary:hover, .btn-we-primary:focus {
    background-color: #c2410c;
    border-color: #c2410c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(234,88,12,0.30);
}
.btn-we-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 0.5rem;
    background: transparent;
    transition: all 0.2s;
}
.btn-we-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}
.btn-we-navy {
    background-color: var(--we-navy);
    border-color:     var(--we-navy);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}
.btn-we-navy:hover {
    background-color: var(--we-navy-dark);
    border-color: var(--we-navy-dark);
    color: #fff;
}
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--we-orange);
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--we-navy);
}
.section-title.light { color: #fff; }
.section-lead {
    font-size: 1.1rem;
    color: var(--we-gray);
    max-width: 600px;
    margin: 0 auto;
}
.we-divider {
    width: 56px;
    height: 4px;
    background: var(--we-orange);
    border-radius: 4px;
    margin: 1rem auto 1.5rem;
}
.we-divider.left { margin-left: 0; }

/* ── Navbar ─────────────────────────────────────────────────── */
.we-navbar {
    height: var(--navbar-h);
    transition: background 0.3s, box-shadow 0.3s;
    background: transparent;
    padding: 0 1rem;
}
.we-navbar.scrolled {
    background: var(--we-navy) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.we-navbar .navbar-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff !important;
}
.we-navbar .navbar-brand span.accent { color: var(--we-orange); }
.we-navbar .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    padding: 0.4rem 0.9rem !important;
    border-radius: 0.35rem;
    transition: color 0.15s, background 0.15s;
}
.we-navbar .nav-link:hover,
.we-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.10);
}
.we-navbar .navbar-toggler { border-color: rgba(255,255,255,0.4); }
.we-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.we-navbar .btn-login {
    color: rgba(255,255,255,0.88) !important;
    border: 1.5px solid rgba(255,255,255,0.45);
    border-radius: 0.45rem;
    padding: 0.35rem 1rem !important;
    font-weight: 500;
    transition: all 0.2s;
}
.we-navbar .btn-login:hover { border-color: #fff; color: #fff !important; background: rgba(255,255,255,0.08); }
/* Solid navbar for inner pages */
.we-navbar.we-navbar-solid {
    background: var(--we-navy) !important;
}
@media (max-width: 991px) {
    .we-navbar {
        background: var(--we-navy) !important;
    }
    .we-navbar .navbar-collapse {
        background: var(--we-navy-dark);
        border-radius: 0.75rem;
        padding: 1rem;
        margin-top: 0.5rem;
    }
}

/* ── Hero ───────────────────────────────────────────────────── */
.we-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--we-navy-dark) 0%, var(--we-navy) 50%, var(--we-navy-light) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--navbar-h);
}
.we-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.we-hero-badge {
    display: inline-block;
    background: rgba(234,88,12,0.15);
    border: 1px solid rgba(234,88,12,0.35);
    color: #fb923c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}
.we-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.we-hero h1 em { font-style: normal; color: var(--we-orange); }
.we-hero .lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.80);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.we-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.we-hero-stat .num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}
.we-hero-stat .lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.60);
    margin-top: 0.2rem;
    display: block;
}

/* ── App Screenshot Mock ──────────────────────────────────────── */
.we-browser-mock {
    background: #1e293b;
    border-radius: 1rem;
    box-shadow: var(--we-shadow-lg);
    overflow: hidden;
}
.we-browser-bar {
    background: #2d3748;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.we-browser-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.we-browser-dot:nth-child(1) { background: #ef4444; }
.we-browser-dot:nth-child(2) { background: #f59e0b; }
.we-browser-dot:nth-child(3) { background: #22c55e; }
.we-browser-url {
    flex: 1;
    background: #1a202c;
    color: #94a3b8;
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}
.we-screen-content {
    background: #f8fafc;
    padding: 1.25rem;
    min-height: 280px;
}
.we-screen-sidebar {
    background: var(--we-navy);
    padding: 0.75rem;
    height: 100%;
    min-height: 300px;
    border-radius: 0 0 0 0.5rem;
}
.we-sidebar-item {
    background: rgba(255,255,255,0.08);
    border-radius: 0.35rem;
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.3rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.70);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.we-sidebar-item.active { background: var(--we-orange); color: #fff; }
.we-mock-table { width: 100%; border-collapse: collapse; }
.we-mock-table th {
    background: var(--we-navy);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.4rem 0.6rem;
    text-align: left;
    font-weight: 600;
}
.we-mock-table td {
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}
.we-mock-table tr:nth-child(even) td { background: #f8fafc; }
.we-mock-badge {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 2rem;
    font-size: 0.6rem;
    font-weight: 600;
}
.we-mock-badge.green  { background: #dcfce7; color: #15803d; }
.we-mock-badge.orange { background: #fff7ed; color: #c2410c; }

/* ── Section generic ───────────────────────────────────────── */
.we-section { padding: 5rem 0; }
.we-section-sm { padding: 3.5rem 0; }

/* ── Trust Bar ─────────────────────────────────────────────── */
.we-trust {
    background: var(--we-gray-light);
    border-top: 1px solid var(--we-border);
    border-bottom: 1px solid var(--we-border);
    padding: 2.5rem 0;
}
.we-trust-stat { text-align: center; }
.we-trust-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--we-navy);
    display: block;
    line-height: 1;
}
.we-trust-stat .lbl {
    font-size: 0.82rem;
    color: var(--we-gray);
    margin-top: 0.25rem;
}
.we-trust-divider {
    width: 1px;
    background: var(--we-border);
    height: 3rem;
    margin: 0 auto;
}

/* ── Feature Cards ──────────────────────────────────────────── */
.we-feature-card {
    background: #fff;
    border: 1px solid var(--we-border);
    border-radius: var(--we-radius);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.we-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--we-navy), var(--we-blue));
    opacity: 0;
    transition: opacity 0.2s;
}
.we-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--we-shadow-lg);
    border-color: rgba(37,99,235,0.20);
}
.we-feature-card:hover::before { opacity: 1; }
.we-feature-icon {
    width: 52px; height: 52px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.we-feature-icon.primary   { background: #dbeafe; color: #1d4ed8; }
.we-feature-icon.success   { background: #dcfce7; color: #15803d; }
.we-feature-icon.warning   { background: #fef3c7; color: #b45309; }
.we-feature-icon.danger    { background: #fee2e2; color: #b91c1c; }
.we-feature-icon.info      { background: #cffafe; color: #0e7490; }
.we-feature-icon.secondary { background: #f1f5f9; color: #475569; }
.we-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--we-navy);
    margin-bottom: 0.6rem;
}
.we-feature-card p { color: var(--we-gray); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.we-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--we-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: gap 0.15s;
}
.we-feature-link:hover { gap: 0.6rem; color: var(--we-navy); }

/* ── Workflow Steps ─────────────────────────────────────────── */
.we-workflow { position: relative; }
.we-workflow-steps { display: flex; gap: 0; position: relative; }
.we-workflow-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, var(--we-border) 0%, var(--we-orange) 50%, var(--we-border) 100%);
}
.we-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}
.we-step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--we-navy);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    transition: background 0.2s, transform 0.2s;
}
.we-step:hover .we-step-num { background: var(--we-orange); transform: scale(1.1); }
.we-step h5 { font-size: 1rem; font-weight: 700; color: var(--we-navy); margin-bottom: 0.5rem; }
.we-step p  { font-size: 0.875rem; color: var(--we-gray); line-height: 1.6; }
@media (max-width: 767px) {
    .we-workflow-steps { flex-direction: column; gap: 2rem; }
    .we-workflow-steps::before { display: none; }
}

/* ── Screenshots / Tabs ─────────────────────────────────────── */
.we-screenshots { background: var(--we-dark); }
.we-tab-pills .nav-link {
    color: rgba(255,255,255,0.60);
    border-radius: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.we-tab-pills .nav-link:hover  { color: #fff; background: rgba(255,255,255,0.08); }
.we-tab-pills .nav-link.active { color: #fff; background: var(--we-orange); }
.we-screenshot-frame {
    background: #1e293b;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 64px rgba(0,0,0,0.50);
}

/* ── Benefits ───────────────────────────────────────────────── */
.we-benefit-list { list-style: none; padding: 0; margin: 0; }
.we-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}
.we-benefit-list li .icon {
    width: 22px; height: 22px; min-width: 22px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 0.1rem;
}
.we-benefit-visual {
    background: linear-gradient(135deg, var(--we-navy) 0%, var(--we-navy-light) 100%);
    border-radius: var(--we-radius);
    padding: 2.5rem;
    color: #fff;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ── Pricing Cards ──────────────────────────────────────────── */
.we-plan-card {
    background: #fff;
    border: 1.5px solid var(--we-border);
    border-radius: var(--we-radius);
    padding: 2.25rem 2rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.we-plan-card.popular {
    border-color: var(--we-orange);
    transform: scale(1.03);
    box-shadow: 0 8px 48px rgba(234,88,12,0.18);
}
.we-plan-card:hover { transform: translateY(-4px); box-shadow: var(--we-shadow-lg); }
.we-plan-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.we-plan-badge {
    display: inline-block;
    background: var(--we-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}
.we-plan-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--we-navy); vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.we-plan-price .amount   { font-size: 3rem; font-weight: 900; color: var(--we-navy); line-height: 1; }
.we-plan-price .period   { font-size: 0.875rem; color: var(--we-gray); }
.we-plan-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #334155;
    padding: 0.3rem 0;
}
.we-plan-feature .icon-yes { color: #16a34a; }
.we-plan-feature .icon-no  { color: #cbd5e1; }
.we-plan-divider { border-color: var(--we-border); margin: 1.25rem 0; }

/* ── Testimonials ───────────────────────────────────────────── */
.we-testimonials { background: var(--we-navy); }
.we-testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--we-radius);
    padding: 2rem;
    height: 100%;
}
.we-testimonial-card .stars { color: #fbbf24; margin-bottom: 0.75rem; }
.we-testimonial-card blockquote { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0 0 1.25rem 0; font-style: italic; }
.we-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.we-testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--we-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.we-testimonial-name   { font-weight: 700; font-size: 0.9rem; color: #fff; }
.we-testimonial-title  { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.we-accordion .accordion-button {
    font-weight: 600;
    color: var(--we-navy);
    font-size: 0.95rem;
    background: #fff;
    box-shadow: none;
}
.we-accordion .accordion-button:not(.collapsed) {
    color: var(--we-orange);
    background: var(--we-orange-light);
    box-shadow: none;
}
.we-accordion .accordion-button::after {
    filter: none;
}
.we-accordion .accordion-item {
    border: 1px solid var(--we-border);
    border-radius: 0.6rem !important;
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.we-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--we-gray);
    line-height: 1.7;
    background: #fff;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.we-cta {
    background: linear-gradient(135deg, var(--we-orange) 0%, #c2410c 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.we-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-5h-5v-5h5v-2.5zM15 45V40h5v5h-5zm5 0V40h5v5h-5z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.we-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 0.75rem; }
.we-cta .sub { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.we-footer {
    background: var(--we-dark);
    padding: 4rem 0 1.5rem;
    color: rgba(255,255,255,0.65);
}
.we-footer .footer-brand { font-size: 1.3rem; font-weight: 800; color: #fff; }
.we-footer .footer-brand span { color: var(--we-orange); }
.we-footer .footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }
.we-footer h6 { color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.we-footer ul { list-style: none; padding: 0; margin: 0; }
.we-footer ul li { margin-bottom: 0.55rem; }
.we-footer ul li a { color: rgba(255,255,255,0.55); font-size: 0.875rem; text-decoration: none; transition: color 0.15s; }
.we-footer ul li a:hover { color: #fff; }
.we-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.we-footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.we-footer-bottom a:hover { color: rgba(255,255,255,0.80); }
.we-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.we-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.we-social a:hover { background: var(--we-orange); color: #fff; }

/* ── Inner Page Hero ─────────────────────────────────────────── */
.we-page-hero {
    background: linear-gradient(135deg, var(--we-navy-dark) 0%, var(--we-navy) 100%);
    padding: calc(var(--navbar-h) + 4rem) 0 4rem;
    text-align: center;
    color: #fff;
}
.we-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; }
.we-page-hero .lead { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ── Blog ────────────────────────────────────────────────────── */
.we-blog-card {
    background: #fff;
    border: 1px solid var(--we-border);
    border-radius: var(--we-radius);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}
.we-blog-card:hover { transform: translateY(-4px); box-shadow: var(--we-shadow-lg); text-decoration: none; color: inherit; }
.we-blog-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--we-navy) 0%, var(--we-navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.4);
}
.we-blog-body { padding: 1.5rem; }
.we-blog-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--we-orange);
    margin-bottom: 0.5rem;
}
.we-blog-title { font-size: 1rem; font-weight: 700; color: var(--we-navy); line-height: 1.4; margin-bottom: 0.5rem; }
.we-blog-excerpt { font-size: 0.85rem; color: var(--we-gray); line-height: 1.65; }
.we-blog-meta { font-size: 0.75rem; color: var(--we-gray); margin-top: 1rem; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.we-breadcrumb { background: transparent; padding: 0; margin: 0; }
.we-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.we-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.we-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.we-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.40); }

/* ── Contact Page ────────────────────────────────────────────── */
.we-contact-card {
    background: #fff;
    border: 1px solid var(--we-border);
    border-radius: var(--we-radius);
    padding: 2rem;
    height: 50%;
}
.we-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.we-contact-info-item .icon {
    width: 44px; height: 44px; min-width: 44px;
    background: #dbeafe;
    color: var(--we-blue);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ── About Page ─────────────────────────────────────────────── */
.we-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--we-radius);
    background: #fff;
    border: 1px solid var(--we-border);
    height: 100%;
    transition: box-shadow 0.2s;
}
.we-value-card:hover { box-shadow: var(--we-shadow); }
.we-value-icon {
    width: 60px; height: 60px;
    border-radius: 1rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* ── Scroll animations ───────────────────────────────────────── */
[data-we-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-we-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-we-reveal-delay="1"] { transition-delay: 0.1s; }
[data-we-reveal-delay="2"] { transition-delay: 0.2s; }
[data-we-reveal-delay="3"] { transition-delay: 0.3s; }
[data-we-reveal-delay="4"] { transition-delay: 0.4s; }
[data-we-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── Form Styles ─────────────────────────────────────────────── */
.we-form .form-control, .we-form .form-select {
    border-radius: 0.5rem;
    border: 1.5px solid var(--we-border);
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    color: #1e293b;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.we-form .form-control:focus, .we-form .form-select:focus {
    border-color: var(--we-blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.we-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

/* ── Register/Waitlist ───────────────────────────────────────── */
.we-register-card {
    background: #fff;
    border: 1px solid var(--we-border);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--we-shadow-lg);
    max-width: 520px;
    width: 100%;
}

/* ── Misc ────────────────────────────────────────────────────── */
.fw-900 { font-weight: 900 !important; }
.text-balance { text-wrap: balance; }
.we-badge-pill {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ── Responsive tweaks ───────────────────────────────────────── */
@media (max-width: 575px) {
    .we-section { padding: 3.5rem 0; }
    .we-hero  { min-height: auto; padding: calc(var(--navbar-h) + 3rem) 0 3rem; }
    .we-plan-card.popular { transform: none; }
    .we-plan-card.popular:hover { transform: translateY(-4px); }
    .we-hero-stats { gap: 1.25rem; }
}
