/* ============================================================
   BIV Hub Landing Page v2 — homepage.css
   Converted from React+Tailwind source (Trang chu biv hub)
   Design: Indigo #6366F1, Inter font, Slate palette
   ============================================================ */

/* --- CSS Variables ----------------------------------------- */
:root {
    --hp-primary: #6366F1;
    --hp-primary-dark: #4F46E5;
    --hp-primary-darker: #4338CA;
    --hp-primary-light: #818CF8;
    --hp-navy: #1E3A8A;
    --hp-sky: #0EA5E9;
    --hp-text: #0F172A;
    --hp-text-secondary: #475569;
    --hp-text-muted: #64748B;
    --hp-text-light: #94A3B8;
    --hp-bg: #FFFFFF;
    --hp-bg-alt: #F8FAFC;
    --hp-bg-dark: #0F172A;
    --hp-border: #F1F5F9;
    --hp-border-dark: #1E293B;
    --hp-green: #22C55E;
    --hp-blue: #3B82F6;
    --hp-purple: #A855F7;
    --hp-amber: #F59E0B;
    --hp-rose: #F43F5E;
    --hp-fb: #1877F2;
    --hp-radius: 16px;
    --hp-radius-sm: 8px;
    --hp-radius-lg: 24px;
    --hp-radius-xl: 1rem;
    --hp-shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --hp-shadow: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .05);
    --hp-shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, .15);
    --hp-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, .25);
    --hp-shadow-indigo: 0 10px 25px -5px rgba(99, 102, 241, .25);
    --hp-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --hp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hp-container: 1280px;
}

/* --- Reset & Base ------------------------------------------ */
.hp *,
.hp *::before,
.hp *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hp {
    font-family: var(--hp-font);
    color: var(--hp-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--hp-bg);
}

.hp img {
    max-width: 100%;
    height: auto;
}

.hp a {
    text-decoration: none;
    color: inherit;
    transition: var(--hp-transition);
}

.hp ul {
    list-style: none;
}

.hp svg {
    flex-shrink: 0;
}

.hp-container {
    max-width: var(--hp-container);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .hp-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .hp-container {
        padding: 0 32px;
    }
}

/* --- Navbar ------------------------------------------------ */
.hp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--hp-transition);
    background: transparent;
}

.hp-nav.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--hp-shadow-sm);
}

.hp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--hp-container);
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
}

@media (min-width: 1024px) {
    .hp-nav-inner {
        height: 80px;
        padding: 0 32px;
    }
}

.hp-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--hp-radius-xl);
    background: linear-gradient(135deg, var(--hp-navy), var(--hp-sky));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .hp-nav-logo-icon {
        width: 48px;
        height: 48px;
    }
}

.hp-nav-logo-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

@media (min-width: 1024px) {
    .hp-nav-logo-icon svg {
        width: 24px;
        height: 24px;
    }
}

.hp-nav-logo-text {
    font-size: 1.125rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .hp-nav-logo-text {
        font-size: 1.25rem;
    }
}

.hp-nav-logo-sub {
    display: none;
    font-size: .75rem;
    color: var(--hp-text-muted);
}

@media (min-width: 640px) {
    .hp-nav-logo-sub {
        display: block;
    }
}

.hp-nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .hp-nav-links {
        display: flex;
    }
}

.hp-nav-links a {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--hp-text-secondary);
}

.hp-nav-links a:hover {
    color: var(--hp-primary);
}

.hp-nav-cta-wrap {
    display: none;
}

@media (min-width: 1024px) {
    .hp-nav-cta-wrap {
        display: block;
    }
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hp-transition);
    border: none;
    font-family: var(--hp-font);
}

.hp-btn-primary {
    background: linear-gradient(to right, var(--hp-primary), var(--hp-primary-dark));
    color: #fff;
    box-shadow: var(--hp-shadow-indigo);
}

.hp-btn-primary:hover {
    background: linear-gradient(to right, var(--hp-primary-dark), var(--hp-primary-darker));
    transform: translateY(-2px);
}

.hp-btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 12px;
}

.hp-btn-outline {
    background: transparent;
    color: var(--hp-text-secondary);
    border: 2px solid #E2E8F0;
}

.hp-btn-outline:hover {
    background: var(--hp-bg-alt);
}

.hp-btn-white {
    background: #fff;
    color: #4F46E5 !important;
    font-weight: 600;
}

.hp-btn-white svg {
    color: #4F46E5 !important;
    stroke: #4F46E5 !important;
}

.hp-btn-white:hover {
    background: #EEF2FF;
    transform: translateY(-2px);
}

.hp-btn-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
}

.hp-btn-ghost:hover {
    background: rgba(255, 255, 255, .15);
}

