/* ==========================================================================
   AgenWebsite Homepage
   Static front-page.php styles — scoped under .homepage-landing
   ========================================================================== */

/* ---------- Variables ---------- */
.homepage-landing {
    --hp-primary: #ff6600;
    --hp-primary-hover: #e55b00;
    --hp-secondary: #015C80;
    --hp-dark: #1a1a2e;
    --hp-dark-lighter: #232345;
    --hp-text: #333;
    --hp-text-light: #666;
    --hp-gray-bg: #f8fafe;
    --hp-white: #fff;
    --hp-border: #e8e8e8;
    --hp-radius: 10px;
    --hp-radius-lg: 16px;
    --hp-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --hp-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --hp-festive-gold: #ffd700;
}

.homepage-landing * {
    box-sizing: border-box;
}

/* ---------- Container override ---------- */
.homepage-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Section Header (reusable) ---------- */
.hp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.hp-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 16px;
}

.hp-section-header p {
    font-size: 16px;
    color: var(--hp-text-light);
    line-height: 1.7;
}

/* ---------- Label ---------- */
.hp-label {
    display: inline-block;
    color: var(--hp-primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.hp-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    line-height: 1.4;
}

.hp-btn--primary {
    background: var(--hp-primary);
    color: #fff;
    border-color: var(--hp-primary);
}

.hp-btn--primary:hover {
    background: var(--hp-primary-hover);
    border-color: var(--hp-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.hp-btn--outline {
    background: transparent;
    color: var(--hp-text);
    border-color: var(--hp-border);
}

.hp-btn--outline:hover {
    border-color: var(--hp-primary);
    color: var(--hp-primary);
    transform: translateY(-2px);
}

.hp-btn--secondary {
    background: var(--hp-secondary);
    color: #fff;
    border-color: var(--hp-secondary);
}

.hp-btn--secondary:hover {
    background: #014a66;
    border-color: #014a66;
    color: #fff;
    transform: translateY(-2px);
}

.hp-btn--block {
    display: block;
    width: 100%;
}

.hp-btn--small {
    padding: 10px 20px;
    font-size: 14px;
}

/* ==========================================================================
   Section 1: Birthday Promo Banner (top bar)
   ========================================================================== */
.hp-promo-bar {
    background: var(--hp-primary);
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.hp-promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hp-promo-bar__badge {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hp-promo-bar__text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.hp-promo-bar__countdown {
    display: inline-flex;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: monospace;
}

.hp-promo-bar__cta {
    background: #fff;
    color: var(--hp-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.hp-promo-bar__cta:hover {
    background: var(--hp-dark);
    color: #fff;
}

/* ==========================================================================
   Section 2: Hero
   ========================================================================== */
.hp-hero {
    position: relative;
    background: var(--hp-white);
    color: var(--hp-text);
    padding: 80px 0 60px;
    overflow: hidden;
}

.hp-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hp-hero__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--hp-text);
}

.hp-hero__rotating-text {
    color: var(--hp-primary);
    transition: opacity 0.4s ease;
    display: block;
}

.hp-hero__desc {
    font-size: 17px;
    color: var(--hp-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hp-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hp-hero__cta .hp-btn--outline {
    color: var(--hp-text);
    border-color: var(--hp-border);
}

.hp-hero__cta .hp-btn--outline:hover {
    border-color: var(--hp-primary);
    color: var(--hp-primary);
}

.hp-hero__trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hp-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--hp-text-light);
}

.hp-hero__trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-primary);
    font-size: 16px;
}

/* Screenshot frame */
.hp-screenshot {
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg);
}

.hp-screenshot__dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #f5f5f5;
    border-bottom: 1px solid var(--hp-border);
}

.hp-screenshot__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.hp-screenshot__dots span:first-child { background: #ff5f57; }
.hp-screenshot__dots span:nth-child(2) { background: #ffbd2e; }
.hp-screenshot__dots span:nth-child(3) { background: #28c840; }

.hp-screenshot img {
    display: block;
    width: 100%;
    height: auto;
}

.hp-hero__image .hp-screenshot {
    border: 1px solid var(--hp-border);
    box-shadow: var(--hp-shadow-lg);
}

/* ==========================================================================
   Section 3: Stats Bar
   ========================================================================== */
.hp-stats {
    background: var(--hp-primary);
    padding: 40px 0;
}

.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.hp-stat__number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.hp-stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ==========================================================================
   Section 4: Birthday Mega Promotion
   ========================================================================== */
.hp-birthday {
    padding: 80px 0;
    background: var(--hp-gray-bg);
    position: relative;
    overflow: hidden;
}

.hp-birthday__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6600' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hp-birthday__header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hp-birthday__badge {
    display: inline-block;
    background: var(--hp-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hp-birthday__header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 12px;
}

.hp-birthday__header p {
    font-size: 16px;
    color: var(--hp-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Large countdown timer */
.hp-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.hp-countdown__block {
    text-align: center;
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 90px;
    box-shadow: var(--hp-shadow);
}

.hp-countdown__number {
    font-size: 42px;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1;
    margin-bottom: 6px;
    font-family: monospace;
}

.hp-countdown__label {
    font-size: 12px;
    color: var(--hp-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Offer cards */
.hp-birthday__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hp-offer-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-lg);
}

.hp-offer-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #fff;
}

.hp-offer-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 12px;
}

.hp-offer-card__price {
    margin-bottom: 16px;
}

.hp-offer-card__original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.hp-offer-card__discounted {
    font-size: 24px;
    font-weight: 800;
    color: var(--hp-primary);
}

.hp-offer-card__period {
    font-size: 13px;
    color: var(--hp-text-light);
    font-weight: 400;
}

.hp-offer-card__discount-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.15);
    color: var(--hp-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hp-offer-card .hp-btn {
    width: 100%;
}

.hp-birthday__note {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--hp-text-light);
    position: relative;
    z-index: 1;
}

.hp-birthday__expired {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--hp-text-light);
    padding: 20px;
}

/* ==========================================================================
   Section 5: Products Showcase
   ========================================================================== */
.hp-products {
    padding: 80px 0;
    background: var(--hp-white);
}

.hp-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hp-product-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 32px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.hp-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-lg);
}

