:root {
    --font: white;
    --otherfont: black;
    --link: grey;
    --background: #f1f1f1;
    --bg: green;
    --blue: #0b50b8;
    --green: #16a34a;
    --light-green: #1ef199;
    --text-dark: #172033;
    --text-grey: #6b7280;
    --border: #d5d5d5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: var(--background);
    color: var(--otherfont);
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
}

/* Header */

.header {
    position: relative;
    z-index: 100;
    padding: 16px 20px;
    background: rgba(241, 241, 241, 0.92);
    border-bottom: 1px solid rgba(23, 32, 51, 0.08);
    backdrop-filter: blur(14px);
}

.container {
    width: 100%;
    max-width: 1240px;
    min-height: 52px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo h1 span {
    color: green;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.head-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.head-link a {
    position: relative;
    padding: 10px 13px;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.head-link a:hover {
    background: white;
    color: var(--green);
    transform: translateY(-1px);
}

.head-link a:first-child {
    margin-right: 5px;
    background: var(--text-dark);
    color: white;
}

.head-link a:first-child:hover {
    background: var(--blue);
    color: white;
}

.menu-btn {
    display: none;
    position: relative;
    padding: 10px 16px;
    border: 2px solid black;
    border-radius: 30px;
    background: transparent;
    color: var(--otherfont);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.menu-btn::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        #0b50b8,
        #16a34a,
        #1ef199,
        #0b50b8
    );
    animation: borderSpin 2s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: -2;
}

.menu-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: var(--background);
    z-index: -1;
}

.menu-btn:hover {
    border-color: transparent;
}

.menu-btn:hover::before {
    opacity: 1;
}

@keyframes borderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Sidebar */

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 290px;
    height: 100vh;
    padding: 100px 25px 40px;
    background: rgba(241, 241, 241, 0.98);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.12);
    transition: right 0.35s ease;
    z-index: 999;
}

