/* ------------------------------------------------------------------ */
/* Hellofixx main.css — component styles                              */
/*                                                                    */
/* Loaded after style.css (which contains the theme header, brand     */
/* CSS custom properties, and base reset). This file contains all     */
/* the component / utility classes that mirror the Next.js globals.   */
/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* Layout helpers                                                     */
/* ------------------------------------------------------------------ */

.hfx-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
}
@media (min-width: 640px)  { .hfx-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .hfx-container { padding: 0 2rem; } }

.hfx-section { padding: 5rem 0; }
@media (min-width: 1024px) { .hfx-section { padding: 7rem 0; } }

.hfx-section-label {
        display: block;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--hfx-primary);
        margin-bottom: 0.75rem;
}

.hfx-section-title {
        font-size: 1.875rem;
        font-weight: 500;
        margin-bottom: 1rem;
}
@media (min-width: 640px)  { .hfx-section-title { font-size: 2rem; } }
@media (min-width: 1024px) { .hfx-section-title { font-size: 2.5rem; } }

.hfx-section-subtitle {
        font-size: 1rem;
        color: var(--hfx-text-soft);
        max-width: 42rem;
        margin: 0 auto 0;
}
.hfx-text-center { text-align: center; }
.hfx-text-primary { color: var(--hfx-primary); }
.hfx-gradient-text {
        background: linear-gradient(135deg, #FF6741 0%, #FF8F73 50%, #FFB89E 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
}

.hfx-grid {
        display: grid;
        gap: 1.5rem;
}
.hfx-grid-2 { grid-template-columns: 1fr; }
.hfx-grid-3 { grid-template-columns: 1fr; }
.hfx-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
        .hfx-grid-2 { grid-template-columns: repeat(2, 1fr); }
        .hfx-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
        .hfx-grid-3 { grid-template-columns: repeat(3, 1fr); }
        .hfx-grid-4 { grid-template-columns: repeat(4, 1fr); }
        .hfx-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ------------------------------------------------------------------ */
/* Buttons                                                            */
/* ------------------------------------------------------------------ */

.hfx-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem 1.5rem;
        border-radius: 0.75rem;
        font-size: 0.875rem;
        font-weight: 500;
        font-family: var(--hfx-font-poppins);
        transition: all .2s ease;
        cursor: pointer;
        text-decoration: none;
        line-height: 1.2;
}
.hfx-btn:disabled { opacity: .55; cursor: not-allowed; }

.hfx-btn-primary {
        background: linear-gradient(135deg, #FF6741 0%, #FF8F73 100%);
        color: #fff;
}
.hfx-btn-primary:hover:not(:disabled) {
        background: linear-gradient(135deg, #E85A36 0%, #FF6741 100%);
        box-shadow: var(--hfx-shadow-lg);
        transform: translateY(-2px);
        color: #fff;
}

.hfx-btn-outline {
        background: transparent;
        border: 2px solid var(--hfx-primary);
        color: var(--hfx-primary);
}
.hfx-btn-outline:hover {
        background: var(--hfx-brand-tint);
        color: var(--hfx-primary);
}

.hfx-btn-ghost {
        background: var(--hfx-surface);
        color: var(--hfx-ink);
        border: 1px solid var(--hfx-border);
}
.hfx-btn-ghost:hover {
        border-color: var(--hfx-primary);
        color: var(--hfx-primary);
}

.hfx-btn-block { width: 100%; }

/* ------------------------------------------------------------------ */
/* Pills / chips                                                      */
/* ------------------------------------------------------------------ */

.hfx-pill {
        display: inline-block;
        background: var(--hfx-brand-tint);
        color: var(--hfx-primary);
        font-size: 0.625rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
        padding: 0.125rem 0.625rem;
        border-radius: 999px;
}

/* ------------------------------------------------------------------ */
/* Cards                                                              */
/* ------------------------------------------------------------------ */

.hfx-card {
        background: var(--hfx-surface);
        border-radius: var(--hfx-radius-lg);
        padding: 1.5rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all .3s ease;
}
.hfx-card:hover {
        box-shadow: var(--hfx-shadow-lg);
        transform: translateY(-4px);
}

.hfx-icon-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--hfx-brand-tint);
        color: var(--hfx-primary);
        font-size: 1.5rem;
        flex-shrink: 0;
}

.hfx-icon-circle-sm { width: 2.5rem; height: 2.5rem; font-size: 1.25rem; }
.hfx-icon-circle-lg { width: 3.5rem; height: 3.5rem; font-size: 1.75rem; }

.hfx-icon-gradient {
        background: linear-gradient(135deg, #FF6741 0%, #FF8F73 100%);
        color: #fff;
}

/* ------------------------------------------------------------------ */
/* Header                                                            */
/* ------------------------------------------------------------------ */

.hfx-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: #fff;
        border-bottom: 2px solid transparent;
        transition: all .3s ease;
}
.hfx-header.is-scrolled {
        border-bottom-color: rgba(255, 103, 65, 0.3);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hfx-header-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        height: 4rem;
}
@media (min-width: 1024px) { .hfx-header-inner { height: 5rem; padding: 0 2rem; } }

.hfx-logo img { height: 2.25rem; width: auto; }
.hfx-logo .custom-logo { height: 2.25rem; width: auto; }

.hfx-nav {
        display: none;
        align-items: center;
        gap: 0.25rem;
}
@media (min-width: 1024px) { .hfx-nav { display: flex; } }

