/* ===== INDEX PAGE ===== */

/* Hero */
.hero {
    background: linear-gradient(135deg, #024735 0%, #036b4f 100%);
    color: #fff;
    padding: 90px 0 80px;
    text-align: center;
}

.hero__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero__eyebrow {
    display: inline-block;
    background: rgba(242, 201, 76, 0.2);
    color: #F2C94C;
    border: 1px solid rgba(242, 201, 76, 0.4);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}

.hero__title span {
    color: #F2C94C;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 40px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__actions .btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero__note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.hero__note i {
    margin-right: 4px;
    color: #2ECC71;
}

/* Steps */
.steps {
    padding: 80px 0;
    background: #fff;
}

.section__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__label {
    display: inline-block;
    color: #024735;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section__title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.section__desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

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

.step-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.step-card:hover {
    box-shadow: 0 8px 32px rgba(2, 71, 53, 0.1);
    transform: translateY(-3px);
}

.step-card__number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #F2C94C;
    color: #1f2d2a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card__icon {
    width: 64px;
    height: 64px;
    background: #f0f9f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #024735;
}

.step-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.step-card__text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Occasions */
.occasions {
    padding: 80px 0;
    background: #f7f7f7;
}

.occasions__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.occasion-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    border: 1px solid #eee;
    text-decoration: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: block;
}

.occasion-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.occasion-card__emoji {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.occasion-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Features */
.features {
    padding: 80px 0;
    background: #fff;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #eee;
    align-items: flex-start;
}

.feature-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0f9f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #024735;
}

.feature-item__content {
    flex: 1;
}

.feature-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.feature-item__text {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #024735 0%, #036b4f 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-banner__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 14px;
}

.cta-banner__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0 0 36px;
    line-height: 1.6;
}

.cta-banner__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner__actions .btn {
    padding: 13px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .occasions__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .hero__title { font-size: 2rem; }
    .steps__grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
    .occasions__grid { grid-template-columns: repeat(2, 1fr); }
    .section__title { font-size: 1.55rem; }
}

@media (max-width: 400px) {
    .occasions__grid { grid-template-columns: repeat(2, 1fr); }
}