.hp-hamburger {
    display: none;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--hp-text-secondary);
}

@media (min-width: 1024px) {
    .hp-hamburger {
        display: none;
    }
}

.hp-hamburger svg {
    width: 24px;
    height: 24px;
}

/* Mobile menu */
.hp-mobile-menu {
    display: none !important;
    background: #fff;
    border-top: 1px solid var(--hp-border);
    padding: 16px 0;
}

.hp-mobile-menu.open {
    display: block;
}

@media (min-width: 1024px) {
    .hp-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .hp-hamburger {
        display: flex;
    }

    .hp-mobile-menu.open {
        display: block !important;
    }
}

.hp-mobile-menu a {
    display: block;
    padding: 8px 16px;
    font-weight: 500;
    color: var(--hp-text-secondary);
}

.hp-mobile-menu a:hover {
    color: var(--hp-primary);
}

.hp-mobile-menu .hp-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* --- Hero -------------------------------------------------- */
.hp-hero {
    position: relative;
    padding: 128px 0 80px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hp-hero {
        padding: 160px 0 112px;
    }
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--hp-bg-alt), #fff 40%, rgba(238, 242, 255, .5));
}

.hp-hero-blob1 {
    position: absolute;
    top: 80px;
    right: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, .05), rgba(168, 85, 247, .05));
    border-radius: 50%;
    filter: blur(60px);
}

.hp-hero-blob2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top right, rgba(59, 130, 246, .05), rgba(6, 182, 212, .05));
    border-radius: 50%;
    filter: blur(60px);
}

.hp-hero-grid {
    position: relative;
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hp-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.hp-hero-left {
    text-align: center;
}

@media (min-width: 1024px) {
    .hp-hero-left {
        text-align: left;
    }
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EEF2FF;
    border: 1px solid #E0E7FF;
    border-radius: 99px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.hp-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--hp-green);
    border-radius: 50%;
    animation: hpPulse 2s infinite;
}

@keyframes hpPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.hp-hero-badge span {
    font-size: .875rem;
    font-weight: 500;
    color: #4338CA;
}

.hp-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--hp-text);
}

@media (min-width: 640px) {
    .hp-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hp-hero h1 {
        font-size: 3.75rem;
    }
}

