/* assets/css/careers.css — Careers listing + job detail page */

/* ═══════════════════════════════════════════════
   SHARED
   ═══════════════════════════════════════════════ */

.tq-careers-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.tq-careers-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d7fe7c;
    color: #232323;
    font-weight: 800;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}
.tq-careers-btn-primary:hover {
    background: #c5f055;
    transform: translateY(-1px);
}

.tq-careers-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.18);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.tq-careers-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* Department badge colors */
.tq-dept--eng    { background: rgba(77,97,244,0.1);  color: #4d61f4; }
.tq-dept--design { background: rgba(139,92,246,0.1); color: #7c3aed; }
.tq-dept--mkt    { background: rgba(5,150,105,0.1);  color: #047857; }

/* ═══════════════════════════════════════════════
   CAREERS HERO
   ═══════════════════════════════════════════════ */

.tq-careers-hero {
    background: #232323;
    padding: 9rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}

.tq-careers-hero__glow-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: clamp(320px, 45vw, 640px);
    height: clamp(320px, 45vw, 640px);
    background: radial-gradient(ellipse, rgba(77,97,244,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.tq-careers-hero__glow-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: clamp(180px, 26vw, 380px);
    height: clamp(180px, 26vw, 380px);
    background: radial-gradient(ellipse, rgba(215,254,124,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.tq-careers-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 740px;
}

.tq-careers-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d7fe7c;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tq-careers-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d7fe7c;
    display: inline-block;
    animation: tq-pulse 2s ease-in-out infinite;
}

@keyframes tq-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.tq-careers-hero__h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.tq-careers-hero__h1 em {
    font-style: italic;
    color: #d7fe7c;
}

.tq-careers-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.tq-careers-hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tq-careers-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tq-careers-hero__stat-num {
    font-size: 1.375rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.tq-careers-hero__stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.42);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tq-careers-hero__stat-div {
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,0.12);
}

.tq-careers-hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   CULTURE SECTION
   ═══════════════════════════════════════════════ */

/* Hero two-column split */
.tq-careers-hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Right: 2×2 perk grid */
.tq-careers-hero__perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.tq-careers-perk {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.5rem 1.375rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.tq-careers-perk:hover {
    background: rgba(255,255,255,0.085);
    border-color: rgba(255,255,255,0.13);
}

.tq-careers-perk__icon {
    width: 40px;
    height: 40px;
    background: rgba(77,97,244,0.22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    color: #818cf8;
}

.tq-careers-perk__icon svg {
    width: 18px;
    height: 18px;
}

.tq-careers-perk h3 {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.tq-careers-perk p {
    font-size: 0.8375rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.68;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   JOB LISTINGS
   ═══════════════════════════════════════════════ */

.tq-careers-jobs {
    background: #f6f5f2;
    padding: 5rem 1.5rem;
}

.tq-careers-jobs__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tq-careers-jobs__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4d61f4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tq-careers-jobs__h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #232323;
    letter-spacing: -0.025em;
}

/* Filter */
.tq-careers-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tq-careers-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(35,35,35,0.15);
    background: transparent;
    color: rgba(35,35,35,0.6);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    font-family: inherit;
}

.tq-careers-filter__btn:hover {
    border-color: #232323;
    color: #232323;
}

.tq-careers-filter__btn.active {
    background: #232323;
    border-color: #232323;
    color: #fff;
}

.tq-careers-filter__count {
    background: rgba(255,255,255,0.18);
    color: inherit;
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.tq-careers-filter__btn:not(.active) .tq-careers-filter__count {
    background: rgba(35,35,35,0.08);
}

/* Job cards grid */
.tq-careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.tq-careers-card {
    background: #fff;
    border-radius: 1.125rem;
    padding: 1.75rem;
    border: 1px solid rgba(35,35,35,0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tq-careers-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(35,35,35,0.09);
    border-color: rgba(77,97,244,0.25);
}

.tq-careers-card__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tq-careers-card__dept {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tq-careers-card__urgent {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    text-transform: uppercase;
}

.tq-careers-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #232323;
    letter-spacing: -0.018em;
    line-height: 1.3;
}

.tq-careers-card__summary {
    font-size: 0.875rem;
    color: rgba(35,35,35,0.58);
    line-height: 1.65;
    flex: 1;
}

.tq-careers-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tq-careers-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(35,35,35,0.5);
    background: rgba(35,35,35,0.05);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

.tq-careers-card__pill--remote {
    background: rgba(215,254,124,0.3);
    color: #3a5c00;
}

.tq-careers-card__cta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #4d61f4;
    margin-top: auto;
    padding-top: 0.375rem;
    border-top: 1px solid rgba(35,35,35,0.07);
    transition: gap 0.2s ease;
}

.tq-careers-card:hover .tq-careers-card__cta {
    gap: 0.625rem;
}

/* ═══════════════════════════════════════════════
   BOTTOM CTA SECTION
   ═══════════════════════════════════════════════ */

.tq-careers-cta-section {
    background: #232323;
    padding: 6rem 1.5rem;
}

.tq-careers-cta {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.tq-careers-cta__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tq-careers-cta__h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.028em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.tq-careers-cta__h2 em {
    font-style: italic;
    color: #d7fe7c;
}

.tq-careers-cta__sub {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.tq-careers-cta__btn {
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   JOB HERO
   ═══════════════════════════════════════════════ */

.tq-job-hero {
    background: #232323;
    padding: 8.5rem 1.5rem 4.5rem;
    position: relative;
    overflow: hidden;
}

.tq-job-hero__glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: clamp(300px, 40vw, 580px);
    height: clamp(300px, 40vw, 580px);
    background: radial-gradient(ellipse, rgba(77,97,244,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.tq-job-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.tq-job-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.15s ease;
}

.tq-job-breadcrumb a:hover { color: #fff; }

.tq-job-breadcrumb span:last-child {
    color: rgba(255,255,255,0.75);
}

.tq-job-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.tq-job-hero__content { flex: 1; min-width: 0; }

.tq-job-hero__badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tq-job-hero__dept {
    font-size: 0.75rem;
}

.tq-job-hero__title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.028em;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.tq-job-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.tq-job-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
}

.tq-job-hero__meta-item--remote { color: #d7fe7c; }

.tq-job-hero__meta-sep { color: rgba(255,255,255,0.2); }

.tq-job-hero__apply {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   JOB CONTENT LAYOUT
   ═══════════════════════════════════════════════ */

.tq-job-content-section {
    background: #f6f5f2;
    padding: 4.5rem 1.5rem 6rem;
}

.tq-job-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

/* Main body */
.tq-job-body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tq-job-block {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 2.25rem;
    border: 1px solid rgba(35,35,35,0.07);
}

.tq-job-block h2 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #232323;
    letter-spacing: -0.018em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(35,35,35,0.08);
}

.tq-job-block p {
    font-size: 0.9375rem;
    color: rgba(35,35,35,0.75);
    line-height: 1.75;
}

.tq-job-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.tq-job-block ul li {
    font-size: 0.9375rem;
    color: rgba(35,35,35,0.75);
    line-height: 1.65;
    padding-left: 1.375rem;
    position: relative;
}

.tq-job-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4d61f4;
}

.tq-job-block__list--soft li::before {
    background: rgba(35,35,35,0.3);
}

.tq-job-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tq-job-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(35,35,35,0.75);
    line-height: 1.55;
}

.tq-job-benefit svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #4d61f4;
}

/* Sidebar */
.tq-job-sidebar {
    position: sticky;
    top: 5.5rem;
}

.tq-job-sidebar__card {
    background: #fff;
    border-radius: 1.125rem;
    padding: 1.75rem;
    border: 1px solid rgba(35,35,35,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tq-job-sidebar__title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #232323;
    letter-spacing: -0.015em;
}

.tq-job-sidebar__dl {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.tq-job-sidebar__row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tq-job-sidebar__row dt {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(35,35,35,0.4);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.tq-job-sidebar__row dd {
    font-size: 0.875rem;
    font-weight: 600;
    color: #232323;
    margin: 0;
}

.tq-job-sidebar__apply {
    width: 100%;
    justify-content: center;
}

.tq-job-sidebar__back {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(35,35,35,0.5);
    text-decoration: none;
    transition: color 0.15s ease;
}

.tq-job-sidebar__back:hover { color: #232323; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .tq-careers-hero__split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tq-careers-hero__perks {
        grid-template-columns: repeat(2, 1fr);
    }

    .tq-careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tq-job-layout {
        grid-template-columns: 1fr;
    }

    .tq-job-sidebar {
        position: static;
        order: -1;
    }

    .tq-job-hero__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .tq-careers-hero__perks {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .tq-careers-grid {
        grid-template-columns: 1fr;
    }

    .tq-careers-hero {
        padding: 7rem 1.5rem 4rem;
    }

    .tq-careers-hero__stats {
        gap: 1.25rem;
    }

    .tq-job-hero {
        padding: 7rem 1.5rem 3.5rem;
    }

    .tq-job-block {
        padding: 1.5rem;
    }

    #tqCookieBanner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 0.75rem;
        border-radius: 0.875rem;
    }
}

/* ══════════════════════════════════════════════════
   APPLY PAGE
══════════════════════════════════════════════════ */
.tq-apply-hero {
    background: #232323;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}
.tq-apply-hero__glow {
    position: absolute;
    top: -10%; right: -5%;
    width: clamp(280px, 40vw, 560px);
    height: clamp(280px, 40vw, 560px);
    background: radial-gradient(ellipse, rgba(77,97,244,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.tq-apply-hero__content { position: relative; z-index: 1; }
.tq-apply-hero__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 0.75rem;
}
.tq-apply-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    margin: 0 0 0.75rem;
    line-height: 1.1;
}
.tq-apply-hero__meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.tq-apply-section {
    background: #f6f5f2;
    padding: 4rem 1.5rem 6rem;
}
.tq-apply-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

/* Form card */
.tq-apply-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04), 0 8px 40px rgba(0,0,0,0.06);
}
.tq-apply-card__title {
    font-size: 1.375rem;
    font-weight: 900;
    color: #232323;
    letter-spacing: -0.03em;
    margin: 0 0 0.375rem;
}
.tq-apply-card__sub {
    font-size: 0.875rem;
    color: #888;
    margin: 0 0 2rem;
}

.tq-apply-error-bar {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: #b91c1c;
    margin-bottom: 1.5rem;
}

.tq-apply-form { display: flex; flex-direction: column; gap: 1.25rem; }
.tq-apply-row { display: grid; gap: 1.25rem; }
.tq-apply-row--2 { grid-template-columns: 1fr 1fr; }

.tq-apply-field { display: flex; flex-direction: column; gap: 0.4rem; }
.tq-apply-field label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.01em;
}
.tq-apply-field label span[aria-hidden] { color: #e74c3c; }
.tq-apply-field__opt {
    font-weight: 400;
    color: #aaa;
    font-size: 0.75rem;
    margin-left: 4px;
}
.tq-apply-field input,
.tq-apply-field textarea {
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #232323;
    background: #fff;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    resize: vertical;
}
.tq-apply-field input:focus,
.tq-apply-field textarea:focus {
    border-color: #4d61f4;
    box-shadow: 0 0 0 3px rgba(77,97,244,0.10);
}
.tq-apply-field--err input,
.tq-apply-field--err textarea { border-color: #e74c3c; }
.tq-apply-field__err {
    font-size: 0.8rem;
    color: #e74c3c;
    font-weight: 500;
}

/* File upload zone */
.tq-apply-upload {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
    background: #fafafa;
    color: #888;
    text-align: center;
}
.tq-apply-upload:hover,
.tq-apply-upload--drag { border-color: #4d61f4; background: rgba(77,97,244,0.03); color: #4d61f4; }
.tq-apply-upload--chosen { border-color: #22c55e; background: rgba(34,197,94,0.04); }
.tq-apply-upload__text { margin: 0; font-size: 0.875rem; line-height: 1.65; }
.tq-apply-upload__text strong { color: #232323; }
.tq-apply-upload__text span { font-size: 0.8rem; color: #aaa; }
.tq-apply-upload__name { font-size: 0.875rem; font-weight: 700; color: #22c55e; margin: 0; }
.tq-apply-upload__input {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}

/* Submit */
.tq-apply-submit { display: flex; flex-direction: column; align-items: flex-start; gap: 0.625rem; margin-top: 0.5rem; }
.tq-apply-submit__btn { font-size: 1rem; padding: 14px 28px; }
.tq-apply-submit__note { font-size: 0.8125rem; color: #aaa; margin: 0; }

/* Success */
.tq-apply-success {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04), 0 8px 40px rgba(0,0,0,0.06);
    text-align: center;
    grid-column: 1 / -1;
}
.tq-apply-success__icon {
    width: 64px; height: 64px;
    background: #d7fe7c;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.tq-apply-success__head {
    font-size: 2rem;
    font-weight: 900;
    color: #232323;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
}
.tq-apply-success__body {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2rem;
}
.tq-apply-success__btn { display: inline-flex; }

@media (max-width: 768px) {
    .tq-apply-layout { grid-template-columns: 1fr; }
    .tq-apply-aside  { display: none; }
    .tq-apply-row--2 { grid-template-columns: 1fr; }
    .tq-apply-hero   { padding: 7rem 1.5rem 3rem; }
    .tq-apply-card   { padding: 1.75rem 1.25rem; }
}
