/* ============================================================
   SecureTech Solutions — Landing Page
   Design direction: calm, typographic, authoritative.
   No orbs, no floating cards, no fake code blocks.
   The work speaks. The page gets out of the way.
   ============================================================ */

:root {
    --ink: #111827; /* near-black for headings */
    --body: #374151; /* comfortable reading grey */
    --quiet: #6B7280; /* captions, labels */
    --rule: #E5E7EB; /* dividers */
    --surface: #F9FAFB; /* off-white panels */
    --gold: #B8860B; /* dark goldenrod — restrained, not flashy */
    --gold-lt: #D4A017;
    --navy: #1B2B4B;
    --chalk: #FFFFFF;
    --max: 1100px;
    --gap: clamp(48px, 8vw, 96px);
}

/* ── Base resets for landing sections ────────────────────── */
.lp-section {
    padding: var(--gap) 24px;
}

.lp-inner {
    max-width: var(--max);
    margin-inline: auto;
}

.lp-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 28px;
}

.lp-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

/* ============================================================
   HERO — full-height, white, typographic
   ============================================================ */
.lp-hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 64px;
    background: var(--chalk);
    border-bottom: 1px solid var(--rule);
}

.lp-hero__inner {
    max-width: var(--max);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: all text */
.lp-hero__kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

    .lp-hero__kicker::before {
        content: '';
        display: block;
        width: 32px;
        height: 2px;
        background: var(--gold);
        flex-shrink: 0;
    }

.lp-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: -.01em;
}

.lp-hero__body {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--body);
    margin-bottom: 44px;
    max-width: 460px;
}

.lp-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Right: credentials panel */
.lp-hero__panel {
    background: var(--navy);
    border-radius: 4px;
    padding: 48px 40px;
    color: rgba(255,255,255,.85);
}

.lp-hero__panel-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 32px;
}

.lp-credential {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

    .lp-credential:first-of-type {
        border-top: none;
        padding-top: 0;
    }

.lp-credential__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
    min-width: 56px;
    flex-shrink: 0;
}

.lp-credential__text strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--chalk);
    margin-bottom: 4px;
}

.lp-credential__text span {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
}

/* ── Buttons (landing-scoped) ────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
    font-family: inherit;
    letter-spacing: .01em;
}

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

    .lp-btn--primary:hover {
        background: #243657;
        color: var(--chalk);
        box-shadow: 0 4px 20px rgba(27,43,75,.3);
    }

.lp-btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

    .lp-btn--outline:hover {
        background: var(--navy);
        color: var(--chalk);
    }

.lp-btn--light {
    background: transparent;
    color: rgba(255,255,255,.8);
    border-color: rgba(255,255,255,.25);
}

    .lp-btn--light:hover {
        background: rgba(255,255,255,.1);
        color: var(--chalk);
        border-color: rgba(255,255,255,.5);
    }

/* ============================================================
   STATEMENT STRIP — single strong sentence
   ============================================================ */
.lp-statement {
    background: var(--surface);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 40px 24px;
}

.lp-statement__inner {
    max-width: var(--max);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.lp-statement__line {
    width: 3px;
    height: 40px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.lp-statement__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--ink);
    line-height: 1.5;
    font-style: italic;
}

/* ============================================================
   SERVICES — clean numbered list layout
   ============================================================ */
.lp-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
}

.lp-service {
    background: var(--chalk);
    padding: 36px 32px;
    transition: background .2s;
}

    .lp-service:hover {
        background: #FAFBFF;
    }

.lp-service__num {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.lp-service__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 10px;
    font-weight: 700;
}

.lp-service__desc {
    font-size: .875rem;
    color: var(--quiet);
    line-height: 1.7;
    margin-bottom: 20px;
}

.lp-service__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .lp-service__list li {
        font-size: .82rem;
        color: var(--body);
        padding: 5px 0;
        border-top: 1px solid var(--rule);
        display: flex;
        gap: 10px;
        align-items: baseline;
    }

        .lp-service__list li::before {
            content: '—';
            color: var(--gold);
            font-size: .75rem;
            flex-shrink: 0;
        }

/* ============================================================
   ABOUT — two column, personal, no icons
   ============================================================ */
.lp-about {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}

.lp-about__label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--quiet);
    margin-bottom: 8px;
    display: block;
}

.lp-about__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 0;
}

.lp-about__body p {
    font-size: .95rem;
    color: var(--body);
    line-height: 1.85;
    margin-bottom: 20px;
}

    .lp-about__body p:last-child {
        margin-bottom: 0;
    }

.lp-facts {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.lp-fact__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.lp-fact__label {
    font-size: .78rem;
    color: var(--quiet);
    line-height: 1.4;
}

/* ============================================================
   DOWNLOADS — horizontal feature list
   ============================================================ */
.lp-downloads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-downloads__text .lp-divider {
    margin-bottom: 24px;
}

.lp-downloads__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lp-downloads__body {
    font-size: .95rem;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.lp-dl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--rule);
}

    .lp-dl-list li {
        display: flex;
        align-items: baseline;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px solid var(--rule);
        font-size: .875rem;
        color: var(--body);
    }

        .lp-dl-list li::before {
            content: attr(data-n);
            font-family: 'Playfair Display', Georgia, serif;
            font-size: .8rem;
            color: var(--gold);
            font-weight: 700;
            min-width: 20px;
            flex-shrink: 0;
        }

    .lp-dl-list strong {
        color: var(--ink);
        font-weight: 600;
    }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.lp-testimonial {
    padding: 36px 32px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: var(--chalk);
    position: relative;
}

.lp-testimonial__mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    color: var(--gold);
    opacity: .2;
    line-height: 1;
    position: absolute;
    top: 18px;
    left: 24px;
}

.lp-testimonial__quote {
    font-size: .92rem;
    line-height: 1.8;
    color: var(--body);
    margin: 28px 0 28px;
    font-style: italic;
}

.lp-testimonial__rule {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 16px;
}

.lp-testimonial__name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 3px;
}

.lp-testimonial__role {
    font-size: .78rem;
    color: var(--quiet);
}

/* ============================================================
   CTA FOOTER BAND — navy, typographic
   ============================================================ */
.lp-cta {
    background: var(--navy);
    padding: 96px 24px;
}

.lp-cta__inner {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.lp-cta__eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
    display: block;
}

.lp-cta__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--chalk);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.lp-cta__body {
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 520px;
    margin-inline: auto;
}

.lp-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-hero__panel {
        padding: 32px 24px;
    }

    .lp-about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-downloads {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-services {
        grid-template-columns: 1fr;
    }

    .lp-statement__inner {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .lp-hero {
        min-height: auto;
        padding: 100px 20px 56px;
    }

    .lp-facts {
        grid-template-columns: 1fr 1fr;
    }

    .lp-cta__body {
        margin-inline: 0;
    }
}