.hp-hero h1 .gradient-text {
    display: block;
    background: linear-gradient(to right, var(--hp-primary), var(--hp-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero-sub {
    font-size: 1.125rem;
    color: var(--hp-text-secondary);
    margin-bottom: 32px;
    max-width: 640px;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .hp-hero-sub {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hp-hero-sub {
        margin-left: 0;
        margin-right: auto;
    }
}

.hp-hero-sub strong {
    color: var(--hp-text);
}

.hp-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .hp-hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hp-hero-actions {
        justify-content: flex-start;
    }
}

.hp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: .875rem;
    color: var(--hp-text-muted);
}

@media (min-width: 1024px) {
    .hp-hero-trust {
        justify-content: flex-start;
    }
}

.hp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-hero-trust-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Dashboard preview */
.hp-dash {
    position: relative;
    background: #fff;
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow-xl);
    border: 1px solid var(--hp-border);
}

.hp-dash-bar {
    background: linear-gradient(to right, var(--hp-bg-alt), #F1F5F9);
    padding: 12px 24px;
    border-bottom: 1px solid var(--hp-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-dash-dots {
    display: flex;
    gap: 8px;
}

.hp-dash-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hp-dash-dots span:nth-child(1) {
    background: #F87171;
}

.hp-dash-dots span:nth-child(2) {
    background: #FBBF24;
}

.hp-dash-dots span:nth-child(3) {
    background: #4ADE80;
}

.hp-dash-bar-title {
    font-size: .875rem;
    color: var(--hp-text-muted);
    margin-left: 8px;
}

.hp-dash-body {
    padding: 24px;
}

.hp-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hp-dash-stat {
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.hp-dash-stat.indigo {
    background: #EEF2FF;
}

.hp-dash-stat.blue {
    background: #EFF6FF;
}

.hp-dash-stat.green {
    background: #F0FDF4;
}

.hp-dash-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.hp-dash-stat.indigo strong {
    color: var(--hp-primary);
}

.hp-dash-stat.blue strong {
    color: var(--hp-blue);
}

.hp-dash-stat.green strong {
    color: #16A34A;
}

.hp-dash-stat span {
    font-size: .75rem;
    color: var(--hp-text-secondary);
}

/* Chat messages */
.hp-dash-msg {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.hp-dash-msg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-dash-msg-avatar svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.hp-dash-msg-avatar.zalo {
    background: var(--hp-blue);
}

.hp-dash-msg-avatar.fb {
    background: var(--hp-fb);
}

.hp-dash-msg-bubble {
    flex: 1;
    background: var(--hp-bg-alt);
    border-radius: 12px;
    padding: 12px;
}

.hp-dash-msg-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hp-dash-msg-header strong {
    font-size: .875rem;
}

.hp-dash-msg-header span {
    font-size: .75rem;
    color: var(--hp-text-light);
}

.hp-dash-msg-bubble p {
    font-size: .875rem;
    color: var(--hp-text-secondary);
}

/* Floating badge */
.hp-dash-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid var(--hp-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-dash-float-icon {
    width: 48px;
    height: 48px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-dash-float-icon svg {
    width: 24px;
    height: 24px;
    color: #16A34A;
}

.hp-dash-float strong {
    font-weight: 700;
    color: var(--hp-text);
}

.hp-dash-float span {
    font-size: .875rem;
    color: var(--hp-text-muted);
    display: block;
}

/* --- Stats ------------------------------------------------- */
.hp-stats {
    padding: 64px 0;
    background: var(--hp-bg-alt);
    border-top: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
}

.hp-stats-header {
    text-align: center;
    margin-bottom: 48px;
}

.hp-stats-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .hp-stats-header h2 {
        font-size: 1.875rem;
    }
}

.hp-stats-header p {
    color: var(--hp-text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .hp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hp-stats-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.hp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.hp-stat-icon {
    width: 56px;
    height: 56px;
    background: #EEF2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hp-stat-icon svg {
    width: 28px;
    height: 28px;
}

.hp-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .hp-stat-value {
        font-size: 2.25rem;
    }
}

.hp-stat-label {
    color: var(--hp-text-secondary);
}

/* Company info bar */
.hp-stats-company {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E2E8F0;
}

.hp-stats-company-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: .875rem;
    color: var(--hp-text-muted);
}

.hp-stats-company-inner strong {
    font-weight: 600;
    color: var(--hp-text-secondary);
}

/* --- Features ---------------------------------------------- */
.hp-features {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .hp-features {
        padding: 112px 0;
    }
}

.hp-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.hp-section-badge {
    display: inline-block;
    background: #EEF2FF;
    color: #4338CA;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: .875rem;
    margin-bottom: 16px;
}

.hp-section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .hp-section-header h2 {
        font-size: 2.25rem;
    }
}

.hp-section-header p {
    font-size: 1.125rem;
    color: var(--hp-text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.hp-features-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .hp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hp-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.hp-feature-card {
    background: #fff;
    border-radius: var(--hp-radius);
    padding: 24px;
    border: 1px solid var(--hp-border);
    box-shadow: var(--hp-shadow-sm);
    transition: var(--hp-transition);
}

@media (min-width: 1024px) {
    .hp-feature-card {
        padding: 32px;
    }
}

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

.hp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .3s;
}

.hp-feature-card:hover .hp-feature-icon {
    transform: scale(1.1);
}

.hp-feature-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.hp-feature-icon.bg-blue {
    background: var(--hp-blue);
}

.hp-feature-icon.bg-purple {
    background: var(--hp-purple);
}

.hp-feature-icon.bg-green {
    background: var(--hp-green);
}

.hp-feature-icon.bg-amber {
    background: var(--hp-amber);
}

.hp-feature-icon.bg-indigo {
    background: var(--hp-primary);
}

.hp-feature-icon.bg-rose {
    background: var(--hp-rose);
}

.hp-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hp-feature-card p {
    color: var(--hp-text-secondary);
    line-height: 1.65;
}

/* Additional features */
.hp-features-extra {
    background: var(--hp-bg-alt);
    border-radius: var(--hp-radius-lg);
    padding: 32px;
}

@media (min-width: 1024px) {
    .hp-features-extra {
        padding: 48px;
    }
}

.hp-features-extra h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.hp-features-extra-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .hp-features-extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hp-features-extra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hp-extra-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hp-extra-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--hp-shadow-sm);
}

.hp-extra-icon svg {
    width: 24px;
    height: 24px;
}

.hp-extra-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.hp-extra-item p {
    font-size: .875rem;
    color: var(--hp-text-secondary);
}

/* --- How It Works ------------------------------------------ */
.hp-how {
    padding: 80px 0;
    background: var(--hp-bg-alt);
}

@media (min-width: 1024px) {
    .hp-how {
        padding: 112px 0;
    }
}

.hp-steps-wrap {
    position: relative;
}

.hp-steps-line {
    display: none;
    position: absolute;
    top: 32px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right, #C7D2FE, #A5B4FC, #C7D2FE);
}

@media (min-width: 1024px) {
    .hp-steps-line {
        display: block;
    }
}

.hp-steps {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .hp-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.hp-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hp-step-num {
    width: 64px;
    height: 64px;
    border-radius: var(--hp-radius);
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--hp-shadow-indigo);
}

.hp-step-icon {
    width: 56px;
    height: 56px;
    background: #EEF2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hp-step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--hp-primary);
}

.hp-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hp-step p {
    color: var(--hp-text-secondary);
    max-width: 320px;
}

.hp-how-support {
    margin-top: 64px;
    text-align: center;
}

.hp-how-support-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: var(--hp-radius);
    padding: 16px 32px;
    box-shadow: var(--hp-shadow-sm);
    border: 1px solid var(--hp-border);
}

.hp-how-support-icon {
    width: 48px;
    height: 48px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-how-support-icon svg {
    width: 24px;
    height: 24px;
    color: #16A34A;
}

.hp-how-support-card strong {
    display: block;
    font-weight: 600;
}

.hp-how-support-card span {
    font-size: .875rem;
    color: var(--hp-text-secondary);
}

/* --- CTA Section ------------------------------------------- */
.hp-cta {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .hp-cta {
        padding: 112px 0;
    }
}

.hp-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--hp-radius-lg);
    background: linear-gradient(135deg, var(--hp-navy), #3730A3 50%, var(--hp-primary));
}

.hp-cta-blobs {
    position: absolute;
    inset: 0;
    opacity: .1;
    pointer-events: none;
}

.hp-cta-blob1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: #fff;
    border-radius: 50%;
    filter: blur(60px);
    transform: translate(-50%, -50%);
}

.hp-cta-blob2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: #fff;
    border-radius: 50%;
    filter: blur(60px);
    transform: translate(50%, 50%);
}

.hp-cta-grid {
    position: relative;
    display: grid;
    gap: 48px;
    padding: 32px;
}

@media (min-width: 1024px) {
    .hp-cta-grid {
        grid-template-columns: 1fr 1fr;
        padding: 64px;
    }
}

.hp-cta-left {
    color: #fff;
}

.hp-cta-left h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .hp-cta-left h2 {
        font-size: 2.25rem;
    }
}

.hp-cta-left>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px;
}

