/* ============================================================
   PowerBiz Capital — Core Stylesheet
   Dark, electric identity. Distinct from Red Rock / Funding Solutions.
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Base surface */
    --bg: #0B0D12;
    --bg-elev: #151923;
    --bg-elev-2: #1C212E;
    --surface-line: rgba(255, 255, 255, 0.08);
    --surface-line-strong: rgba(255, 255, 255, 0.14);

    /* Text */
    --text: #F4F5F8;
    --text-dim: #A7AEBE;
    --text-mute: #6B7384;

    /* Brand */
    --amber: #FFB627;
    --amber-dim: #E69F10;
    --amber-glow: rgba(255, 182, 39, 0.22);
    --blue: #3D9BFF;
    --blue-dim: #2378D9;

    /* States */
    --success: #2ECC71;
    --danger: #FF5B5B;

    /* Shape */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;

    /* Motion */
    --ease: cubic-bezier(.2, .7, .2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--ease);
}

img, svg {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--amber);
}

.text-amber { color: var(--amber); }
.text-dim   { color: var(--text-dim); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 13, 18, 0.72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--surface-line);
    transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

.nav.is-scrolled {
    background: rgba(11, 13, 18, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--text);
}

.brand__mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: url('images/favicon.svg') center / contain no-repeat;
    filter: drop-shadow(0 6px 14px rgba(255, 182, 39, 0.28));
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: .94rem;
    font-weight: 500;
    color: var(--text-dim);
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--text);
}

.nav__cta {
    padding: 10px 18px;
    border-radius: var(--r-sm);
    background: var(--amber);
    color: #0B0D12 !important;
    font-weight: 600;
    font-size: .9rem;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -8px var(--amber-glow);
}

.nav__toggle {
    display: none;
    background: none;
    border: 1px solid var(--surface-line-strong);
    border-radius: var(--r-sm);
    padding: 8px 10px;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: transform .2s var(--ease);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--r-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--amber);
    color: #0B0D12;
    box-shadow: 0 8px 28px -8px var(--amber-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    background: #FFC14D;
    box-shadow: 0 14px 36px -10px var(--amber-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--surface-line-strong);
}

.btn--ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn--block {
    width: 100%;
}

.btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
    padding: 110px 0;
    position: relative;
}

.section--tight {
    padding: 72px 0;
}

.section__head {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.section__head h2 {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    margin: 14px 0 16px;
}

.section__head p {
    color: var(--text-dim);
    font-size: 1.08rem;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--surface-line-strong), transparent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 170px 0 110px;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: grayscale(0.4) brightness(0.55) contrast(1.1);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 13, 18, 0.4) 0%, rgba(11, 13, 18, 0.85) 60%, rgba(11, 13, 18, 1) 100%),
        linear-gradient(135deg, rgba(255, 182, 39, 0.08), transparent 50%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
    z-index: -2;
}

.hero__glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 780px;
    height: 780px;
    background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.hero__inner {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    margin: 22px 0 20px;
    letter-spacing: -0.035em;
}

.hero h1 .accent {
    color: var(--amber);
    position: relative;
    white-space: nowrap;
}

.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: 4px;
    height: 6px;
    background: var(--amber);
    opacity: .18;
    z-index: -1;
}

.hero p.lead {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 36px;
}

.hero__actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__trust {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    color: var(--text-mute);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero__trust span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 12px var(--amber);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
    background: var(--bg-elev);
    border-top: 1px solid var(--surface-line);
    border-bottom: 1px solid var(--surface-line);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stats__item {
    padding: 44px 24px;
    text-align: center;
    border-right: 1px solid var(--surface-line);
}

.stats__item:last-child {
    border-right: none;
}

.stats__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--amber);
    letter-spacing: -0.03em;
}

.stats__label {
    margin-top: 6px;
    color: var(--text-dim);
    font-size: .92rem;
}