.hfx-nav-link {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--hfx-ink);
        font-family: var(--hfx-font-poppins);
        transition: color .2s ease;
        background: transparent;
        border: none;
        cursor: pointer;
}
.hfx-nav-link::after {
        content: "";
        position: absolute;
        left: 0.75rem; right: 0.75rem;
        bottom: 0.25rem;
        height: 2px; width: 0;
        background: var(--hfx-primary);
        transition: width .25s ease;
}
.hfx-nav-link:hover, .hfx-nav-link.is-active { color: var(--hfx-primary); }
.hfx-nav-link:hover::after, .hfx-nav-link.is-active::after { width: calc(100% - 1.5rem); }

.hfx-dropdown { position: relative; }
.hfx-dropdown-menu {
        position: absolute;
        top: 100%; left: 0;
        margin-top: 0.5rem;
        background: #fff;
        border-radius: var(--hfx-radius);
        box-shadow: var(--hfx-shadow-lg);
        border: 1px solid var(--hfx-border);
        padding: 0.75rem;
        display: none;
        grid-template-columns: 1fr 1fr;
        gap: 0 1rem;
        width: 640px;
        max-width: 90vw;
        max-height: 70vh;
        overflow-y: auto;
        z-index: 60;
}
.hfx-dropdown.is-open .hfx-dropdown-menu { display: grid; }

.hfx-dropdown-group-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--hfx-primary);
        padding: 0.5rem 0.5rem 0.25rem;
}
.hfx-dropdown-item {
        display: block;
        padding: 0.375rem 0.5rem;
        font-size: 0.875rem;
        color: var(--hfx-ink);
        border-radius: 0.375rem;
        transition: background .15s ease;
}
.hfx-dropdown-item:hover { background: var(--hfx-brand-tint); color: var(--hfx-primary); }

.hfx-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.hfx-search-trigger {
        display: none;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        border: 1px solid var(--hfx-border);
        border-radius: 999px;
        font-size: 0.875rem;
        color: var(--hfx-text-soft);
        transition: all .2s ease;
        background: transparent;
        cursor: pointer;
        font-family: var(--hfx-font-poppins);
}
@media (min-width: 768px) { .hfx-search-trigger { display: inline-flex; } }
.hfx-search-trigger:hover { border-color: var(--hfx-primary); color: var(--hfx-primary); }
.hfx-search-trigger kbd {
        font-family: monospace;
        font-size: 0.625rem;
        background: rgba(0, 0, 0, 0.06);
        padding: 0.0625rem 0.375rem;
        border-radius: 0.25rem;
}

.hfx-icon-btn {
        width: 2.5rem; height: 2.5rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background .15s ease;
        color: var(--hfx-ink);
        background: transparent;
        border: none;
        cursor: pointer;
}
.hfx-icon-btn:hover { background: var(--hfx-brand-tint); color: var(--hfx-primary); }

/* Theme-toggle: show sun in light, moon in dark (CSS handles which is visible) */
.hfx-theme-toggle-sun { display: none; }
.hfx-theme-toggle-moon { display: inline-flex; }
.dark .hfx-theme-toggle-sun { display: inline-flex; }
.dark .hfx-theme-toggle-moon { display: none; }

.hfx-hamburger { display: inline-flex; }
@media (min-width: 1024px) { .hfx-hamburger { display: none; } }
.hfx-search-mobile { display: inline-flex; }
@media (min-width: 768px) { .hfx-search-mobile { display: none; } }

.hfx-hamburger .hfx-close-icon { display: none; }
.hfx-hamburger.is-open .hfx-menu-icon { display: none; }
.hfx-hamburger.is-open .hfx-close-icon { display: inline-flex; }

.hfx-cta-btn span { display: inline; }
@media (max-width: 640px) {
        .hfx-cta-btn span { display: none; }
        .hfx-cta-btn::before { content: "★"; }
}

/* Mobile menu (rendered as sibling of header) */
.hfx-mobile-menu {
        position: fixed;
        top: 4rem;
        left: 0; right: 0;
        z-index: 40;
        background: #fff;
        border-top: 1px solid var(--hfx-border);
        box-shadow: var(--hfx-shadow-lg);
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
        padding: 1rem;
        display: none;
}
@media (min-width: 1024px) {
        .hfx-mobile-menu { top: 5rem; max-height: calc(100vh - 5rem); }
}
.hfx-mobile-menu.is-open { display: block; }

.hfx-mobile-nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--hfx-ink);
        border-radius: 0.5rem;
        font-family: var(--hfx-font-poppins);
        background: transparent;
        border: none;
        cursor: pointer;
        text-decoration: none;
}
.hfx-mobile-nav-link:hover, .hfx-mobile-nav-link.is-active {
        background: var(--hfx-brand-tint);
        color: var(--hfx-primary);
}

.hfx-mobile-accordion-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--hfx-ink);
        border-radius: 0.5rem;
        font-family: var(--hfx-font-poppins);
        background: transparent;
        border: none;
        cursor: pointer;
}
.hfx-mobile-accordion-trigger:hover { background: var(--hfx-brand-tint); color: var(--hfx-primary); }
.hfx-mobile-accordion-trigger .chevron { transition: transform .2s ease; }
.hfx-mobile-accordion-trigger.is-open .chevron { transform: rotate(180deg); }

.hfx-mobile-accordion-panel {
        display: none;
        padding-left: 0.75rem;
}
.hfx-mobile-accordion-panel.is-open { display: block; }

.hfx-mobile-sublink {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        color: var(--hfx-text-soft);
        border-radius: 0.5rem;
        text-decoration: none;
        background: transparent;
        border: none;
        cursor: pointer;
}
.hfx-mobile-sublink:hover { background: var(--hfx-brand-tint); color: var(--hfx-primary); }

.hfx-mobile-group-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--hfx-primary);
}

/* ------------------------------------------------------------------ */
/* Search overlay                                                    */
/* ------------------------------------------------------------------ */

