/* Fleetnex Stage 1
   Plain CSS - no npm, Vite or build process required.
*/

:root {
    --navy-950: #08111f;
    --navy-900: #0b1320;
    --navy-800: #132033;
    --navy-700: #1c2d45;
    --blue-500: #1a73e8;
    --blue-600: #155fc0;
    --teal-500: #10a7a3;
    --teal-100: #dff8f6;
    --white: #ffffff;
    --grey-50: #f7f9fc;
    --grey-100: #eef2f7;
    --grey-200: #dbe2ea;
    --grey-500: #64748b;
    --grey-600: #4b596b;
    --grey-700: #334155;
    --grey-900: #172033;
    --green-500: #27a36a;
    --shadow-sm: 0 8px 24px rgba(8, 17, 31, 0.08);
    --shadow-md: 0 18px 48px rgba(8, 17, 31, 0.12);
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--grey-900);
    background: var(--white);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.narrow-container {
    max-width: 820px;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 17, 31, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-weight: 800;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.28);
}

.brand-name {
    font-size: 1.32rem;
    letter-spacing: -0.04em;
}

.brand-name span {
    color: #72ded8;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 600;
}

.main-navigation > a:not(.button):hover {
    color: var(--white);
}

.mobile-menu-button {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.mobile-menu-button span {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 10px;
    background: var(--white);
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    box-shadow: 0 10px 28px rgba(26, 115, 232, 0.24);
    font-weight: 750;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(26, 115, 232, 0.30);
}

.button-small {
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 10px;
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.button-light {
    color: var(--navy-900);
    background: var(--white);
    box-shadow: none;
}

.button-block {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 84% 20%,
            rgba(16, 167, 163, 0.20),
            transparent 34%
        ),
        radial-gradient(
            circle at 12% 12%,
            rgba(26, 115, 232, 0.20),
            transparent 32%
        ),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 72px;
    padding-top: 76px;
    padding-bottom: 88px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--teal-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.cta-panel .eyebrow,
.page-hero .eyebrow {
    color: #72ded8;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 700px;
    font-size: clamp(2.85rem, 6vw, 5.45rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-text {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    font-weight: 650;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points span::before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: var(--teal-500);
}

.dashboard-preview {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
    color: var(--grey-900);
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.preview-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.preview-header > div {
    display: grid;
    gap: 3px;
}

.preview-label {
    color: var(--grey-500);
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.preview-header strong {
    font-size: 1.32rem;
    letter-spacing: -0.03em;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--green-500);
    background: #e8f8ef;
    font-size: 0.75rem;
    font-weight: 800;
}

.status-indicator::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-500);
}

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

.metric-card {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    background: var(--grey-50);
}

.metric-card span {
    color: var(--grey-500);
    font-size: 0.73rem;
    line-height: 1.3;
}

.metric-card strong {
    font-size: 1.55rem;
}

.job-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    background: var(--white);
}

.job-card-top,
.job-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.job-card-top p,
.job-message p {
    margin: 2px 0 0;
    color: var(--grey-500);
    font-size: 0.83rem;
}

.job-registration {
    display: block;
    font-weight: 850;
    letter-spacing: 0.03em;
}

.job-status {
    padding: 7px 10px;
    border-radius: 999px;
    color: #955c00;
    background: #fff3d9;
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
}

.job-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin: 20px 0;
}

.job-progress span {
    height: 5px;
    border-radius: 999px;
    background: var(--grey-200);
}

.job-progress .complete {
    background: var(--teal-500);
}

.job-progress .active {
    background: var(--blue-500);
}

.job-message {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    border-radius: 12px;
    background: var(--grey-50);
}

.message-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: var(--white);
    background: var(--navy-800);
    font-size: 0.75rem;
    font-weight: 850;
}

.job-message strong {
    font-size: 0.86rem;
}

.job-total {
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--grey-200);
    font-size: 0.87rem;
}

.job-total span {
    color: var(--grey-500);
}