/* ============================================================
   SOLUTIONS GRID
   ============================================================ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sol-card {
    background: var(--bg-elev);
    border: 1px solid var(--surface-line);
    border-radius: var(--r-md);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}

.sol-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.sol-card:hover {
    border-color: var(--surface-line-strong);
    transform: translateY(-4px);
    background: var(--bg-elev-2);
}

.sol-card:hover::before {
    opacity: 1;
}

.sol-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--r-sm);
    background: rgba(255, 182, 39, 0.1);
    border: 1px solid rgba(255, 182, 39, 0.25);
    color: var(--amber);
    margin-bottom: 24px;
}

.sol-card__icon svg {
    width: 24px;
    height: 24px;
}

.sol-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.sol-card p {
    color: var(--text-dim);
    font-size: .96rem;
    margin-bottom: 20px;
}

.sol-card__meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--surface-line);
    font-size: .82rem;
    color: var(--text-mute);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sol-card__meta strong {
    color: var(--amber);
    font-weight: 600;
}

/* ============================================================
   WHY / FEATURE STRIP
   ============================================================ */
.why {
    background: var(--bg-elev);
    border-top: 1px solid var(--surface-line);
    border-bottom: 1px solid var(--surface-line);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border-left: 2px solid var(--amber);
    background: rgba(255, 255, 255, 0.01);
}

.why__item h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.why__item p {
    color: var(--text-dim);
    font-size: .92rem;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    background: var(--bg-elev);
    border: 1px solid var(--surface-line);
    border-radius: var(--r-md);
    padding: 36px 28px;
    position: relative;
}

.step__num {
    position: absolute;
    top: -22px;
    left: 28px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--bg);
    border: 1px solid var(--amber);
    border-radius: var(--r-sm);
    color: var(--amber);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin: 14px 0 10px;
}

.step p {
    color: var(--text-dim);
    font-size: .96rem;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.industry-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--surface-line);
    transition: transform .25s var(--ease), border-color .25s var(--ease);
    isolation: isolate;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--amber);
}

.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.55) brightness(0.6) contrast(1.05);
    transition: filter .35s var(--ease), transform .4s var(--ease);
    z-index: -2;
}

.industry-card:hover img {
    filter: grayscale(0.2) brightness(0.8);
    transform: scale(1.04);
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 13, 18, 0.1) 40%, rgba(11, 13, 18, 0.95) 100%);
    z-index: -1;
}

.industry-card__label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.industry-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 12px var(--amber);
    flex-shrink: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    position: relative;
    background: linear-gradient(135deg, #151923 0%, #0F121A 100%);
    border: 1px solid var(--surface-line);
    border-radius: var(--r-lg);
    padding: 72px 48px;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}

.cta-band__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: grayscale(0.5) brightness(0.55) contrast(1.05);
    z-index: -2;
}

.cta-band::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 14px;
    position: relative;
}

.cta-band p {
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 560px;
    margin-inline: auto;
    font-size: 1.05rem;
    position: relative;
}

.cta-band .btn {
    position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #070910;
    border-top: 1px solid var(--surface-line);
    padding: 64px 0 28px;
    font-size: .94rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--surface-line);
}

.footer__brand p {
    margin-top: 16px;
    color: var(--text-dim);
    max-width: 320px;
}

.footer__col h4 {
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 16px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    color: var(--text-dim);
}

.footer__col a:hover {
    color: var(--amber);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    color: var(--text-mute);
    font-size: .86rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom a {
    color: var(--text-mute);
}

.footer__bottom a:hover {
    color: var(--text);
}

/* ============================================================
   PAGE HEADER (non-home)
   ============================================================ */
.page-header {
    padding: 160px 0 72px;
    position: relative;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--surface-line);
}

.page-header__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.page-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(0.55) brightness(0.5) contrast(1.05);
}

.page-header__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 13, 18, 0.5) 0%, rgba(11, 13, 18, 0.95) 100%);
}