.hfx-search-overlay {
        position: fixed;
        inset: 0;
        z-index: 100;
        background: rgba(15, 15, 26, 0.95);
        backdrop-filter: blur(4px);
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding: 4rem 1rem;
}
.hfx-search-overlay.is-open { display: flex; }
.hfx-search-dialog {
        background: #fff;
        border-radius: var(--hfx-radius-lg);
        width: 100%;
        max-width: 540px;
        box-shadow: var(--hfx-shadow-lg);
        overflow: hidden;
}
.hfx-search-input {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border: none;
        outline: none;
        border-bottom: 1px solid var(--hfx-border);
        background: #fff;
        color: var(--hfx-ink);
}
.hfx-search-results {
        max-height: 360px;
        overflow-y: auto;
}
.hfx-search-result {
        display: block;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        color: var(--hfx-ink);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        text-decoration: none;
}
.hfx-search-result:hover { background: var(--hfx-brand-tint); color: var(--hfx-primary); }
.hfx-search-result small { display: block; color: var(--hfx-text-muted); font-size: 0.75rem; }

/* ------------------------------------------------------------------ */
/* Hero                                                              */
/* ------------------------------------------------------------------ */

.hfx-hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 60%, #FFF5F5 100%);
        min-height: 70vh;
        display: flex;
        align-items: center;
        padding: 7rem 0 5rem;
}
@media (min-width: 1024px) { .hfx-hero { min-height: 85vh; padding: 8rem 0 5rem; } }

.hfx-hero-trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--hfx-brand-tint);
        color: var(--hfx-primary);
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.375rem 0.75rem;
        border-radius: 999px;
        margin-bottom: 1.5rem;
}

.hfx-hero h1 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.1;
}
@media (min-width: 640px)  { .hfx-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hfx-hero h1 { font-size: 3.75rem; } }

.hfx-hero p.lead {
        font-size: 1.125rem;
        color: var(--hfx-text-soft);
        max-width: 36rem;
        margin-bottom: 2rem;
}
@media (min-width: 640px) { .hfx-hero p.lead { font-size: 1.25rem; } }

.hfx-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hfx-hero-trust-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.hfx-hero-trust-row .item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--hfx-ink); }
.hfx-hero-divider { display: none; width: 1px; height: 1.5rem; background: rgba(0, 0, 0, 0.1); }
@media (min-width: 640px) { .hfx-hero-divider { display: block; } }

.hfx-hero-figure { display: none; }
@media (min-width: 1024px) { .hfx-hero-figure { display: block; position: relative; } }

.hfx-hero-figure .frame {
        padding: 0.375rem;
        background: linear-gradient(135deg, #FF6741 0%, #FF8F73 50%, #FFB89E 100%);
        border-radius: var(--hfx-radius-2xl);
        box-shadow: var(--hfx-shadow-lg);
}
.hfx-hero-figure .frame > div {
        border-radius: calc(var(--hfx-radius-2xl) - 6px);
        overflow: hidden;
        background: #fff;
}
.hfx-hero-figure img { width: 100%; height: auto; }

.hfx-hero-badge {
        position: absolute;
        bottom: -1rem;
        left: -1rem;
        background: #fff;
        border-radius: var(--hfx-radius);
        box-shadow: var(--hfx-shadow-lg);
        padding: 0.75rem 1.25rem;
        border: 1px solid rgba(0, 0, 0, 0.04);
}
.hfx-hero-badge .label { font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hfx-text-soft); font-weight: 600; }
.hfx-hero-badge .year { font-size: 1.5rem; font-weight: 700; color: var(--hfx-primary); line-height: 1; }
.hfx-hero-badge .sub { font-size: 0.625rem; color: var(--hfx-text-soft); }

.hfx-hero-fade {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 6rem;
        background: linear-gradient(180deg, transparent, #FFF5F5);
        pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* Trust strip                                                       */
/* ------------------------------------------------------------------ */

.hfx-trust-strip {
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        padding: 2rem 0;
}
.hfx-trust-strip-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        align-items: center;
}
.hfx-trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--hfx-text-soft);
}
.hfx-trust-item .icon { color: var(--hfx-primary); width: 1.25rem; height: 1.25rem; }
.hfx-trust-divider {
        width: 1px; height: 2rem;
        background: rgba(0, 0, 0, 0.1);
        display: none;
}
@media (min-width: 640px) { .hfx-trust-divider { display: block; } }

/* ------------------------------------------------------------------ */
/* Services / cards                                                  */
/* ------------------------------------------------------------------ */