.hp-product-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--hp-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.hp-product-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #fff3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--hp-primary);
}

.hp-product-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 8px;
}

.hp-product-card__desc {
    font-size: 14px;
    color: var(--hp-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hp-product-card__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--hp-primary);
    margin-bottom: 16px;
}

.hp-product-card__price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--hp-text-light);
}

.hp-product-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.hp-product-card__features li {
    font-size: 13px;
    color: var(--hp-text);
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-product-card__features li:last-child {
    border-bottom: none;
}

.hp-product-card__features .fa-circle-check {
    color: #22c55e;
    font-size: 12px;
    flex-shrink: 0;
}

.hp-product-card__cta {
    display: flex;
    gap: 8px;
}

.hp-product-card__cta .hp-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
}

/* ==========================================================================
   Section 6: Why Choose AgenWebsite
   ========================================================================== */
.hp-why {
    padding: 80px 0;
    background: var(--hp-gray-bg);
}

.hp-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hp-why__item {
    text-align: center;
}

.hp-why__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--hp-primary);
    transition: all 0.3s ease;
}

.hp-why__item:hover .hp-why__icon {
    background: var(--hp-primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.25);
}

.hp-why__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 10px;
}

.hp-why__desc {
    font-size: 14px;
    color: var(--hp-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   Section 7: How It Works
   ========================================================================== */
.hp-how {
    padding: 80px 0;
    background: var(--hp-white);
}

.hp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hp-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 20px;
}

.hp-step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--hp-primary);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.25);
}

.hp-step__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 12px;
}

.hp-step__desc {
    font-size: 14px;
    color: var(--hp-text-light);
    line-height: 1.7;
}

.hp-step__connector {
    display: flex;
    align-items: center;
    padding-top: 20px;
    color: var(--hp-primary);
    font-size: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   Section 8: Testimonials
   ========================================================================== */
.hp-testimonials {
    padding: 80px 0;
    background: var(--hp-gray-bg);
}

.hp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hp-testimonial-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

.hp-testimonial-card:hover {
    box-shadow: var(--hp-shadow);
}

.hp-testimonial-card__stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.hp-testimonial-card__quote {
    font-size: 15px;
    color: var(--hp-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.hp-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-primary);
}

.hp-testimonial-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--hp-text);
}