.page-header__grid {
    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: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 20%, transparent 70%);
    z-index: -2;
}

.page-header__glow {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

.page-header h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin: 18px 0 14px;
}

.page-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-shell {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.form-side {
    background: var(--bg-elev);
    border: 1px solid var(--surface-line);
    border-radius: var(--r-md);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.form-side h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.form-side > p {
    color: var(--text-dim);
    font-size: .96rem;
    margin-bottom: 22px;
}

.form-side__block {
    padding: 20px 0;
    border-top: 1px solid var(--surface-line);
}

.form-side__block h4 {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 14px;
}

.form-side__block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-side__block li {
    color: var(--text-dim);
    font-size: .94rem;
    padding-left: 22px;
    position: relative;
}

.form-side__block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 2px;
    background: var(--amber);
}

.form-side__contact p {
    color: var(--text-dim);
    font-size: .94rem;
    padding: 6px 0;
}

.form-side__contact strong {
    color: var(--text);
    font-weight: 600;
    margin-right: 6px;
}

.form-card {
    background: var(--bg-elev);
    border: 1px solid var(--surface-line);
    border-radius: var(--r-md);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: .92rem;
}

.form-group label .req {
    color: var(--amber);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--surface-line-strong);
    border-radius: var(--r-sm);
    color: var(--text);
    font-family: inherit;
    font-size: .98rem;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-mute);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 182, 39, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FFB627' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(255, 91, 91, 0.15);
}

.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--r-sm);
    display: none;
    font-size: .96rem;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #7FE3A4;
    border: 1px solid rgba(46, 204, 113, 0.35);
}

.form-message.error {
    display: block;
    background: rgba(255, 91, 91, 0.1);
    color: #FF9A9A;
    border: 1px solid rgba(255, 91, 91, 0.35);
}

/* ============================================================
   CONTACT GRID (contact.html)
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--bg-elev);
    border: 1px solid var(--surface-line);
    border-radius: var(--r-md);
    padding: 32px;
    text-align: center;
    transition: border-color .2s var(--ease);
}

.contact-card:hover {
    border-color: var(--amber);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: var(--r-sm);
    background: rgba(255, 182, 39, 0.1);
    border: 1px solid rgba(255, 182, 39, 0.25);
    color: var(--amber);
}

.contact-card h3 {
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 10px;
}

.contact-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.contact-card p.sub {
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.prose {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.75;
}

.prose h2 {
    color: var(--text);
    font-size: 1.5rem;
    margin: 40px 0 14px;
}

.prose h3 {
    color: var(--text);
    font-size: 1.15rem;
    margin: 26px 0 10px;
}

.prose p {
    margin-bottom: 16px;
}

.prose ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.prose li {
    margin-bottom: 8px;
}

.prose strong {
    color: var(--text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .solutions-grid,
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__item:nth-child(2) { border-right: none; }
    .stats__item:nth-child(1),
    .stats__item:nth-child(2) { border-bottom: 1px solid var(--surface-line); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .form-shell { grid-template-columns: 1fr; }
    .form-side { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .industries { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 13, 18, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--surface-line);
        display: none;
    }
    .nav__links.is-open { display: flex; }
    .nav__links li { width: 100%; }
    .nav__links a { display: block; padding: 14px 0; font-size: 1rem; }
    .nav__cta { text-align: center; margin-top: 8px; }
    .nav__toggle { display: block; }

    .solutions-grid,
    .why__grid,
    .steps { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
    .cta-band { padding: 52px 24px; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }

    .hero { padding: 140px 0 80px; }
    .hero__trust { gap: 20px 24px; font-size: .78rem; }
}

@media (max-width: 520px) {
    .stats__grid { grid-template-columns: 1fr; }
    .stats__item { border-right: none; border-bottom: 1px solid var(--surface-line); }
    .stats__item:last-child { border-bottom: none; }
    .footer__grid { grid-template-columns: 1fr; }
}
