/* ============================================
   HOA LANDING PAGE - FINAL VERSION
   Version: 4.0 (90px Padding + All Fixes)
   ============================================ */

/* Reset */
body.hoa-landing-page {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background: #f5f5f5 !important;
    font-size: 18px;
    line-height: 1.6;
}

body.hoa-landing-page * {
    box-sizing: border-box !important;
}

body.hoa-landing-page #content,
body.hoa-landing-page #main,
body.hoa-landing-page .site-content,
body.hoa-landing-page .main-content,
body.hoa-landing-page .content-area {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
.hoa-container {
        padding: 0 1rem !important;
        overflow-x: hidden !important;
}
/* Background */
.hoa-background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.hoa-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: hoaFloat 20s infinite ease-in-out;
}

.hoa-gradient-orb--primary {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #9a0900, #c20b00);
    top: -10%;
    right: -10%;
}

.hoa-gradient-orb--secondary {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #29a9df, #1e8bb8);
    bottom: -10%;
    left: -5%;
    animation-delay: 7s;
}

.hoa-gradient-orb--accent {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #10b981, #29a9df);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes hoaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Header */
.hoa-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.hoa-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hoa-navigation__logo {
    display: flex;
    align-items: center;
}

.hoa-logo-image {
    height: auto;
    width: 260px !important;
    transition: transform 0.3s;
}

.hoa-logo-image:hover {
    transform: scale(1.05);
}

.hoa-navigation__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hoa-navigation__item {
    margin: 0;
}

.hoa-navigation__link {
    color: #656565;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    transition: color 0.3s;
}

.hoa-navigation__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9a0900;
    transition: width 0.3s;
}

.hoa-navigation__link:hover {
    color: #9a0900;
}

.hoa-navigation__link:hover::after {
    width: 100%;
}

.hoa-button--header {
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    white-space: nowrap;
}

/* Container */
.hoa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Hero */
.hoa-hero {
    padding: 100px 0 !important;
    display: flex;
    align-items: center;
}

.hoa-hero .hoa-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.hoa-hero__content {
    animation: hoaFadeIn 1s ease-out;
}

@keyframes hoaFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hoa-hero__title {
    font-size: 4.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #292929;
}

.hoa-hero__title-line {
    display: block;
}

.hoa-hero__description {
    font-size: 1.9rem;
    color: #212121;
    margin: 0 0 2rem 0;
    line-height: 1.7;
    font-weight: 400;
}

.hoa-hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hoa-hero__benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #656565;
    font-size: 18px;
    line-height: 1.6;
}

.hoa-hero__benefit-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Form */
.hoa-hero__form-wrapper {
    animation: hoaFadeIn 1s ease-out 0.3s both;
}

.hoa-consultation-form {
	width: 100% !important;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 2px solid #e5e5e5;
}

.hoa-consultation-form__title {
    font-size: 26px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 0.5rem 0;
}

.hoa-consultation-form__subtitle {
    font-size: 16px;
    color: #656565;
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

/* ============================================
   GRAVITY FORMS STYLING
   ============================================ */

.hoa-consultation-form .gform_wrapper {
    max-width: 100% !important;
    margin: 0 !important;
}

.hoa-consultation-form .gform_wrapper .gform_body {
    padding: 0 !important;
}

.hoa-consultation-form .gform_wrapper ul.gform_fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.hoa-consultation-form .gform_wrapper input[type='text'],
.hoa-consultation-form .gform_wrapper input[type='email'],
.hoa-consultation-form .gform_wrapper input[type='tel'],
.hoa-consultation-form .gform_wrapper select,
.hoa-consultation-form .gform_wrapper textarea {
    width: 100% !important;
    padding: 0.875rem !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 0.75rem !important;
    font-size: 16px !important;
    font-family: inherit !important;
    transition: all 300ms !important;
}

.hoa-consultation-form .gform_wrapper input:focus,
.hoa-consultation-form .gform_wrapper select:focus,
.hoa-consultation-form .gform_wrapper textarea:focus {
    outline: none !important;
    border-color: #9a0900 !important;
    box-shadow: 0 0 0 3px rgba(154, 9, 0, 0.1) !important;
}

.hoa-consultation-form .gform_wrapper .gform_button,
.hoa-consultation-form .gform_wrapper .gform_footer input[type='submit'] {
    width: 100% !important;
	max-width: 100% !important;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #9a0900, #7a0700) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0.75rem !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 300ms !important;
    margin-top:20px;
}

.hoa-consultation-form .gform_wrapper .gform_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}