.trust-strip {
    border-bottom: 1px solid var(--grey-200);
    background: var(--white);
}

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

.trust-grid > div {
    display: grid;
    gap: 3px;
    padding: 28px 24px;
    border-right: 1px solid var(--grey-200);
}

.trust-grid > div:first-child {
    border-left: 1px solid var(--grey-200);
}

.trust-grid strong {
    font-size: 0.98rem;
}

.trust-grid span {
    color: var(--grey-500);
    font-size: 0.82rem;
}

.section {
    padding: 102px 0;
}

.section-muted {
    background: var(--grey-50);
}

.section-dark {
    color: var(--white);
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(26, 115, 232, 0.15),
            transparent 34%
        ),
        var(--navy-950);
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2,
.split-grid h2,
.cta-panel h2,
.join-card h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--grey-500);
    font-size: 1.04rem;
}

.light-heading h2,
.cta-panel h2 {
    color: var(--white);
}

.light-heading p,
.cta-panel p {
    color: rgba(255, 255, 255, 0.70);
}

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

.step-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-block;
    margin-bottom: 44px;
    color: var(--blue-500);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.step-card h3 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.step-card p {
    margin: 10px 0 0;
    color: var(--grey-500);
    font-size: 0.94rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 76px;
}

.split-grid.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.split-grid h2 {
    max-width: 620px;
}

.section-intro {
    max-width: 610px;
    margin: 20px 0 0;
    color: var(--grey-500);
    font-size: 1.03rem;
}

.feature-list {
    display: grid;
    gap: 13px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    color: var(--grey-700);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--teal-500);
    background: var(--teal-100);
    font-size: 0.72rem;
    font-weight: 900;
}

.compact-list {
    margin-top: 22px;
    margin-bottom: 26px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-500);
    font-weight: 800;
}