.sidebar.active {
    right: 0;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar a {
    padding: 15px 16px;
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.sidebar a:hover {
    background: white;
    color: var(--blue);
    transform: translateX(4px);
}

/* Hero */

.hero {
    position: relative;
    min-height: 670px;
    padding: 85px 20px 70px;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #d9f99d 0%,
        #93c5fd 45%,
        #2563eb 100%
    );
    color: var(--font);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: -140px;
    right: -80px;
    background: rgba(255, 255, 255, 0.15);
}

.hero::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -80px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-font {
    position: relative;
    z-index: 1;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 7px 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.into {
    margin: 0;
    padding: 0 5px;
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.into::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.second-font {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 28px auto 0;
    text-align: center;
}

.second-font h1 {
    max-width: 850px;
    margin: 0 auto;
    color: white;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.second-font h4 {
    margin: 25px 0 15px;
    color: white;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.4;
}

.second-font h4 span {
    color: green;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.second-font p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.7;
}

.hero-btn {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-btn a {
    min-width: 175px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.hero-btn a.first {
    border: none;
    background: linear-gradient(
        90deg,
        #0b50b8 0%,
        #16a34a 40%,
        #1ef199 100%
    );
    color: white;
    box-shadow: 0 10px 25px rgba(11, 80, 184, 0.25);
}

.hero-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero-btn a:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.25);
}

.hero-end {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-end p {
    margin: 0;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-grey);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Ticker */

.ticker {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(
        90deg,
        #0b50b8 0%,
        #16a34a 40%,
        #1ef199 100%
    );
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ticker-track {
    width: max-content;
    display: flex;
    gap: 45px;
    color: white;
    animation: scroll 18s linear infinite;
}

.ticker-track p {
    margin: 13px 0;
    font-size: 0.85rem;
    font-weight: 700;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Shared section headings */

.picklane,
.apply,
.people-stay,
.steps-start,
.faq {
    position: relative;
}

.picklane h1,
.apply-font h1,
.people-font h1,
.steps-font h1,
.faq-header h1,
.next-grant-font h1 {
    letter-spacing: -1.5px;
}

/* Picklane */

.picklane {
    padding: 100px 20px 35px;
    background: var(--background);
}

.picklane-font {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.picklane .second {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.picklane h1 {
    margin: 0 0 15px;
    color: var(--text-dark);
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.picklane-font > p:last-child {
    margin: 0;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.picklane-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.picklane-card {
    width: 100%;
    min-height: 390px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: white;
    box-shadow: 0 8px 25px rgba(23, 32, 51, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.picklane-card:hover {
    border-color: rgba(22, 163, 74, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(23, 32, 51, 0.11);
}

.picklane-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.picklane-top h1 {
    margin: 0;
    font-size: 2.4rem;
}

.picklane-top p {
    margin: 0;
    padding: 6px 10px;
    border-radius: 50px;
    background: rgb(186, 247, 168);
    color: green;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.picklane-card h3 {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 1.35rem;
}

.picklane-card > p {
    min-height: 54px;
    margin: 0;
    color: var(--text-grey);
    font-size: 0.92rem;
    line-height: 1.6;
}

.picklane-bottom {
    margin-top: auto;
    padding: 16px;
    border: 1px solid #eceff3;
    border-radius: 15px;
    background: #f7f8fa;
}

.picklane-bottom p {
    margin: 0;
    color: var(--text-grey);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.picklane-bottom h1 {
    margin: 7px 0 0;
    color: var(--blue);
    font-size: 1.15rem;
    letter-spacing: -0.5px;
}

.picklane-links {
    margin-top: 18px;
}

.picklane-links a {
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.picklane-links a:hover {
    color: var(--green);
}

/* Apply */

.apply {
    padding: 100px 20px 35px;
    background: #e9ebee;
}

.apply-font {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.apply-font .third {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.apply-font h1 {
    margin: 0 0 15px;
    color: var(--text-dark);
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    line-height: 1.05;
}

.apply-font > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
}

.apply-pick {
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 20px 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.apply-pick-card {
    position: relative;
    min-height: 185px;
    padding: 28px 22px;
    border: 2px solid transparent;
    border-radius: 22px;
    background: white;
    box-shadow: 0 6px 20px rgba(23, 32, 51, 0.06);
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.apply-pick-card h1 {
    margin: 0 0 13px;
    font-size: 2.4rem;
}

.apply-pick-card p {
    margin: 5px 0;
    color: var(--text-dark);
    font-weight: 800;
}

.apply-pick-card p:last-child {
    color: var(--text-grey);
    font-size: 0.8rem;
    font-weight: 600;
}

.apply-pick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(23, 32, 51, 0.1);
}

.apply-pick-card.selected {
    border-color: #1683ff;
    box-shadow:
        0 0 0 4px rgba(22, 131, 255, 0.1),
        0 15px 30px rgba(23, 32, 51, 0.1);
    transform: translateY(-6px);
}

.apply-pick-card.selected::after {
    content: "✓";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1683ff;
    color: white;
    font-size: 0.85rem;
    font-weight: 900;
    line-height: 28px;
}

.continue-btn {
    display: block;
    margin: 5px auto 100px;
    padding: 15px 30px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        #0b50b8 0%,
        #16a34a 40%,
        #1ef199 100%
    );
    color: white;
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(11, 80, 184, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.continue-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(11, 80, 184, 0.25);
}

/* Why people stay */

.people-stay {
    padding: 100px 20px;
    background: white;
}

.people-font {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.people-font .fourth {
    margin: 0 0 12px;
    color: #1683ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.people-font h1 {
    margin: 0 0 15px;
    color: var(--text-dark);
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    line-height: 1.05;
}

.people-font > p:last-child {
    margin: 0;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
}

.people-card {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.people-cards {
    min-height: 245px;
    padding: 30px 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #f8f9fb;
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.people-cards:hover {
    border-color: rgba(22, 131, 255, 0.35);
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(23, 32, 51, 0.08);
}

.people-symbol {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    background: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 15px rgba(23, 32, 51, 0.06);
}

.people-cards h3 {
    margin: 0 0 12px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.45;
}

.people-cards p {
    margin: 0;
    color: var(--text-grey);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Steps */

.steps-start {
    padding: 100px 20px;
    background: #e9ebee;
}

.steps-font {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.steps-font .fifth {
    margin: 0 0 12px;
    color: #1683ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.steps-font h1 {
    margin: 0 0 15px;
    color: var(--text-dark);
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    line-height: 1.05;
}

.steps-font > p:last-child {
    margin: 0;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
}

.steps {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps-card {
    position: relative;
    min-height: 230px;
    padding: 30px 25px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.steps-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: rgba(22, 131, 255, 0.05);
}

.steps-card:hover {
    border-color: rgba(22, 131, 255, 0.35);
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(23, 32, 51, 0.08);
}

.steps-symbol {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: #f4f7fb;
    font-size: 1.7rem;
}

.steps-card h3 {
    margin: 0 0 12px;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.4;
}

.steps-card p {
    margin: 0;
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ */

.faq {
    padding: 100px 20px;
    background: white;
}

.faq-header {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.faq-header p {
    margin: 0 0 12px;
    color: #1683ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-header h1 {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fafafa;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: #b9c0ca;
}

.faq-item.active {
    border-color: #1683ff;
    background: white;
    box-shadow: 0 10px 25px rgba(22, 131, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 21px 24px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    color: var(--text-dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #eef2f7;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--text-grey);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    background: #e8f1ff;
    transform: rotate(180deg);
}

/* Next Grant */

.next-grant {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #d9f99d 0%,
        #93c5fd 45%,
        #2563eb 100%
    );
    text-align: center;
}

.next-grant::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -170px;
    left: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.next-grant-font {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.next-grant-font .fifth {
    margin: 0 0 20px;
    font-size: 2.7rem;
}

.next-grant-font h1 {
    margin: 0 0 20px;
    color: var(--text-dark);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.05;
}

.next-grant-font p:not(.fifth) {
    max-width: 680px;
    margin: 10px auto;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.next-grant-font a {
    display: inline-block;
    margin-top: 28px;
    padding: 15px 30px;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        #0b50b8 0%,
        #16a34a 40%,
        #1ef199 100%
    );
    color: white;
    font-size: 0.95rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(11, 80, 184, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.next-grant-font a:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(11, 80, 184, 0.28);
}

/* Footer */

.footer-start {
    padding: 75px 20px 25px;
    background: #10131a;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 45px;
}

.footer-font a {
    display: inline-block;
    margin-bottom: 17px;
    color: white;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.footer-font a span {
    color: #1ef199;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-font p {
    max-width: 290px;
    margin: 0;
    color: #aeb4c0;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links h1,
.footer-support h1,
.footer-loop h1 {
    margin: 0 0 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-link,
.support-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-link a,
.support-links a {
    width: fit-content;
    color: #aeb4c0;
    font-size: 0.88rem;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-link a:hover,
.support-links a:hover {
    color: #1ef199;
    transform: translateX(3px);
}

.footer-loop p {
    max-width: 280px;
    margin: 0;
    color: #aeb4c0;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #2b303a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #7f8794;
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Tablet */

@media (max-width: 1000px) {
    .picklane-cards,
    .apply-pick {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

/* Mobile */

@media (max-width: 650px) {
    .header {
        padding: 10px;
    }

    .container {
        padding: 8px 10px;
    }

    .logo h1 {
        font-size: 1.35rem;
    }

    .head-link {
        gap: 8px;
    }

    .head-link a {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: 620px;
        padding: 60px 15px 50px;
    }

    .hero-font {
        padding: 7px 13px;
    }

    .into {
        font-size: 0.7rem;
    }

    .second-font {
        margin-top: 25px;
    }

    .second-font h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
        letter-spacing: -2px;
    }

    .second-font h4 {
        margin: 20px 0 12px;
        font-size: 1rem;
    }

    .second-font p {
        font-size: 0.87rem;
        line-height: 1.65;
    }

    .hero-btn {
        width: 100%;
        margin-top: 28px;
        flex-direction: column;
    }

    .hero-btn a {
        width: 100%;
        max-width: 330px;
    }

    .hero-end {
        max-width: 340px;
        margin-top: 24px;
    }

    .hero-end p {
        font-size: 0.68rem;
    }

    .ticker-track {
        gap: 25px;
        animation-duration: 14s;
    }

    .ticker-track p {
        font-size: 0.75rem;
    }

    .picklane,
    .apply,
    .people-stay,
    .steps-start,
    .faq {
        padding: 70px 15px 25px;
    }

    .picklane h1,
    .apply-font h1,
    .people-font h1,
    .steps-font h1,
    .faq-header h1 {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }

    .picklane-cards {
        grid-template-columns: 1fr;
        padding: 25px 15px 70px;
        gap: 15px;
    }

    .picklane-card {
        min-height: 350px;
        padding: 22px;
    }

    .picklane-top {
        margin-bottom: 30px;
    }

    .apply-pick {
        grid-template-columns: 1fr;
        padding: 25px 5px 20px;
        gap: 13px;
    }

    .apply-pick-card {
        min-height: 165px;
    }

    .continue-btn {
        width: calc(100% - 30px);
        max-width: 350px;
        margin: 5px auto 70px;
    }

    .people-card {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .people-cards {
        min-height: auto;
        padding: 27px 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .steps-card {
        min-height: auto;
        padding: 27px 22px;
    }

    .faq {
        padding-bottom: 70px;
    }

    .faq-container {
        width: 100%;
    }

    .faq-question {
        padding: 19px;
        font-size: 0.88rem;
    }

    .faq-answer p {
        padding: 0 19px 20px;
        font-size: 0.85rem;
    }

    .next-grant {
        padding: 80px 15px;
    }

    .next-grant-font h1 {
        font-size: 2.35rem;
        letter-spacing: -1px;
    }

    .next-grant-font p:not(.fifth) {
        font-size: 0.88rem;
    }

    .next-grant-font a {
        width: 100%;
        max-width: 320px;
    }

    .footer-start {
        padding: 60px 20px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-font p,
    .footer-loop p {
        max-width: 100%;
    }

    .footer-copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }
}