.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    padding: 0 20px;
    min-height: 582px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    max-width: 612px;
    color: white;
    text-align: center;
    z-index: 10;
}

.hero-title {
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 50px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.hero-description {
    overflow: hidden;
    color: #E8E8E8;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
}

.gold-btn {
    display: inline-block;
    justify-content: center;
    align-items: center;
    padding: 14px 30px;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 6px;
    background: #BE930B;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-btn:hover {
    background-color: #a67f0a;
    box-shadow: 0 4px 12px rgba(190, 147, 11, 0.3);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 60px 16px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .gold-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 0;
        min-height: 450px;
    }

    .hero-title {
        font-size: 50px;
    }
}

.community-section {
    background-color: #FFFFFF;
    padding: 30px 20px;
}

.community-container {
    max-width: 1440px;
    margin: 0 auto;
}

.community-header {
    text-align: center;
    margin-bottom: 30px;
}

.community-title {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 12px;
}

.community-description {
    color: rgba(28, 28, 28, 0.70);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 850px;
    margin: 0 auto;
}

.everyday-heroes,
.future-builders {
    border-radius: 6px;
    border: 1px solid rgba(28, 28, 28, 0.10);
    padding: 20px;
    margin-bottom: 30px;
}

.category-header {
    text-align: center;
    margin-bottom: 20px;
}

.category-title {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.category-subtitle {
    color: rgba(28, 28, 28, 0.70);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
}

@media (max-width: 767px) {
    .hero-item:last-child {
        grid-column: span 2;
    }
}

.hero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-icon {
    width: 130px;
    height: 134px;
    aspect-ratio: 65/67;
}

.hero-label {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
}

.builder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.builder-icon {
    width: 130px;
    height: 134px;
    aspect-ratio: 65/67;
}

.builder-label {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (min-width: 640px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .builder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (min-width: 768px) {
    .community-section {
        padding: 50px 20px;
    }

    .community-title {
        font-size: 36px;
    }

    .community-description {
        font-size: 18px;
    }

    .hero-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .builder-grid {
        justify-content: center;
        justify-items: center;
        grid-template-columns: repeat(2, auto);
        max-width: 600px;
        margin: 0 auto;
    }

    .category-title {
        font-size: 24px;
    }

    .category-subtitle {
        font-size: 14px;
    }

    .hero-icon,
    .builder-icon {
        width: 100px;
        height: 100px;
    }

    .hero-label,
    .builder-label {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .hero-item,
    .builder-item {
        gap: 16px;
    }
}

.steps-section {
    background-color: #F4F4F4;
    padding: 30px 20px;
}

.steps-container {
    max-width: 1440px;
    margin: 0 auto;
}

.steps-header {
    text-align: center;
    margin-bottom: 30px;
}

.steps-title {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 12px;
}

.steps-description {
    color: rgba(28, 28, 28, 0.70);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid rgba(28, 28, 28, 0.10);
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.step-number {
    color: #000;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.step-description {
    color: rgba(28, 28, 28, 0.70);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.step-arrow {
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.step-arrow-desktop {
    display: none;
}

@media (min-width: 768px) {
    .step-arrow-mobile {
        display: none;
    }
    .step-arrow-desktop {
        display: block;
    }
}

.steps-action {
    text-align: center;
}

.verify-btn {
    overflow: hidden;
    color: #FFF;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 6px;
    border: 1px solid #BE930B;
    background: #BE930B;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.verify-btn:hover {
    background-color: #a67f0a;
    box-shadow: 0 4px 12px rgba(190, 147, 11, 0.3);
}

@media (min-width: 768px) {
    .steps-section {
        padding: 50px 20px;
    }

    .steps-title {
        font-size: 36px;
    }

    .steps-description {
        font-size: 16px;
    }

    .steps-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .step-item {
        flex: 1;
        max-width: 200px;
    }

    .step-arrow {
        display: flex;
        flex-shrink: 0;
        margin-top: 20px;
    }

    .step-number {
        font-size: 16px;
    }

    .step-description {
        font-size: 14px;
    }

    .verify-btn {
        font-size: 18px;
        padding: 18px 56px;
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        gap: 30px;
    }

    .step-item {
        max-width: 220px;
    }

    .step-description {
        font-size: 16px;
    }
}