.hp-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .hp-cta-actions {
        flex-direction: row;
    }
}

.hp-cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hp-cta-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .8);
}

.hp-cta-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-cta-contact-icon svg {
    width: 20px;
    height: 20px;
}

.hp-cta-contact-label {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
}

.hp-cta-contact-value {
    font-weight: 600;
}

/* Office card */
.hp-cta-office {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border-radius: var(--hp-radius);
    padding: 32px;
    color: #fff;
}

.hp-cta-office h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hp-cta-office-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.hp-cta-office-item:last-child {
    margin-bottom: 0;
}

.hp-cta-office-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.hp-cta-office-icon svg {
    width: 20px;
    height: 20px;
}

.hp-cta-office-item strong {
    display: block;
    margin-bottom: 4px;
}

.hp-cta-office-item p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
}

.hp-cta-office-hours {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .8);
}

.hp-cta-office-hours strong {
    font-weight: 600;
}

/* --- Footer ------------------------------------------------ */
.hp-footer {
    background: var(--hp-bg-dark);
    color: rgba(255, 255, 255, .7);
    padding: 64px 0 0;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .hp-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hp-footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 48px;
    }
}

.hp-footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .hp-footer-brand {
        grid-column: span 3;
    }
}

@media (min-width: 1024px) {
    .hp-footer-brand {
        grid-column: span 1;
    }
}

.hp-footer-brand .hp-nav-logo {
    margin-bottom: 24px;
}

.hp-footer-brand .hp-nav-logo-text {
    color: #fff;
}

.hp-footer-brand .hp-nav-logo-sub {
    color: var(--hp-text-light);
    display: block;
}

.hp-footer-brand .hp-nav-logo-icon {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-sky));
}

.hp-footer-brand>p {
    color: var(--hp-text-light);
    margin-bottom: 24px;
    max-width: 360px;
}

.hp-footer-social {
    display: flex;
    gap: 16px;
}

.hp-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hp-border-dark);
    transition: var(--hp-transition);
}

.hp-footer-social a:hover {
    background: var(--hp-primary);
}

.hp-footer-social a svg {
    width: 20px;
    height: 20px;
}

.hp-footer-col h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.hp-footer-col ul li {
    margin-bottom: 12px;
}

.hp-footer-col a {
    font-size: .875rem;
    color: var(--hp-text-light);
}

.hp-footer-col a:hover {
    color: #fff;
}

.hp-footer-bottom {
    margin-top: 64px;
    padding: 32px 0;
    border-top: 1px solid var(--hp-border-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: .875rem;
    color: var(--hp-text-muted);
}

@media (min-width: 768px) {
    .hp-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* --- Scroll Reveal ----------------------------------------- */
.hp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.hp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}