.hfx-services { background: var(--hfx-brand-bg); }
.hfx-why-choose { background: #fff; }
.hfx-how-it-works { background: var(--hfx-brand-bg); }
.hfx-tips { background: #fff; }
.hfx-booking { background: var(--hfx-brand-bg); }
.hfx-zip { background: #fff; }
.hfx-service-areas { background: var(--hfx-brand-bg); }
.hfx-blog { background: #fff; }
.hfx-faq { background: var(--hfx-brand-bg); }
.hfx-contact { background: #fff; }

.hfx-service-card {
        position: relative;
        background: #fff;
        border-radius: var(--hfx-radius-lg);
        padding: 1.5rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all .3s ease;
        display: block;
        color: inherit;
}
.hfx-service-card:hover {
        box-shadow: var(--hfx-shadow-lg);
        transform: translateY(-4px);
        color: inherit;
}
.hfx-service-card .hfx-icon-circle { margin-bottom: 1rem; transition: transform .3s ease; }
.hfx-service-card:hover .hfx-icon-circle { transform: scale(1.1); }
.hfx-service-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--hfx-ink); }
.hfx-service-card p { font-size: 0.875rem; color: var(--hfx-text-soft); margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
}
.hfx-service-card .footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
}
.hfx-service-card .price { font-size: 0.875rem; font-weight: 600; color: var(--hfx-primary); }
.hfx-service-card .more { font-size: 0.875rem; font-weight: 500; color: var(--hfx-primary); display: inline-flex; align-items: center; gap: 0.25rem; }
.hfx-service-card:hover .more { gap: 0.5rem; }
.hfx-service-card .phone-link {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--hfx-ink);
        text-decoration: none;
}
.hfx-service-card .phone-link:hover { color: var(--hfx-primary); }
.hfx-service-card .phone-link .icon {
        width: 1.75rem; height: 1.75rem;
        border-radius: 999px;
        background: var(--hfx-brand-tint);
        color: var(--hfx-primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
}

/* ------------------------------------------------------------------ */
/* Stats section                                                     */
/* ------------------------------------------------------------------ */

.hfx-stats {
        position: relative;
        background: var(--hfx-dark-section);
        color: #fff;
        padding: 5rem 0;
        overflow: hidden;
}
@media (min-width: 1024px) { .hfx-stats { padding: 6rem 0; } }

.hfx-grid-pattern {
        position: absolute; inset: 0;
        background-image:
                linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.5;
        pointer-events: none;
}

.hfx-stat { text-align: center; }
.hfx-stat .hfx-stat-icon {
        width: 3.5rem; height: 3.5rem;
        border-radius: var(--hfx-radius-lg);
        background: linear-gradient(135deg, #FF6741 0%, #FF8F73 100%);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
}
.hfx-stat .hfx-stat-number {
        font-size: 1.875rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.5rem;
}
@media (min-width: 640px)  { .hfx-stat .hfx-stat-number { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hfx-stat .hfx-stat-number { font-size: 3rem; } }
.hfx-stat .label { font-size: 0.875rem; color: #D1D5DB; font-weight: 500; }
.hfx-stat .sublabel { font-size: 0.75rem; color: #6B7280; margin-top: 0.25rem; }

/* ------------------------------------------------------------------ */
/* How it works                                                      */
/* ------------------------------------------------------------------ */

.hfx-step-row {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
}
@media (min-width: 1024px) {
        .hfx-step-row { flex-direction: row; align-items: stretch; gap: 0; }
        .hfx-step-row > * { flex: 1; margin: 0 0.75rem; }
}

.hfx-step-card {
        position: relative;
        background: #fff;
        border-radius: var(--hfx-radius-lg);
        padding: 2rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        text-align: center;
}
.hfx-step-num {
        width: 3.5rem; height: 3.5rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #FF6741 0%, #FF8F73 100%);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
}
.hfx-step-card .icon { color: var(--hfx-primary); width: 2.5rem; height: 2.5rem; margin: 0 auto 0.75rem; }
.hfx-step-card h3 { color: var(--hfx-primary); margin-bottom: 0.5rem; }
.hfx-step-arrow { display: none; }
@media (min-width: 1024px) {
        .hfx-step-arrow { display: flex; align-items: center; justify-content: center; width: 4rem; flex: 0 0 4rem; }
}

/* ------------------------------------------------------------------ */
/* Tips                                                              */
/* ------------------------------------------------------------------ */

.hfx-tip-card {
        background: #fff;
        border-radius: var(--hfx-radius-lg);
        padding: 1.5rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all .3s ease;
}
.hfx-tip-card:hover { box-shadow: var(--hfx-shadow-lg); transform: translateY(-4px); }
.hfx-tip-card .top { display: flex; align-items: center; justify-content: space-between; }
.hfx-tip-card h3 { font-size: 1.125rem; margin: 1rem 0 0.5rem; }
.hfx-tip-card p { font-size: 0.875rem; margin-bottom: 1rem; }
.hfx-tip-card .more { font-size: 0.875rem; font-weight: 500; color: var(--hfx-primary); display: inline-flex; align-items: center; gap: 0.25rem; text-decoration: none; }
.hfx-tip-card:hover .more { gap: 0.5rem; }

/* ------------------------------------------------------------------ */
/* Booking calendar                                                  */
/* ------------------------------------------------------------------ */

.hfx-booking-grid {
        display: grid;
        gap: 2rem;
        margin-top: 3rem;
}
@media (min-width: 1024px) { .hfx-booking-grid { grid-template-columns: 1fr 1fr; } }

.hfx-calendar, .hfx-booking-panel {
        background: #fff;
        border-radius: var(--hfx-radius-2xl);
        padding: 1.5rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
}

.hfx-cal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
}
.hfx-cal-header .month { font-size: 1.125rem; font-weight: 600; color: var(--hfx-ink); }
.hfx-cal-nav-btn {
        width: 2.25rem; height: 2.25rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--hfx-ink);
        transition: background .15s ease;
        background: transparent;
        border: none;
        cursor: pointer;
}
.hfx-cal-nav-btn:hover:not(:disabled) { background: var(--hfx-brand-tint); color: var(--hfx-primary); }
.hfx-cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.hfx-cal-weekdays {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0.25rem;
        margin-bottom: 0.5rem;
}
.hfx-cal-weekdays div {
        text-align: center;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--hfx-text-muted);
        padding: 0.5rem 0;
}

.hfx-cal-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0.25rem;
}
.hfx-cal-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--hfx-ink);
        background: transparent;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all .15s ease;
        font-family: var(--hfx-font-poppins);
}
.hfx-cal-day:hover:not(:disabled) { background: var(--hfx-brand-tint); }
.hfx-cal-day.muted { color: var(--hfx-text-muted); pointer-events: none; opacity: 0.4; }
.hfx-cal-day.past { opacity: 0.4; pointer-events: none; }
.hfx-cal-day.today { border-color: var(--hfx-primary); color: var(--hfx-primary); }
.hfx-cal-day.selected { background: var(--hfx-primary); color: #fff; }

.hfx-cal-status {
        margin-top: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        color: var(--hfx-text-soft);
}
.hfx-cal-status .icon { color: var(--hfx-primary); }

.hfx-time-slots {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
}
.hfx-time-slot {
        padding: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        text-align: center;
        border: 1px solid var(--hfx-border);
        background: #fff;
        color: var(--hfx-ink);
        cursor: pointer;
        transition: all .15s ease;
        font-family: var(--hfx-font-poppins);
}
.hfx-time-slot:hover { border-color: var(--hfx-primary); }
.hfx-time-slot.selected { background: var(--hfx-primary); color: #fff; border-color: var(--hfx-primary); }

.hfx-booking-summary {
        background: var(--hfx-brand-bg);
        border-radius: var(--hfx-radius);
        padding: 1rem;
        margin-top: 1rem;
}
.hfx-booking-summary .row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.25rem 0; }
.hfx-booking-summary .row .label { color: var(--hfx-text-soft); }
.hfx-booking-summary .row .value { font-weight: 500; color: var(--hfx-ink); }
.hfx-booking-summary .row.total { border-top: 1px solid rgba(0,0,0,0.1); margin-top: 0.5rem; padding-top: 0.5rem; }
.hfx-booking-summary .row.total .value { color: var(--hfx-primary); font-weight: 600; }

.hfx-booking-success { text-align: center; padding: 2rem 0; }
.hfx-booking-success .icon { color: var(--hfx-primary); width: 4rem; height: 4rem; margin: 0 auto 1rem; }
.hfx-booking-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.hfx-booking-success .ref-box {
        background: var(--hfx-brand-bg);
        border-radius: var(--hfx-radius);
        padding: 0.75rem 1.5rem;
        margin: 1rem auto 1.5rem;
        display: inline-block;
}

/* ------------------------------------------------------------------ */
/* ZIP checker                                                       */
/* ------------------------------------------------------------------ */

.hfx-zip-card {
        background: #fff;
        border-radius: var(--hfx-radius-2xl);
        padding: 2rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        max-width: 42rem;
        margin: 0 auto;
        text-align: center;
}
.hfx-zip-form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 28rem;
        margin: 1.5rem auto 0;
}
@media (min-width: 640px) { .hfx-zip-form { flex-direction: row; } }
.hfx-zip-result { margin-top: 1.25rem; display: flex; align-items: flex-start; gap: 0.5rem; justify-content: center; text-align: left; }
.hfx-zip-result .icon-ok { color: var(--hfx-primary); width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; }
.hfx-zip-result .icon-err { color: #EF4444; width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; }

/* ------------------------------------------------------------------ */
/* Service areas                                                     */
/* ------------------------------------------------------------------ */

.hfx-area-stats { margin: 3rem 0; }
.hfx-area-card {
        background: #fff;
        border-radius: var(--hfx-radius);
        padding: 1.5rem;
        text-align: center;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
}
.hfx-area-card .value { font-size: 1.875rem; font-weight: 700; color: var(--hfx-primary); margin-bottom: 0.25rem; }
.hfx-area-card .label { font-size: 0.875rem; color: var(--hfx-text-soft); }

.hfx-area-map {
        background: #fff;
        border-radius: var(--hfx-radius-2xl);
        padding: 2rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
}
.hfx-area-map svg { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.hfx-area-map .caption {
        text-align: center;
        font-size: 0.875rem;
        color: var(--hfx-text-soft);
        margin-top: 1.25rem;
        min-height: 1.5rem;
}

.hfx-state-grid {
        display: grid;
        gap: 1.5rem;
        margin-top: 3rem;
        grid-template-columns: 1fr;
}
@media (min-width: 640px) { .hfx-state-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hfx-state-grid { grid-template-columns: repeat(5, 1fr); } }

.hfx-region-card { background: #fff; border-radius: var(--hfx-radius); padding: 1.25rem; box-shadow: var(--hfx-shadow-sm); border: 1px solid rgba(0, 0, 0, 0.04); }
.hfx-region-card h3 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hfx-primary); margin-bottom: 0.75rem; }
.hfx-region-card .chips { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.hfx-region-card .chip {
        background: var(--hfx-brand-bg);
        color: var(--hfx-text-soft);
        font-size: 0.75rem;
        font-weight: 500;
        padding: 0.25rem 0.625rem;
        border-radius: 0.375rem;
        border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ------------------------------------------------------------------ */
/* Blog                                                              */
/* ------------------------------------------------------------------ */

.hfx-blog-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
}
.hfx-blog-card {
        display: block;
        background: #fff;
        border-radius: var(--hfx-radius-lg);
        overflow: hidden;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all .3s ease;
        color: inherit;
        text-decoration: none;
}
.hfx-blog-card:hover { box-shadow: var(--hfx-shadow-lg); transform: translateY(-4px); color: inherit; }
.hfx-blog-thumb {
        height: 12rem;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.9);
}
.hfx-blog-thumb .pattern {
        position: absolute; inset: 0;
        background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.4) 1px, transparent 0);
        background-size: 16px 16px;
        opacity: 0.3;
}
.hfx-blog-thumb .icon { width: 4rem; height: 4rem; position: relative; }
.hfx-blog-thumb .category {
        position: absolute;
        top: 0.75rem; left: 0.75rem;
        background: rgba(255, 255, 255, 0.9);
        color: var(--hfx-primary);
        font-size: 0.625rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
        padding: 0.125rem 0.625rem;
        border-radius: 999px;
}
.hfx-blog-card .body { padding: 1.5rem; }
.hfx-blog-card .meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--hfx-text-muted); margin-bottom: 0.5rem; }
.hfx-blog-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        transition: color .2s ease;
}
.hfx-blog-card:hover h3 { color: var(--hfx-primary); }
.hfx-blog-card .excerpt { font-size: 0.875rem; color: var(--hfx-text-soft); margin-bottom: 1rem;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hfx-blog-card .more { font-size: 0.875rem; font-weight: 500; color: var(--hfx-primary); display: inline-flex; align-items: center; gap: 0.25rem; }
.hfx-blog-card:hover .more { gap: 0.5rem; }

/* ------------------------------------------------------------------ */
/* FAQ                                                               */
/* ------------------------------------------------------------------ */

.hfx-faq-search {
        max-width: 28rem;
        margin: 2rem auto 2.5rem;
        position: relative;
}
.hfx-faq-search .icon {
        position: absolute;
        left: 0.75rem; top: 50%; transform: translateY(-50%);
        color: var(--hfx-text-muted);
        width: 1rem; height: 1rem;
}
.hfx-faq-search input {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        border-radius: var(--hfx-radius);
        border: 1px solid var(--hfx-border);
        background: #fff;
        color: var(--hfx-ink);
        font-size: 0.875rem;
        outline: none;
        transition: border .15s ease;
}
.hfx-faq-search input:focus { border-color: var(--hfx-primary); }

.hfx-faq-list { display: grid; gap: 1rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .hfx-faq-list { grid-template-columns: 1fr 1fr; } }

.hfx-faq-item {
        background: #fff;
        border-radius: var(--hfx-radius);
        border: 1px solid rgba(0, 0, 0, 0.06);
        overflow: hidden;
}
.hfx-faq-item .q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--hfx-ink);
        text-align: left;
        font-family: var(--hfx-font-poppins);
        transition: background .15s ease;
        background: transparent;
        border: none;
        cursor: pointer;
}
.hfx-faq-item .q:hover { background: var(--hfx-brand-tint); }
.hfx-faq-item .q .chevron {
        color: var(--hfx-primary);
        width: 1rem; height: 1rem;
        transition: transform .2s ease;
        flex-shrink: 0;
}
.hfx-faq-item.is-open .q .chevron { transform: rotate(180deg); }
.hfx-faq-item .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
}
.hfx-faq-item.is-open .a { max-height: 320px; }
.hfx-faq-item .a p { padding: 0 1.25rem 1rem; font-size: 0.875rem; line-height: 1.6; color: var(--hfx-text-soft); }