.hp-testimonial-card__role {
    font-size: 13px;
    color: var(--hp-text-light);
}

/* ==========================================================================
   Section 9: Final CTA Banner
   ========================================================================== */
.hp-final-cta {
    padding: 80px 0;
    background: var(--hp-dark);
    text-align: center;
}

.hp-final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hp-final-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hp-final-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-final-cta .hp-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hp-final-cta .hp-btn--outline:hover {
    border-color: #fff;
    color: #fff;
}

/* ==========================================================================
   Section 10: FAQ
   ========================================================================== */
.hp-faq {
    padding: 80px 0;
    background: var(--hp-gray-bg);
}

.hp-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.hp-faq__item {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.hp-faq__item:hover {
    box-shadow: var(--hp-shadow);
}

.hp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--hp-text);
    line-height: 1.4;
    gap: 16px;
}

.hp-faq__question:hover {
    color: var(--hp-primary);
}

.hp-faq__icon {
    font-size: 14px;
    color: var(--hp-text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hp-faq__item--open .hp-faq__icon {
    transform: rotate(180deg);
    color: var(--hp-primary);
}

.hp-faq__answer {
    display: none;
    padding: 0 24px 20px;
}

.hp-faq__item--open .hp-faq__answer {
    display: block;
}

.hp-faq__answer p {
    font-size: 15px;
    color: var(--hp-text-light);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */
@media (max-width: 991px) {
    .hp-promo-bar__inner {
        font-size: 13px;
        gap: 10px;
    }

    .hp-promo-bar__text--full {
        display: none;
    }

    .hp-promo-bar__text--short {
        display: inline;
    }

    .hp-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hp-hero__title {
        font-size: 32px;
    }

    .hp-hero__cta {
        justify-content: center;
    }

    .hp-hero__trust {
        justify-content: center;
    }

    .hp-hero__image {
        display: none;
    }

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

    .hp-countdown {
        gap: 12px;
    }

    .hp-countdown__block {
        padding: 16px 18px;
        min-width: 72px;
    }

    .hp-countdown__number {
        font-size: 32px;
    }

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

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

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

    .hp-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hp-step {
        max-width: 400px;
    }

    .hp-step__connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .hp-testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Default: hide short text, show full text */
.hp-promo-bar__text--short {
    display: none;
}

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */
@media (max-width: 575px) {
    .hp-promo-bar {
        padding: 10px 0;
    }

    .hp-promo-bar__badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .hp-hero {
        padding: 50px 0 40px;
    }

    .hp-hero__title {
        font-size: 26px;
    }

    .hp-hero__desc {
        font-size: 15px;
    }

    .hp-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hp-stats {
        padding: 30px 0;
    }

    .hp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hp-stat__number {
        font-size: 28px;
    }

    .hp-stat__label {
        font-size: 12px;
    }

    .hp-birthday {
        padding: 50px 0;
    }

    .hp-birthday__header h2 {
        font-size: 26px;
    }

    .hp-countdown {
        gap: 8px;
    }

    .hp-countdown__block {
        padding: 12px 14px;
        min-width: 60px;
    }

    .hp-countdown__number {
        font-size: 26px;
    }

    .hp-countdown__label {
        font-size: 10px;
    }

    .hp-birthday__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hp-products {
        padding: 50px 0;
    }

    .hp-products__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hp-section-header h2 {
        font-size: 24px;
    }

    .hp-why {
        padding: 50px 0;
    }

    .hp-why__grid {
        grid-template-columns: 1fr;
    }

    .hp-why__icon {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .hp-how {
        padding: 50px 0;
    }

    .hp-step__number {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .hp-step__title {
        font-size: 17px;
    }

    .hp-testimonials {
        padding: 50px 0;
    }

    .hp-final-cta {
        padding: 50px 0;
    }

    .hp-final-cta h2 {
        font-size: 26px;
    }

    .hp-faq {
        padding: 50px 0;
    }

    .hp-faq__question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .hp-faq__answer {
        padding: 0 20px 16px;
    }
}