.hoa-consultation-form .gform_wrapper .validation_message,
.hoa-consultation-form .gform_wrapper .gfield_description.validation_message {
    color: #9a0900 !important;
    font-size: 18px !important;
    margin-top: 30px !important;
}

.hoa-consultation-form .gform_wrapper .gform_footer {
    margin: 0 !important;
    padding: 0 !important;
}


/* Stats - 80px Padding */
.hoa-stats-simple {
    padding: 30px 0 !important;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.hoa-stats-simple__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.hoa-stat-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.hoa-stat-item:hover {
    transform: translateY(-4px);
}

.hoa-stat-item__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 9, 0, 0.08);
    border-radius: 50%;
    color: #9a0900;
    transition: all 0.3s;
}

.hoa-stat-item:hover .hoa-stat-item__icon {
    background: rgba(154, 9, 0, 0.15);
    transform: scale(1.1);
}

.hoa-stat-item__icon svg {
    width: 28px;
    height: 28px;
}

.hoa-stat-item__title {
    font-size: 22px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 0.5rem 0;
}

.hoa-stat-item__description {
    color: #656565;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* Section Headers */
.hoa-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hoa-section-header__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #292929;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hoa-section-header__subtitle {
    font-size: 1.5rem;
    color: #656565;
    margin: 0;
    line-height: 1.6;
}

/* All Sections - 90px Padding */
.hoa-why-choose-us,
.hoa-services,
.hoa-results,
.hoa-testimonials,
.hoa-how-it-works,
.hoa-faq {
    padding: 90px 0 !important;
}

.hoa-services,
.hoa-testimonials,
.hoa-faq {
    background: #f5f5f5;
}

/* Grid Layouts */
.hoa-why-choose-us__grid,
.hoa-services__grid,
.hoa-results__grid,
.hoa-testimonials__grid,
.hoa-how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Feature Cards */
.hoa-feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hoa-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #9a0900;
}

.hoa-feature-card__icon-wrapper {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    color: #9a0900;
}

.hoa-feature-card__icon {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.hoa-feature-card:hover .hoa-feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.hoa-feature-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.hoa-feature-card__description {
    font-size: 17px;
    color: #656565;
    line-height: 1.7;
    margin: 0;
}

/* Service Cards */
.hoa-service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hoa-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #29a9df;
}

.hoa-service-card__icon-wrapper {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    color: #29a9df;
}

.hoa-service-card__icon {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.hoa-service-card:hover .hoa-service-card__icon {
    transform: scale(1.1);
}

.hoa-service-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.hoa-service-card__description {
    font-size: 17px;
    color: #656565;
    line-height: 1.7;
    margin: 0;
}

.hoa-services__cta {
    text-align: center;
    margin-top: 3rem;
}

/* Result Cards */
.hoa-result-card {
    text-align: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hoa-result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #29a9df;
}

.hoa-result-card__icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #29a9df;
}

.hoa-result-card__icon {
    width: 100%;
    height: 100%;
}

.hoa-result-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.hoa-result-card__description {
    font-size: 18px;
    color: #656565;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials */
.hoa-testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.hoa-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hoa-testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.hoa-star-icon {
    width: 22px;
    height: 22px;
    color: #fbbf24;
}

.hoa-testimonial-card__text {
    font-size: 20px;
    color: #656565;
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    font-style: italic;
}

.hoa-testimonial-card__author {
    font-weight: 700;
    color: #292929;
    margin: 0 0 4px 0;
    font-size: 18px;
}

.hoa-testimonial-card__role {
    font-size: 16px;
    color: #656565;
    margin: 0;
}

/* How It Works */
.hoa-step-card {
    text-align: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    padding-top: 4rem;
}

.hoa-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hoa-step-card__number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #9a0900, #7a0700);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.hoa-step-card__icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    color: #29a9df;
}

.hoa-step-card__icon {
    width: 100%;
    height: 100%;
}

.hoa-step-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.hoa-step-card__description {
    font-size: 17px;
    color: #656565;
    line-height: 1.7;
    margin: 0;
}

/* FAQ */
.hoa-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hoa-faq-item {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.hoa-faq-item:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.hoa-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #292929;
    transition: color 0.3s;
    line-height: 1.4;
}

.hoa-faq-item__question:hover {
    color: #9a0900;
}

