/* ==========================================
   FirmWare Landing Page — professional redesign
   ========================================== */

/* Landing-page palette, SCOPED to .home-container on purpose.
   This file is <link>ed from Home.razor, so it loads AFTER app.css — a :root block here
   redefined the app's canonical --fw-ink (#0f172a -> #0f2233) and --fw-border
   (#e2e8f0 -> #e6ecf2) for the WHOLE SPA from the moment anyone visited "/". The local names
   below are kept because this file uses them throughout, but they now alias the style guide's
   tokens instead of competing with them.

   --fw-ink and --fw-border are deliberately NOT redefined here: they exist canonically in
   app.css and now simply inherit, so the landing page and the app agree on them. */
.home-container {
    --fw-dark-blue: var(--fw-brand-deep, #004777);
    --fw-teal: var(--fw-brand, #00afb5);
    --fw-teal-light: #33c9cf;
    --fw-navy: #012238;
    --fw-slate: var(--fw-ink-mid, #475569);
    --fw-muted: var(--fw-ink-soft, #64748b);
    --fw-bg: #f6f9fb;
}

.home-container {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: var(--fw-ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.home-container .text-primary,
.home-container span.text-primary { color: var(--fw-teal) !important; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.905rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fw-teal);
    margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--fw-teal-light); }

/* ==========================================
   Hero
   ========================================== */
.hero-section {
    position: relative;
    padding: 88px 40px 96px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 85% -10%, rgba(0, 175, 181, 0.22) 0%, transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(0, 175, 181, 0.12) 0%, transparent 55%),
        linear-gradient(160deg, #013a5e 0%, #012238 55%, #011a2b 100%);
}
/* faint grid texture */
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 75%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--fw-teal) 50%, transparent);
}

.hero-content {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
    width: 100%;
}
/* Wide enough to hold "Everything it takes" and "to run your law firm." on one line each —
   the headline reads as two deliberate lines in the design, not four ragged ones. */
.hero-text { flex: 1 1 600px; min-width: 0; }

/* Plain uppercase label, not a pill — it reads as a category line above the headline
   rather than competing with it. */
.hero-eyebrow {
    display: block;
    color: var(--fw-teal);
    font-size: 1.0rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: 3.35rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.022em;
    margin: 0 0 22px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.185rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
}

.hero-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.hero-checks li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.115rem;
    font-weight: 400;
}
/* The lead verb carries the scan — "Manage", "Track", "Accept" — with the rest as detail. */
.hero-checks li b { font-weight: 700; color: #fff; }
.hero-checks i {
    flex: 0 0 auto;
    color: var(--fw-teal);
    font-size: 1.6rem;
    line-height: 1;
}

/* Signup card, the hero's right column. Capped so the fields stay a comfortable
   reading/target width. */
.hero-signup {
    max-width: 540px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 32px 26px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}
.hero-signup-head {
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--fw-border);
}
.hero-signup-head h2 {
    margin: 0;
    font-size: 2.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--fw-ink);
}
.hero-signup-head p {
    margin: 6px 0 0;
    font-size: 1.06rem;
    color: var(--fw-muted);
}

/* Right column: the signup card is the hero's visual anchor. The column tracks the card's
   own 460px cap so the fields keep a comfortable reading/target width. */
.hero-signup-col {
    flex: 0 1 540px;
    min-width: 0;
    align-self: center;
}
.hero-signup-col .hero-signup { width: 100%; }
/* ==========================================
   Value band — free / all-in-one / no contract, plus the trust row
   ========================================== */
.value-band {
    background: linear-gradient(180deg, #011a2b 0%, #01243a 100%);
    padding: 58px 40px 34px;
}
.value-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.value-item { display: flex; align-items: flex-start; gap: 20px; }
.value-item + .value-item { border-left: 1px solid rgba(255,255,255,0.10); padding-left: 40px; }

/* Thin circular outline, matching the reference's icon language */
.value-icon {
    flex: 0 0 auto;
    width: 74px; height: 74px;
    border: 2px solid var(--fw-teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--fw-teal);
    font-size: 2rem;
}
.value-item h3 {
    margin: 0 0 4px;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
}
.value-sub { margin: 0 0 8px; font-size: 0.985rem; font-weight: 700; color: var(--fw-teal); line-height: 1.4; }
.value-body { margin: 0; font-size: 1.02rem; color: rgba(255,255,255,0.74); line-height: 1.5; }

.trust-bar {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex; flex-wrap: wrap; justify-content: space-around; gap: 18px 28px;
}
.trust-bar span {
    display: inline-flex; align-items: center; gap: 11px;
    color: rgba(255,255,255,0.88);
    font-size: 1.06rem;
}
.trust-bar i { color: var(--fw-teal); font-size: 1.35rem; }

/* ==========================================
   Capability strip
   ========================================== */
.strip-section {
    background: #fff;
    padding: 34px 40px;
    border-bottom: 1px solid var(--fw-border);
    text-align: center;
}
.strip-label {
    font-size: 0.945rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fw-muted);
    margin: 0 0 18px;
}
.strip-chips {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    max-width: 1000px; margin: 0 auto;
}
.strip-chips span {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--fw-bg);
    border: 1px solid var(--fw-border);
    color: var(--fw-slate);
    font-size: 1.025rem;
    font-weight: 600;
}
.strip-chips i { color: var(--fw-teal); }