/* ------------------------------------------------------------------ */
/* Contact form                                                      */
/* ------------------------------------------------------------------ */

.hfx-contact-form {
        background: #fff;
        border-radius: var(--hfx-radius-2xl);
        padding: 2rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        margin-top: 2.5rem;
        max-width: 42rem;
        margin-left: auto; margin-right: auto;
}
.hfx-contact-form .field { margin-bottom: 1rem; }
.hfx-contact-form .field-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
}
@media (min-width: 640px) { .hfx-contact-form .field-row { grid-template-columns: 1fr 1fr; } }
.hfx-contact-form label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--hfx-ink);
        margin-bottom: 0.375rem;
}
.hfx-contact-input {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: var(--hfx-radius);
        border: 1px solid var(--hfx-border);
        background: #fff;
        color: var(--hfx-ink);
        font-size: 0.875rem;
        outline: none;
        transition: border .15s ease;
        font-family: var(--hfx-font-roboto);
}
.hfx-contact-input:focus { border-color: var(--hfx-primary); }
.hfx-contact-input::placeholder { color: var(--hfx-text-muted); }

select.hfx-contact-input {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        padding-right: 2rem;
}

.hfx-contact-success { text-align: center; padding: 1.5rem 0; }
.hfx-contact-success .icon-wrap {
        width: 4rem; height: 4rem;
        border-radius: 999px;
        background: var(--hfx-brand-tint);
        color: var(--hfx-primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
}
.hfx-contact-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ------------------------------------------------------------------ */
/* CTA banner                                                        */
/* ------------------------------------------------------------------ */

.hfx-cta-banner-wrap {
        position: relative;
        z-index: 10;
        margin-bottom: -3rem;
        padding: 4rem 0 0;
}
.hfx-cta-banner {
        max-width: 72rem;
        margin: 0 auto;
        padding: 0 1rem;
}
@media (min-width: 640px) { .hfx-cta-banner { padding: 0 1.5rem; } }
.hfx-cta-banner-inner {
        background: linear-gradient(135deg, #FAFAFA 0%, #F5F0EB 100%);
        border-radius: var(--hfx-radius-2xl);
        padding: 3rem 1.5rem;
        text-align: center;
        box-shadow: var(--hfx-shadow-lg);
        border: 1px solid rgba(0, 0, 0, 0.04);
        position: relative;
        overflow: hidden;
}
@media (min-width: 640px) { .hfx-cta-banner-inner { padding: 4rem 3rem; } }
.hfx-cta-banner-inner .blur {
        position: absolute;
        top: -5rem; right: -5rem;
        width: 16rem; height: 16rem;
        background: rgba(255, 103, 65, 0.1);
        border-radius: 999px;
        filter: blur(60px);
        pointer-events: none;
}
.hfx-cta-banner-inner .inner { position: relative; }
.hfx-cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ------------------------------------------------------------------ */
/* Footer                                                            */
/* ------------------------------------------------------------------ */

.hfx-footer {
        background: var(--hfx-dark-footer);
        color: #fff;
        padding: 5rem 0 2rem;
        position: relative;
        margin-top: 5rem;
}
.hfx-footer .gradient-bar {
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FF6741, #FF8F73, #FFB89E);
}
.hfx-footer .inner { max-width: 56rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
.hfx-footer .logo img { height: 2.5rem; width: auto; margin: 0 auto 1rem; filter: brightness(0) invert(1); }
.hfx-footer .tagline { font-size: 0.875rem; color: #9CA3AF; margin-bottom: 1.5rem; }
.hfx-footer .divider {
        width: 6rem; height: 2px;
        background: linear-gradient(90deg, #FF6741, #FFB89E);
        margin: 0 auto 1.5rem;
}
.hfx-footer .copyright { font-size: 0.75rem; color: #6B7280; }
.hfx-footer .made { font-size: 0.75rem; color: #6B7280; margin-top: 0.5rem; }

/* Footer disclaimer (collapsible) */
.hfx-disclaimer { margin: 2rem 0 0.5rem; }
.hfx-disclaimer-toggle {
        display: inline-flex; align-items: center; gap: 0.375rem;
        background: none; border: 0; cursor: pointer;
        font-family: var(--hfx-font-poppins);
        font-size: 0.75rem; font-weight: 600;
        color: #9CA3AF; padding: 0;
        transition: color 0.2s;
}
.hfx-disclaimer-toggle:hover { color: #FF8F73; }
.hfx-disclaimer-toggle .hfx-disclaimer-icon {
        display: inline-flex; align-items: center; justify-content: center;
        width: 1rem; height: 1rem; border-radius: 9999px;
        background: rgba(255,103,65,0.15); color: #FF8F73;
        font-size: 0.625rem; font-weight: 700; font-style: italic;
        font-family: serif;
}
.hfx-disclaimer-toggle .hfx-disclaimer-chevron {
        display: inline-block; transition: transform 0.2s;
        font-size: 0.625rem;
}
.hfx-disclaimer-toggle[aria-expanded="true"] .hfx-disclaimer-chevron { transform: rotate(180deg); }
.hfx-disclaimer-text {
        margin: 0.75rem auto 0;
        max-width: 42rem;
        font-size: 0.6875rem; line-height: 1.6;
        color: #6B7280;
}
.hfx-disclaimer-text[hidden] { display: none; }

/* ------------------------------------------------------------------ */
/* Service page                                                      */
/* ------------------------------------------------------------------ */

.hfx-service-hero {
        position: relative;
        background: var(--hfx-dark-section);
        color: #fff;
        padding: 4rem 0;
        overflow: hidden;
}
@media (min-width: 1024px) { .hfx-service-hero { padding: 6rem 0; } }
.hfx-service-hero .hfx-grid-pattern { opacity: 0.3; }

.hfx-breadcrumb {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: #9CA3AF;
        margin-bottom: 1.5rem;
}
.hfx-breadcrumb a { color: #FF8F73; }
.hfx-breadcrumb a:hover { color: #fff; }
.hfx-breadcrumb .sep { color: #6B7280; }

.hfx-service-hero h1 { color: #fff; font-size: 1.875rem; margin-bottom: 1.25rem; }
@media (min-width: 640px)  { .hfx-service-hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hfx-service-hero h1 { font-size: 3rem; } }
.hfx-service-hero p.lead { color: #D1D5DB; font-size: 1rem; max-width: 36rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .hfx-service-hero p.lead { font-size: 1.125rem; } }

.hfx-stars { display: inline-flex; align-items: center; gap: 0.125rem; }
.hfx-stars .star { color: var(--hfx-primary); width: 1rem; height: 1rem; display: inline-flex; }
.hfx-stars .star.empty { color: #6B7280; }

.hfx-service-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hfx-btn-dark-outline {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #fff;
}
.hfx-btn-dark-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.hfx-btn-call {
        background: rgba(255, 143, 115, 0.1);
        border: 2px solid rgba(255, 143, 115, 0.6);
        color: #fff;
}
.hfx-btn-call:hover { background: rgba(255, 143, 115, 0.2); color: #fff; }

.hfx-campaign-note { margin-top: 1rem; font-size: 0.75rem; color: #9CA3AF; }

/* Service hero decorative composition */
.hfx-service-hero-figure { display: none; position: relative; height: 20rem; }
@media (min-width: 1024px) { .hfx-service-hero-figure { display: block; } }
.hfx-ring {
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 999px;
        border: 1px dashed rgba(255, 103, 65, 0.2);
}
.hfx-ring.r1 { width: 22rem; height: 22rem; }
.hfx-ring.r2 { width: 18rem; height: 18rem; border-color: rgba(255, 103, 65, 0.25); }
.hfx-ring.r3 { width: 13rem; height: 13rem; border-color: rgba(255, 103, 65, 0.3); }
.hfx-center-icon {
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        width: 8rem; height: 8rem;
        border-radius: var(--hfx-radius-2xl);
        background: linear-gradient(135deg, #FF6741, #FF8F73);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        box-shadow: var(--hfx-shadow-lg);
}
.hfx-float-tile {
        position: absolute;
        width: 3.5rem; height: 3.5rem;
        border-radius: var(--hfx-radius-lg);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #FF8F73;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
}

/* Service page sections */
.hfx-timeline { max-width: 56rem; margin: 3rem auto 0; }
.hfx-timeline-row { display: flex; gap: 1.5rem; position: relative; }
.hfx-timeline-num {
        width: 3rem; height: 3rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #FF6741, #FF8F73);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.125rem;
        font-weight: 700;
        flex-shrink: 0;
}
.hfx-timeline-connector {
        position: absolute;
        left: 1.5rem; top: 3rem; bottom: 0;
        border-left: 2px dashed var(--hfx-primary-pale);
}
.hfx-timeline-card {
        background: #fff;
        border-radius: var(--hfx-radius);
        padding: 1.5rem;
        box-shadow: var(--hfx-shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.04);
        flex: 1;
        margin-bottom: 1.5rem;
}

.hfx-benefits-dark {
        background: var(--hfx-dark-section);
        color: #fff;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
}
.hfx-benefits-dark .hfx-grid-pattern { opacity: 0.3; }
.hfx-benefits-dark h2 { color: #fff; }
.hfx-benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(8px);
        border-radius: var(--hfx-radius);
        padding: 1.25rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
}
.hfx-benefit-item .icon { color: #FF8F73; flex-shrink: 0; width: 1.5rem; height: 1.5rem; margin-top: 0.125rem; }
.hfx-benefit-item p { font-size: 0.875rem; color: #E5E7EB; margin: 0; }

.hfx-pricing-card {
        background: #fff;
        border-radius: var(--hfx-radius-2xl);
        padding: 2rem;
        box-shadow: var(--hfx-shadow-lg);
        border: 1px solid rgba(0, 0, 0, 0.04);
        text-align: left;
        max-width: 42rem;
        margin: 2.5rem auto 0;
}
.hfx-pricing-card .small { font-size: 0.75rem; color: var(--hfx-text-muted); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; margin-bottom: 0.5rem; }
.hfx-pricing-card .price-row { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.hfx-pricing-card .price { font-size: 3rem; font-weight: 700; color: var(--hfx-ink); }
.hfx-pricing-card .per { font-size: 1.125rem; color: var(--hfx-text-muted); }
.hfx-pricing-card .note { font-size: 0.875rem; color: var(--hfx-text-soft); text-align: center; margin-top: 0.5rem; margin-bottom: 1.5rem; }
.hfx-pricing-card .divider { height: 1px; background: rgba(0,0,0,0.06); margin: 1.5rem 0; }
.hfx-pricing-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.hfx-pricing-card li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.875rem; color: var(--hfx-ink); }
.hfx-pricing-card li .icon { color: var(--hfx-primary); width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

.hfx-back-to-home {
        position: fixed;
        bottom: 1.5rem; right: 1.5rem;
        z-index: 40;
        width: 3rem; height: 3rem;
        border-radius: 999px;
        background: var(--hfx-primary);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--hfx-shadow-lg);
        transition: all .2s ease;
}
.hfx-back-to-home:hover { background: var(--hfx-primary-dark); transform: translateY(-4px); color: #fff; }

.hfx-sticky-call-bar {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 30;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        border-top: 1px solid var(--hfx-border);
        padding: 0.75rem 1rem;
        display: none;
        align-items: center;
        gap: 0.75rem;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}
.hfx-sticky-call-bar.is-visible { display: flex; }
@media (min-width: 1024px) { .hfx-sticky-call-bar { display: none !important; } }
.hfx-sticky-call-bar > * { flex: 1; }

/* ------------------------------------------------------------------ */
/* Misc / utility                                                    */
/* ------------------------------------------------------------------ */

.hfx-scroll-progress {
        position: fixed;
        top: 0; left: 0;
        height: 3px;
        background: linear-gradient(90deg, #FF6741, #FF8F73);
        z-index: 99;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .1s linear;
}

.hfx-back-to-top {
        position: fixed;
        bottom: 1.5rem; right: 1.5rem;
        z-index: 35;
        width: 2.75rem; height: 2.75rem;
        border-radius: 999px;
        background: var(--hfx-primary);
        color: #fff;
        display: none;
        align-items: center;
        justify-content: center;
        box-shadow: var(--hfx-shadow-lg);
        transition: all .2s ease;
        border: none;
        cursor: pointer;
}
.hfx-back-to-top.is-visible { display: inline-flex; }
.hfx-back-to-top:hover { background: var(--hfx-primary-dark); transform: translateY(-2px); color: #fff; }

.hfx-cookie-consent {
        position: fixed;
        bottom: 1rem; left: 1rem; right: 1rem;
        z-index: 70;
        background: #fff;
        border-radius: var(--hfx-radius-lg);
        padding: 1rem 1.25rem;
        box-shadow: var(--hfx-shadow-lg);
        border: 1px solid var(--hfx-border);
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        max-width: 56rem;
        margin: 0 auto;
}
.hfx-cookie-consent.is-visible { display: flex; }
.hfx-cookie-consent p { font-size: 0.875rem; color: var(--hfx-text-soft); margin: 0; }

.hfx-mini-toc {
        position: fixed;
        top: 50%; right: 1rem;
        transform: translateY(-50%);
        z-index: 30;
        display: none;
        flex-direction: column;
        gap: 0.625rem;
}
@media (min-width: 1280px) { .hfx-mini-toc { display: flex; } }
.hfx-mini-toc a {
        width: 0.5rem; height: 0.5rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.2);
        transition: all .2s ease;
}
.hfx-mini-toc a.is-active { background: var(--hfx-primary); transform: scale(1.6); }

.hfx-line-clamp-2 {
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hfx-line-clamp-3 {
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Spinner */
.hfx-spinner {
        width: 1rem; height: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-top-color: #fff;
        border-radius: 999px;
        animation: hfx-spin 0.7s linear infinite;
        display: inline-block;
}
@keyframes hfx-spin { to { transform: rotate(360deg); } }

/* SVG icon size default */
.hfx-icon { width: 1.25rem; height: 1.25rem; }

/* Scrollbar */
.hfx-scroll::-webkit-scrollbar { width: 6px; height: 6px; }
.hfx-scroll::-webkit-scrollbar-track { background: transparent; }
.hfx-scroll::-webkit-scrollbar-thumb { background: var(--hfx-primary-pale); border-radius: 4px; }
.hfx-scroll::-webkit-scrollbar-thumb:hover { background: var(--hfx-primary); }

/* Reveal-on-scroll */
.hfx-reveal { opacity: 0; transform: translateY(24px); transition: all .6s ease; }
.hfx-reveal.is-visible { opacity: 1; transform: translateY(0); }