.hoa-faq-item__icon {
    width: 24px;
    height: 24px;
    color: #9a0900;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.hoa-faq-item.hoa-active .hoa-faq-item__icon {
    transform: rotate(180deg);
}

.hoa-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.hoa-faq-item.hoa-active .hoa-faq-item__answer {
    max-height: 500px;
}

.hoa-faq-item__answer p {
    padding: 0 1.75rem 1.75rem;
    color: #656565;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* Final CTA - 80px Padding */
.hoa-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #9a0900, #7a0700);
    position: relative;
    overflow: hidden;
}

.hoa-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23ffffff' fill-opacity='0.05'%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");
    opacity: 0.5;
}

.hoa-final-cta__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hoa-final-cta__title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.hoa-final-cta__description {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin: 0 0 3rem 0;
    line-height: 1.6;
}

/* Buttons */
.hoa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 19px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.hoa-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.hoa-button:hover::before {
    width: 300px;
    height: 300px;
}

.hoa-button--primary {
    background: linear-gradient(135deg, #9a0900, #7a0700);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hoa-button--light {
    background: #fff;
    color: #9a0900;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hoa-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hoa-button--large {
    padding: 1.25rem 2.5rem;
    font-size: 20px;
}

.hoa-button__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.hoa-button:hover .hoa-button__icon {
    transform: translateX(4px);
}

.hoa-button span {
    position: relative;
    z-index: 1;
}

/* Footer */
.hoa-footer {
    background: #292929;
    color: #9ca3af;
    padding: 80px 0 1rem;
}

.hoa-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.hoa-footer__logo {
    margin-bottom: 1.5rem;
}

.hoa-footer-logo-image {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hoa-footer__description {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 16px;
    margin: 0 0 1rem 0;
}

.hoa-footer__heading {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.hoa-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hoa-footer__link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
    line-height: 1.6;
}

a.hoa-footer__link:hover {
    color: #9a0900;
}

.hoa-footer__bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 1.5rem;
    text-align: center;
}

.hoa-footer__copyright {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 0.5rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    body.hoa-landing-page {
        font-size: 17px;
    }
    
    .hoa-hero .hoa-container {
        grid-template-columns: 1fr;
    }
    
    .hoa-navigation__menu {
        display: none;
    }
    
    .hoa-hero__title {
        font-size: 3.5rem;
    }
    
    .hoa-hero__description {
        font-size: 1.6rem;
    }
    
    .hoa-section-header__title {
        font-size: 2.75rem;
    }
}


@media (max-width: 768px) {
    body.hoa-landing-page {
        font-size: 16px;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .hoa-button--header {
        display: none;
    }
    
    .hoa-navigation {
        justify-content: center;
    }
    
    .hoa-hero,
    .hoa-why-choose-us,
    .hoa-services,
    .hoa-results,
    .hoa-testimonials,
    .hoa-how-it-works,
    .hoa-faq,
    .hoa-final-cta,
    .hoa-stats-simple,
    .hoa-footer {
        padding: 60px 20px !important;
    }
    
    .hoa-hero__title {
        font-size: 3.75rem;
    }
    
    .hoa-hero__description {
        font-size: 17px;
    }
    
    .hoa-section-header__title {
        font-size: 30px;
    }
    
    .hoa-stats-simple__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hoa-consultation-form .gform_wrapper .gform_button,
	.hoa-consultation-form .gform_wrapper .gform_footer input[type='submit'] {
    width: 100% !important;
	max-width: 100% !important;
    font-size: 16px !important;
	}
	.hoa-consultation-form {
	width: 100% !important;
    background: #fff;
    padding: 1.5rem;
	}
	.hoa-consultation-form__title, .hoa-consultation-form__subtitle {
	text-align: center;
	}

}

@media (max-width: 480px) {
    .hoa-hero,
    .hoa-why-choose-us,
    .hoa-services,
    .hoa-results,
    .hoa-testimonials,
    .hoa-how-it-works,
    .hoa-faq,
    .hoa-final-cta,
    .hoa-stats-simple,
    .hoa-footer {
        padding: 60px 10px !important;
    }
    
    .hoa-hero__title {
        font-size: 30px;
    }
    
    .hoa-stats-simple__grid {
        grid-template-columns: 1fr;
    }
    .hoa-stat-item__title, .hoa-feature-card__title, .hoa-service-card__title,
	.hoa-result-card__title, .hoa-result-card__title {
    font-size: 20px;
	}
}