/* ==========================================
   Section headers
   ========================================== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-header h2 { font-size: 2.375rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px; color: var(--fw-ink); }
.section-header p { font-size: 1.205rem; color: var(--fw-muted); margin: 0; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.78); }

/* ==========================================
   Problem / agitation
   ========================================== */
.problem-section { padding: 84px 40px; background: var(--fw-bg); }
.problem-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1120px; margin: 0 auto;
}
.problem-card {
    background: #fff;
    border: 1px solid var(--fw-border);
    border-radius: 16px;
    padding: 28px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(2, 34, 56, 0.10); }
/* Circular outline like the rest of the page, but in the style guide's WARNING palette rather
   than brand teal — these three are the "what goes wrong" cards, and reading them as alarm is
   the point. The previous #e0603a / #fdece6 pair was a one-off orange belonging to no palette. */
.problem-card i {
    font-size: 26px;
    color: var(--fw-warn-ink, #92400e);
    border: 2px solid var(--fw-warn-border, #fde68a);
    background: var(--fw-warn-bg, #fffbeb);
    width: 54px; height: 54px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.problem-card h4 { font-size: 1.245rem; font-weight: 700; margin: 0 0 8px; color: var(--fw-ink); }
.problem-card p { font-size: 1.075rem; color: var(--fw-muted); margin: 0; }

/* ==========================================
   Product demo (matter details scroll video)
   ========================================== */
.demo-section { padding: 84px 40px; background: #fff; }
.demo-frame {
    max-width: 900px; margin: 0 auto;
    background: #fff;
    border: 1px solid var(--fw-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(2, 34, 56, 0.14);
}
.demo-frame-bar {
    display: flex; gap: 7px; align-items: center;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--fw-border);
}
.demo-frame-bar span {
    width: 11px; height: 11px; border-radius: 50%;
    background: #d3dce4;
}
.demo-frame img,
.demo-frame video { display: block; width: 100%; height: auto; background: #fff; }

/* ==========================================
   Features
   ========================================== */
.features-section { padding: 90px 40px; background: #fff; }
.feature-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    max-width: 1200px; margin: 0 auto;
}
.home-container .feature-card {
    background: #fff !important;
    border-radius: 16px !important;
    border: 1px solid var(--fw-border) !important;
    padding: 1.6rem 1.4rem !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    box-shadow: none !important;
}
.home-container .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 71, 119, 0.14) !important;
    border-color: rgba(0, 175, 181, 0.55) !important;
}
/* Thin circular teal outline — the same icon language as the value band, so the page reads
   as one system rather than a gradient-tile section next to an outline section. */
.home-container .feature-icon {
    width: 54px; height: 54px;
    background: transparent !important;
    border: 2px solid var(--fw-teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease;
}
.home-container .feature-icon i { font-size: 24px; color: var(--fw-teal) !important; }
.home-container .feature-card:hover .feature-icon { background: var(--fw-teal) !important; }
.home-container .feature-card:hover .feature-icon i { color: #fff !important; }
.home-container .feature-card h3 { font-size: 1.225rem !important; font-weight: 700 !important; margin: 0 0 8px !important; color: var(--fw-ink) !important; }
.home-container .feature-card p { color: var(--fw-muted) !important; font-size: 1.045rem !important; line-height: 1.6 !important; margin: 0 !important; }

/* ==========================================
   Outcomes band
   ========================================== */
.outcomes-section {
    padding: 76px 40px;
    background:
        radial-gradient(900px 400px at 80% 0%, rgba(0,175,181,0.18) 0%, transparent 60%),
        linear-gradient(135deg, var(--fw-dark-blue) 0%, #013050 100%);
}
.outcomes-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.outcomes-content h2 { font-size: 2.275rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin: 0 0 12px; }
.outcomes-content > p { font-size: 1.205rem; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto 44px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.outcome-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 26px 18px;
}
.outcome-icon { display: block; font-size: 2.125rem; color: var(--fw-teal-light); line-height: 1; }
.outcome-title { display: block; margin-top: 16px; font-size: 1.205rem; font-weight: 700; color: var(--fw-teal-light); }
.outcome-body { display: block; margin-top: 8px; font-size: 1.025rem; color: rgba(255,255,255,0.85); }

/* ==========================================
   Benefits + product preview
   ========================================== */
.benefits-section { padding: 92px 40px; background: var(--fw-bg); }
.benefits-content { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 64px; }
.benefits-text { flex: 1; }
.benefits-text h2 { font-size: 2.275rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 30px; color: var(--fw-ink); }
.benefit-list { display: flex; flex-direction: column; gap: 24px; }
.benefit-item { display: flex; gap: 18px; align-items: flex-start; }
/* Circled to match the value band and the feature cards. */
.benefit-item > i {
    flex: 0 0 auto;
    width: 46px; height: 46px;
    border: 2px solid var(--fw-teal);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.benefit-item h4 { font-size: 1.175rem; font-weight: 700; margin: 0 0 4px; color: var(--fw-ink); }
.benefit-item p { font-size: 1.075rem; margin: 0; color: var(--fw-muted); }
.benefits-visual { flex: 1; display: flex; justify-content: center; }

/* Product preview mockup */
.home-container .dashboard-preview {
    width: 100%; max-width: 480px;
    border-radius: 16px !important;
    box-shadow: 0 30px 60px rgba(1, 34, 56, 0.28) !important;
    overflow: hidden !important;
    background: #fff !important;
    border: 1px solid var(--fw-border) !important;
}
.preview-topbar {
    background: var(--fw-navy);
    padding: 11px 14px;
    display: flex; align-items: center; gap: 7px;
}
.preview-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.32); }
.preview-url {
    margin-left: 10px; font-size: 0.845rem; color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08); padding: 3px 12px; border-radius: 999px;
}
.preview-body { display: flex; min-height: 290px; background: #eef3f7; }
.preview-sidebar {
    width: 58px; background: var(--fw-navy);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 14px 0;
}
.preview-logo {
    width: 30px; height: 30px; border-radius: 8px;
    background: linear-gradient(135deg, var(--fw-dark-blue), var(--fw-teal));
    color: #fff; font-size: 0.825rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
}
.preview-nav { width: 26px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.16); }
.preview-nav.active { background: var(--fw-teal); width: 30px; }
.preview-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.preview-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.preview-kpi {
    background: #fff; border: 1px solid var(--fw-border); border-radius: 10px;
    padding: 10px 12px; display: flex; flex-direction: column; gap: 3px;
}
.preview-kpi .k-val { font-size: 1.175rem; font-weight: 800; color: var(--fw-dark-blue); }
.preview-kpi .k-lbl { font-size: 0.725rem; color: var(--fw-muted); text-transform: uppercase; letter-spacing: 0.03em; }
.preview-panel { background: #fff; border: 1px solid var(--fw-border); border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.preview-panel-head { height: 9px; width: 40%; border-radius: 5px; background: var(--fw-dark-blue); opacity: 0.85; }
.preview-row { height: 8px; border-radius: 5px; background: #e2e9f0; }
.preview-row.short { width: 62%; }
.preview-chart { display: flex; align-items: flex-end; gap: 8px; height: 60px; padding: 0 4px; }
.preview-chart span {
    flex: 1; border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--fw-teal), var(--fw-dark-blue));
}

/* ==========================================
   Testimonial
   ========================================== */
.testimonial-section { padding: 84px 40px; background: #fff; }
.testimonial-card {
    max-width: 820px; margin: 0 auto; text-align: center; position: relative;
    background: var(--fw-bg);
    border: 1px solid var(--fw-border);
    border-radius: 22px;
    padding: 48px 44px;
}
.testimonial-quote { font-size: 2.725rem; color: var(--fw-teal); opacity: 0.5; }
.testimonial-text { font-size: 1.475rem; line-height: 1.6; font-weight: 500; color: var(--fw-ink); margin: 6px 0 26px; letter-spacing: -0.01em; }
.testimonial-author { display: inline-flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--fw-dark-blue), var(--fw-teal));
    color: #fff; font-weight: 700; font-size: 1.075rem;
    display: flex; align-items: center; justify-content: center;
}
.testimonial-author > div { text-align: left; display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; color: var(--fw-ink); font-size: 1.075rem; }
.testimonial-firm { font-size: 0.975rem; color: var(--fw-muted); }

/* ==========================================
   Pricing
   ========================================== */
.pricing-section {
    padding: 90px 40px;
    background:
        radial-gradient(800px 400px at 15% 0%, rgba(0,175,181,0.16) 0%, transparent 55%),
        linear-gradient(135deg, var(--fw-navy) 0%, #012a45 100%);
}
.pricing-content { max-width: 1000px; margin: 0 auto 34px; }
.pricing-cta { text-align: center; }
.cta-text { color: rgba(255,255,255,0.82); margin-bottom: 18px; font-size: 1.145rem; }
.cta-text i { color: var(--fw-teal-light); margin-right: 4px; }
.pricing-cta .e-btn.e-primary,
.pricing-cta .e-btn.e-large {
    padding: 15px 36px !important;
    font-size: 1.145rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    background: var(--fw-teal) !important;
    border-color: var(--fw-teal) !important;
    box-shadow: 0 12px 26px rgba(0, 175, 181, 0.35) !important;
}
.pricing-cta .e-btn.e-primary:hover { background: var(--fw-teal-light) !important; border-color: var(--fw-teal-light) !important; transform: translateY(-1px); }

/* ==========================================
   Final CTA
   ========================================== */
.cta-section { padding: 92px 40px; background: #fff; }
.cta-content { max-width: 560px; margin: 0 auto; text-align: center; }
.cta-content h2 { font-size: 2.375rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px; color: var(--fw-ink); }
.cta-content > p { font-size: 1.175rem; margin-bottom: 30px; color: var(--fw-muted); }
.home-container .cta-form-card {
    border-radius: 16px !important;
    border: 1px solid var(--fw-border) !important;
    box-shadow: 0 16px 40px rgba(1, 34, 56, 0.12) !important;
    background: #fff !important;
    text-align: left;
}
.home-container .cta-form-card .card-body { padding: 2rem !important; background: #fff !important; }

/* ==========================================
   Embedded CreateAccountForm

   The form styles itself (signupCard.css). This used to be a wall of `!important`
   overrides re-skinning every Syncfusion input the form rendered; all that is gone.
   ========================================== */
.hero-signup .fw-signup,
.cta-form-card .fw-signup { width: 100%; }

/* ==========================================
   Responsive
   ========================================== */
@media screen and (max-width: 1240px) {
    .hero-text h1 { font-size: 3.2rem; }
    .value-grid { gap: 26px; }
    .value-item + .value-item { padding-left: 26px; }
    .value-icon { width: 62px; height: 62px; font-size: 1.65rem; }
    .value-item h3 { font-size: 1.35rem; }
}

@media screen and (max-width: 1080px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-eyebrow { margin-left: auto; margin-right: auto; }
    .hero-text h1 { font-size: 2.625rem; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    /* Bullets stay left-aligned as a block but the block centres — centring the TEXT breaks
       the vertical line the check icons form. */
    .hero-checks { align-items: flex-start; width: fit-content; margin-left: auto; margin-right: auto; text-align: left; }
    .hero-signup { margin-left: auto; margin-right: auto; text-align: left; }
    .hero-signup-col { width: 100%; max-width: 540px; margin: 40px auto 0; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-content { flex-direction: column; }
    .benefits-visual { order: -1; }
    .problem-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; gap: 30px; }
    .value-item + .value-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.10); padding-top: 30px; }
}

@media screen and (max-width: 768px) {
    .hero-section { padding: 52px 20px 44px; }
    .hero-text h1 { font-size: 2.125rem; }
    .hero-checks li { font-size: 1.02rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: 1fr 1fr; }
    .value-band { padding: 44px 20px 28px; }
    .trust-bar { justify-content: flex-start; gap: 14px 22px; }
    .trust-bar span { font-size: 0.985rem; }
    .strip-section, .problem-section, .demo-section, .features-section, .outcomes-section,
    .benefits-section, .testimonial-section, .pricing-section, .cta-section { padding-left: 20px; padding-right: 20px; }
    .problem-section, .demo-section, .features-section, .outcomes-section, .benefits-section,
    .testimonial-section, .pricing-section, .cta-section { padding-top: 56px; padding-bottom: 56px; }
    .section-header h2, .benefits-text h2, .outcomes-content h2, .cta-content h2 { font-size: 1.825rem; }
    .testimonial-text { font-size: 1.225rem; }
    .testimonial-card { padding: 34px 24px; }
    .dashboard-preview { max-width: 100%; }
}

/* Legacy compatibility */
.home-firm-name { color: var(--fw-teal); }
.start-now-btn {
    background: var(--fw-teal); color: #fff; border: none; border-radius: 8px;
    cursor: pointer; font-weight: 600; padding: 12px 24px; font-size: 1.125rem; transition: background 0.2s ease;
}
.start-now-btn:hover { background: var(--fw-dark-blue); }
.home-form-validation { margin-top: 8px; color: #dc3545; font-size: 1rem; }
