/* ═══════════════════════════════════════════════════════════
   Shortwork — Industry Lander Styles
   Extends ../style.css
   ═══════════════════════════════════════════════════════════ */

/* ─── Industry Hero ────────────────────────────────────── */
.ind-hero {
    padding: clamp(140px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
    position: relative;
    overflow: hidden;
}
.ind-hero__inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: var(--container, 1140px);
}
.ind-hero__content {
    flex: 1;
    min-width: 0;
    max-width: 640px;
}
.ind-hero__booking-col {
    flex: 0 0 380px;
    position: relative;
    z-index: 1;
}
.ind-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    padding: 6px 16px;
    border: 1px solid var(--border-light);
    background: rgba(255,255,255,0.02);
}
.ind-hero__tag-chevron {
    color: var(--accent);
    font-weight: 700;
}
.ind-hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.ind-hero__title span {
    color: var(--accent);
}
.ind-hero__desc {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
}
.ind-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ind-hero__badge {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gray-400);
    border: 1px solid var(--border);
    padding: 6px 16px;
    background: rgba(255,255,255,0.03);
}
[data-theme="light"] .ind-hero__badge {
    color: #555;
    border-color: rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.02);
}

/* ─── Hero Booking Form ───────────────────────────────── */
.ind-hero__booking {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
}
.ind-hero__booking-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 6px;
}
.ind-hero__booking-sub {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.5;
}
.ind-hero__booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ind-hero__booking-form input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
}
.ind-hero__booking-form input:focus {
    border-color: var(--accent);
}
.ind-hero__booking-form input::placeholder {
    color: var(--gray-600);
}
.ind-hero__booking-form .btn {
    width: 100%;
    margin-top: 6px;
    justify-content: center;
}
.ind-hero__booking-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 12px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-600);
}
.ind-hero__booking-divider::before,
.ind-hero__booking-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.ind-hero__booking-calendar {
    border: 1px dashed var(--border-light);
    background: rgba(255,255,255,0.01);
    padding: 24px 16px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ind-hero__booking-calendar svg {
    color: var(--gray-600);
}
.ind-hero__booking-calendar-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.02em;
}
.ind-hero__booking-calendar-hint {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.4;
}
[data-theme="light"] .ind-hero__booking-calendar {
    border-color: rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.01);
}
[data-theme="light"] .ind-hero__booking-calendar svg { color: #999; }
[data-theme="light"] .ind-hero__booking-calendar-title { color: #1a1a1a; }
[data-theme="light"] .ind-hero__booking-calendar-hint { color: #999; }
[data-theme="light"] .ind-hero__booking-divider { color: #bbb; }
[data-theme="light"] .ind-hero__booking-divider::before,
[data-theme="light"] .ind-hero__booking-divider::after { background: rgba(0,0,0,0.1); }
[data-theme="light"] .ind-hero__booking { background: #fff; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .ind-hero__booking-title { color: #1a1a1a; }
[data-theme="light"] .ind-hero__booking-sub { color: #777; }
[data-theme="light"] .ind-hero__booking-form input {
    background: var(--bg-primary);
    border-color: rgba(0,0,0,0.12);
    color: #1a1a1a;
}
[data-theme="light"] .ind-hero__booking-form input::placeholder { color: #aaa; }
[data-theme="light"] .ind-hero__booking-form input:focus { border-color: var(--accent); }

/* Decorative chevrons */
.ind-hero__deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.ind-hero__deco--1 {
    width: 450px;
    height: 360px;
    top: 5%;
    right: -4%;
    color: rgba(255,255,255,0.03);
}
.ind-hero__deco--2 {
    width: 250px;
    height: 200px;
    bottom: 8%;
    left: -2%;
    color: rgba(245,158,11,0.03);
}
[data-theme="light"] .ind-hero__deco--1 { color: rgba(0,0,0,0.02); }
[data-theme="light"] .ind-hero__deco--2 { color: rgba(245,158,11,0.04); }

/* ─── Pain Points ──────────────────────────────────────── */
.ind-pains {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}
.ind-pains__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: clamp(40px, 5vw, 64px);
}
.ind-pains__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
}
.ind-pains__card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.ind-pains__card-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    margin-bottom: 16px;
}
.ind-pains__card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.ind-pains__card-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.7;
}
.ind-pains__card-cost {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(200,70,50,0.9);
    background: rgba(200,70,50,0.06);
    padding: 3px 10px;
    letter-spacing: 0.03em;
}
[data-theme="light"] .ind-pains { background: var(--bg-secondary); }
[data-theme="light"] .ind-pains__card { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ind-pains__card:hover { border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .ind-pains__card-num { color: rgba(0,0,0,0.04); }
[data-theme="light"] .ind-pains__card-title { color: #1a1a1a; }
[data-theme="light"] .ind-pains__card-desc { color: #555; }
[data-theme="light"] .ind-pains__card-cost { color: rgba(200,70,50,0.9); background: rgba(200,70,50,0.06); }

/* ─── Solutions ────────────────────────────────────────── */
.ind-solutions {
    padding: var(--section-pad) 0;
}
.ind-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: clamp(40px, 5vw, 64px);
}
.ind-solutions__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}
.ind-solutions__item:hover {
    border-color: var(--border-strong);
}
.ind-solutions__chevron {
    flex-shrink: 0;
    width: 28px;
    height: 22px;
    color: var(--accent);
    margin-top: 2px;
}
.ind-solutions__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}
.ind-solutions__desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
}
[data-theme="light"] .ind-solutions__item { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ind-solutions__item:hover { border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .ind-solutions__title { color: #1a1a1a; }
[data-theme="light"] .ind-solutions__desc { color: #555; }

/* ─── Stats Banner ─────────────────────────────────────── */
.ind-stats {
    padding: clamp(40px, 6vw, 80px) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ind-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.ind-stats__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.ind-stats__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.03em;
}
[data-theme="light"] .ind-stats { background: var(--bg-secondary); }

/* ─── Industry CTA ─────────────────────────────────────── */
.ind-cta {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.ind-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.82);
    z-index: 0;
}
[data-theme="light"] .ind-cta::before {
    background: rgba(255, 255, 255, 0.88);
}
.ind-cta .container {
    position: relative;
    z-index: 1;
}
.ind-cta__deco {
    position: absolute;
    pointer-events: none;
    width: 350px;
    height: 280px;
    right: -3%;
    top: 10%;
    color: rgba(255,255,255,0.02);
    z-index: 0;
}
[data-theme="light"] .ind-cta__deco { color: rgba(0,0,0,0.02); }

.ind-cta__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1rem;
}
[data-theme="light"] .ind-cta__title { color: #1a1a1a; }
.ind-cta__desc {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
[data-theme="light"] .ind-cta__desc { color: #555; }

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .ind-pains__grid { grid-template-columns: repeat(2, 1fr); }
    .ind-hero__inner { flex-direction: column; gap: 32px; }
    .ind-hero__booking-col { flex: none; width: 100%; max-width: 420px; }
}
@media (max-width: 768px) {
    .ind-pains__grid { grid-template-columns: 1fr; }
    .ind-solutions__grid { grid-template-columns: 1fr; }
    .ind-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .ind-hero__badges { flex-direction: column; }
}