.feature-panel {
    padding: 24px;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-panel-header {
    display: grid;
    gap: 3px;
    margin-bottom: 16px;
}

.feature-panel-header span {
    color: var(--grey-500);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-panel-header strong {
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.garage-result,
.workshop-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 0;
    border-top: 1px solid var(--grey-200);
}

.garage-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
    font-size: 0.78rem;
    font-weight: 850;
}

.garage-info {
    min-width: 0;
    flex: 1;
}

.garage-info > strong,
.garage-info > span {
    display: block;
}

.garage-info > span {
    margin-top: 2px;
    color: var(--grey-500);
    font-size: 0.78rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.tag-row span {
    padding: 4px 7px;
    border-radius: 7px;
    color: var(--grey-600);
    background: var(--grey-100);
    font-size: 0.67rem;
    font-weight: 750;
}

.availability {
    display: grid;
    flex: 0 0 auto;
    gap: 2px;
    text-align: right;
}

.availability span {
    color: var(--grey-500);
    font-size: 0.72rem;
}

.availability strong {
    color: var(--green-500);
    font-size: 0.86rem;
}

.dark-panel {
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    background: var(--navy-900);
}

.dark-panel .feature-panel-header span,
.dark-panel .workshop-row div span {
    color: rgba(255, 255, 255, 0.52);
}

.dark-panel .workshop-row {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.workshop-row {
    justify-content: space-between;
}

.workshop-row > div {
    display: grid;
    gap: 2px;
}

.workshop-row > div span {
    color: var(--grey-500);
    font-size: 0.78rem;
}

.workshop-status {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    white-space: nowrap;
}

.status-progress {
    color: #83b9ff;
    background: rgba(26, 115, 232, 0.18);
}

.status-approval {
    color: #ffd27c;
    background: rgba(217, 144, 0, 0.18);
}

.status-ready {
    color: #72dca7;
    background: rgba(39, 163, 106, 0.18);
}

.status-parts {
    color: #f19a9a;
    background: rgba(213, 83, 83, 0.18);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.platform-feature {
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 48px;
    border-radius: 12px;
    color: #72ded8;
    background: rgba(16, 167, 163, 0.12);
    font-size: 0.72rem;
    font-weight: 850;
}

.platform-feature h3 {
    margin: 0;
    font-size: 1.25rem;
}

.platform-feature p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.92rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(
            circle at 88% 24%,
            rgba(16, 167, 163, 0.28),
            transparent 34%
        ),
        linear-gradient(135deg, var(--navy-900), var(--navy-700));
    box-shadow: var(--shadow-md);
}

.cta-panel > div {
    max-width: 720px;
}

.cta-panel p {
    max-width: 600px;
    margin: 16px 0 0;
}

.page-hero {
    padding: 110px 0 92px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(16, 167, 163, 0.18),
            transparent 35%
        ),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.page-hero h1 {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.page-hero p {
    max-width: 700px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
}

.join-section {
    padding-top: 84px;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
}

.join-card {
    position: relative;
    padding: 38px;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.featured-join-card {
    border-color: rgba(26, 115, 232, 0.35);
    box-shadow: 0 24px 60px rgba(26, 115, 232, 0.13);
}

.recommended-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--blue-600);
    background: #eaf2ff;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.join-card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
    font-size: 1.2rem;
    font-weight: 850;
}

.join-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--blue-500);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.join-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.join-card > p {
    margin: 16px 0 0;
    color: var(--grey-500);
}

.application-note {
    max-width: 1020px;
    margin: 24px auto 0;
    padding: 20px 22px;
    border: 1px solid #d8e6fa;
    border-radius: 14px;
    background: #f4f8ff;
}

.application-note strong {
    display: block;
    color: var(--blue-600);
}

.application-note p {
    margin: 5px 0 0;
    color: var(--grey-600);
    font-size: 0.9rem;
}

.site-footer {
    padding-top: 70px;
    color: rgba(255, 255, 255, 0.66);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    gap: 60px;
    padding-bottom: 52px;
}

.footer-about {
    max-width: 460px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-grid p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-grid h3 {
    margin: 4px 0 16px;
    color: var(--white);
    font-size: 0.86rem;
}

.footer-grid > div:not(.footer-about) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid a:not(.brand):hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1040px) {
    .main-navigation {
        gap: 18px;
    }

    .hero-grid,
    .split-grid,
    .split-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-grid {
        min-height: auto;
    }

    .dashboard-preview {
        max-width: 720px;
        transform: none;
    }

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

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

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

    .split-grid.reverse > :first-child {
        order: 2;
    }

    .split-grid.reverse > :last-child {
        order: 1;
    }
}

@media (max-width: 820px) {
    .mobile-menu-button {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        width: min(340px, 88vw);
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 22px;
        background: var(--navy-950);
        box-shadow: -20px 30px 50px rgba(0, 0, 0, 0.26);
        transform: translateX(105%);
        transition: transform 0.22s ease;
    }

    .menu-open .main-navigation {
        transform: translateX(0);
    }

    .main-navigation > a {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-navigation .button {
        margin-top: 14px;
        border-bottom: 0;
    }

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

    .join-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero-grid {
        padding-top: 62px;
        padding-bottom: 68px;
    }

    .hero h1 {
        font-size: 3.05rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-preview {
        padding: 16px;
        border-radius: 20px;
    }

    .metric-card {
        min-height: 86px;
    }

    .job-card-top,
    .job-total {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div,
    .trust-grid > div:first-child {
        border-right: 1px solid var(--grey-200);
        border-left: 1px solid var(--grey-200);
        border-bottom: 1px solid var(--grey-200);
    }

    .section {
        padding: 76px 0;
    }

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

    .step-card,
    .platform-feature {
        min-height: auto;
    }

    .step-number,
    .feature-icon {
        margin-bottom: 28px;
    }

    .feature-panel,
    .join-card {
        padding: 22px;
        border-radius: 20px;
    }

    .availability {
        display: none;
    }

    .workshop-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .cta-panel {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .page-hero {
        padding: 82px 0 70px;
    }

    .page-hero h1 {
        font-size: 2.65rem;
    }

    .recommended-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
    }
}
