/* Ontario Medical Group – layered, vibrant healthcare homepage
   Stripe/modern health startup aesthetic. Gradients, depth, icons. */

:root {
    --hp-blue: #0B5E8E;
    --hp-blue-hover: #094a6e;
    --hp-blue-light: #E8F4F9;
    --hp-blue-deep: #064a6d;
    --hp-teal: #0d9488;
    --hp-gray: #F8FAFC;
    --hp-gray-warm: #F1F5F9;
    --hp-gray-border: #E2E8F0;
    --hp-text: #0F172A;
    --hp-text-muted: #475569;
    --hp-white: #FFFFFF;
    --hp-makta: #7C3AED;
    --hp-makta-light: #EDE9FE;
    --hp-radius: 12px;
    --hp-radius-lg: 16px;
    --hp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --hp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --hp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --hp-shadow-card: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --hp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --hp-gap: 1.5rem;
    --hp-gap-lg: 2rem;
    --bp-sm: 576px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
}

.hp {
    font-family: var(--hp-font);
    color: var(--hp-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.hp *,
.hp *::before,
.hp *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ----- Fixed top navigation (clean, visible) ----- */
.hp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--hp-gray-border);
}

.hp-nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hp-nav-logo {
    max-height: 44px;
    max-width: 160px;
    width: auto;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.hp-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-nav-menu a {
    color: var(--hp-text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: var(--hp-radius);
    transition: color 0.2s ease, background 0.2s ease;
}

.hp-nav-menu a:hover {
    color: var(--hp-blue);
    background: var(--hp-blue-light);
}

.hp-nav-cta {
    display: inline-block;
    background: linear-gradient(180deg, var(--hp-blue) 0%, var(--hp-blue-deep) 100%);
    color: var(--hp-white) !important;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: var(--hp-radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--hp-shadow);
}

.hp-nav-cta:hover {
    color: #000 !important;
    background: linear-gradient(180deg, #1590d4 0%, #0d7ab8 100%) !important;
    transform: translateY(-1px);
    box-shadow: var(--hp-shadow-lg);
}

.hp-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hp-nav-toggle { display: block; }
    .hp-nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
    }
    .hp-nav-menu.is-open { display: flex; }
    .hp-nav-cta { width: 100%; text-align: center; }
}

.hp-nav-spacer { height: 64px; }

/* ----- Primary / secondary buttons ----- */
.hp-btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, var(--hp-blue) 0%, var(--hp-blue-deep) 100%);
    color: var(--hp-white) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--hp-radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--hp-shadow);
}

.hp-btn-primary:hover {
    color: #000 !important;
    background: linear-gradient(180deg, #1590d4 0%, #0d7ab8 100%) !important;
    transform: translateY(-2px);
    box-shadow: var(--hp-shadow-lg);
}

.hp-btn-secondary {
    color: var(--hp-makta);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--hp-radius);
    transition: background 0.2s ease, color 0.2s ease;
}

.hp-btn-secondary:hover {
    background: var(--hp-makta-light);
    color: var(--hp-makta);
}

/* ----- Section containers + responsive grid ----- */
.hp-section {
    padding: 3rem 1rem;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .hp-section { padding: 3.5rem 1.25rem; }
}

@media (min-width: 768px) {
    .hp-section { padding: 4rem 1.5rem; }
}

@media (min-width: 992px) {
    .hp-section { padding: 4.5rem 2rem; }
}

@media (min-width: 1200px) {
    .hp-section { padding: 5rem 2.5rem; }
}

.hp-section-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 768px) {
    .hp-section-inner { max-width: 720px; }
}

@media (min-width: 992px) {
    .hp-section-inner { max-width: 960px; }
}

@media (min-width: 1200px) {
    .hp-section-inner { max-width: 1140px; }
}

.hp-section-inner--wide {
    max-width: 100%;
}

@media (min-width: 768px) {
    .hp-section-inner--wide { max-width: 720px; }
}

@media (min-width: 992px) {
    .hp-section-inner--wide { max-width: 960px; }
}

@media (min-width: 1200px) {
    .hp-section-inner--wide { max-width: 1280px; }
}

/* Responsive 2-column grid */
.hp-grid-2 {
    display: grid;
    gap: var(--hp-gap-lg);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .hp-grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.hp-grid-2--equal {
    align-items: start;
}

.hp-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hp-section-title { font-size: 2.25rem; }
}

.hp-section-subtitle {
    font-size: 1.125rem;
    color: var(--hp-text-muted);
    margin: 0 0 2rem 0;
    max-width: 48ch;
}

/* ----- Hero: full-width, optional background image + overlay ----- */
.hp-hero {
    position: relative;
    width: 100%;
    padding: 4rem 1.5rem 5rem;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #E0F2FE 0%, #E8F4F9 35%, #F0F9FF 70%, #F8FAFC 100%);
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp-hero-banner[src=""],
.hp-hero-banner:not([src]) {
    opacity: 0;
    pointer-events: none;
}

.hp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.hp-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(11, 94, 142, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hp-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    .hp-hero { padding: 5rem 2rem 6rem; min-height: 480px; }
}

.hp-hero-row {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 900px) {
    .hp-hero-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

@media (min-width: 900px) {
    .hp-hero-inner {
        max-width: 52%;
        text-align: left;
    }
}

.hp-hero-partnership {
    flex: 1;
    min-width: 0;
}

@media (min-width: 900px) {
    .hp-hero-partnership {
        max-width: 44%;
        flex-shrink: 0;
    }
}

.hp-hero-partnership-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.hp-hero-partnership-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hp-hero-partnership-title { font-size: 3.5rem; }
}

.hp-hero-partnership-logo {
    height: 3.5rem;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

@media (min-width: 768px) {
    .hp-hero-partnership-logo { height: 4.5rem; max-height: 96px; }
}

.hp-hero-partnership-sub {
    font-size: 1rem;
    color: var(--hp-text-muted);
    margin: 0 0 1.25rem 0;
    text-align: center;
    font-weight: 500;
}

/* ----- Hero Makta card: modern, warm, confident ----- */
.hp-hero-partnership-card {
    padding: 1.75rem 1.5rem !important;
    flex-direction: column !important;
    align-items: stretch;
    gap: 1.25rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 245, 255, 0.95) 50%, rgba(245, 243, 255, 0.92) 100%);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.08), 0 12px 40px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
}

.hp-hero-partnership-card:hover {
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
}

.hp-hero-partnership-card {
    text-align: center;
}

.hp-hero-partnership-card .hp-partnership-brand {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0 0 0.25rem 0;
    text-align: center;
}

.hp-partnership-intro {
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.55;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.hp-partnership-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hp-partnership-flow-step {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--hp-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hp-partnership-flow-step.hp-partnership-flow-coin {
    color: var(--hp-makta);
    background: linear-gradient(145deg, var(--hp-makta-light) 0%, #DDD6FE 100%);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.hp-partnership-flow-arrow {
    color: rgba(124, 58, 237, 0.4);
    font-size: 0.75rem;
}

.hp-partnership-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 0.5rem;
}

.hp-partnership-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hp-text);
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.hp-partnership-benefit i {
    color: var(--hp-makta);
    font-size: 1.125rem;
}

.hp-partnership-cta-btn {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, var(--hp-makta) 0%, #6D28D9 100%);
    color: var(--hp-white) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-partnership-cta-btn:hover {
    color: var(--hp-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.hp-partnership-learn-link {
    display: block;
    font-size: 0.875rem;
    color: var(--hp-makta);
    text-decoration: none;
    margin: 0.25rem 0 1rem 0;
    text-align: center;
    font-weight: 500;
}

.hp-partnership-learn-link:hover {
    color: var(--hp-makta);
    text-decoration: underline;
}

.hp-partnership-downloads {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 255, 0.92) 100%);
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hp-partnership-downloads-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--hp-text);
    text-align: center;
    letter-spacing: -0.02em;
}

.hp-partnership-store-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hp-partnership-store-btn {
    display: inline-block;
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-partnership-store-btn img {
    display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
}

.hp-partnership-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hp-partnership-qr-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hp-partnership-qr-text {
    flex: 1;
    min-width: 140px;
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.45;
    text-align: center;
}

.hp-partnership-qr-wrap {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.hp-partnership-qr-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.hp-partnership-qrcode {
    display: block;
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.hp-partnership-reassurance {
    font-size: 0.8125rem;
    color: var(--hp-text-muted);
    margin: 0;
    text-align: center;
}

.hp-hero-partnership-card .hp-partnership-makta-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hp-makta);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0.9;
    background: none;
    padding: 0;
    border: none;
}

.hp-hero .desktop-only { display: block; }
.hp-hero .mobile-only { display: none; }
@media (max-width: 767px) {
    .hp-hero .desktop-only { display: none; }
    .hp-hero .mobile-only { display: block; }
}

.hp-hero-company-logo {
    display: block;
    max-height: 80px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) {
    .hp-hero-company-logo {
        max-height: 110px;
        margin-bottom: 1.25rem;
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.14)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
    }
}

.hp-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hp-text);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .hp-hero-title { font-size: 2.75rem; }
}

.hp-hero-sub {
    font-size: 1.125rem;
    color: var(--hp-text-muted);
    margin: 0 0 1.5rem 0;
}

@media (min-width: 900px) {
    .hp-hero-sub { margin: 0 0 1.5rem 0; }
}

.hp-hero-cta {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 900px) {
    .hp-hero-cta { justify-content: flex-start; }
}

.hp-hero-visual {
    position: relative;
    margin-top: 2rem;
}

/* Hero text box (replaces decorative visual) */
.hp-hero-textbox {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--hp-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--hp-shadow-card);
    max-width: 42rem;
}

@media (min-width: 900px) {
    .hp-hero-textbox {
        margin-top: 1.5rem;
        padding: 1.75rem 2rem;
    }
}

.hp-hero-textbox-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--hp-blue);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.hp-hero-textbox-body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--hp-text);
    margin: 0;
}

.hp-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}

.hp-hero-blob-1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(11, 94, 142, 0.15) 0%, rgba(13, 148, 136, 0.1) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hp-hero-blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, transparent 100%);
    top: 20%;
    right: 15%;
}

.hp-hero-illustration {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    border-radius: 24px;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid rgba(255,255,255,0.8);
}

.hp-hero-illustration i {
    font-size: 4rem;
    color: var(--hp-blue);
    opacity: 0.9;
}

/* ----- How it works: white, cards with depth + colorful badges ----- */
.hp-how {
    background: var(--hp-white);
}

.hp-cards {
    display: grid;
    gap: var(--hp-gap);
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .hp-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--hp-gap-lg);
    }
}

@media (min-width: 992px) {
    .hp-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }
}

.hp-cards.hp-cards-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .hp-cards.hp-cards-2 { grid-template-columns: repeat(2, 1fr); }
}

.hp-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--hp-shadow-card);
    border: 1px solid var(--hp-gray-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.06);
}

.hp-card-icon-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hp-card-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: var(--hp-white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-card-num-1 { background: linear-gradient(135deg, var(--hp-blue) 0%, #0d7490 100%); box-shadow: 0 4px 12px rgba(11, 94, 142, 0.3); }
.hp-card-num-2 { background: linear-gradient(135deg, var(--hp-teal) 0%, #0f766e 100%); box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3); }
.hp-card-num-3 { background: linear-gradient(135deg, var(--hp-makta) 0%, #5b21b6 100%); box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3); }

.hp-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hp-text);
    margin: 0 0 0.5rem 0;
}

.hp-card-desc {
    font-size: 0.9375rem;
    color: var(--hp-text-muted);
    margin: 0;
}

/* ----- Partnership: highlighted, Makta purple accent ----- */
.hp-partnership {
    background: linear-gradient(180deg, #FAF5FF 0%, #F5F3FF 50%, #EDE9FE 100%);
    position: relative;
}

.hp-partnership::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hp-partnership .hp-section-inner { position: relative; z-index: 1; }

.hp-partnership-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid rgba(124, 58, 237, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.25s ease;
}

.hp-partnership-card:hover {
    box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.15);
}

.hp-partnership-copy {
    flex: 1;
    min-width: 280px;
}

.hp-partnership-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0 0 0.5rem 0;
}

.hp-partnership-copy p {
    margin: 0 0 1rem 0;
    color: var(--hp-text-muted);
    font-size: 1rem;
}

.hp-partnership-makta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--hp-makta-light) 0%, #DDD6FE 100%);
    color: var(--hp-makta);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--hp-radius);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.hp-partnership-cta {
    flex-shrink: 0;
}

.hp-partnership-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hp-partnership-icons span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--hp-text-muted);
}

.hp-partnership-icons i {
    color: var(--hp-makta);
    font-size: 1.125rem;
}

/* ----- Example benefits: icon cards + hover motion ----- */
.hp-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--hp-shadow-card);
    border: 1px solid var(--hp-gray-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

.hp-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--hp-radius);
    background: linear-gradient(135deg, var(--hp-blue-light) 0%, #D1FAE5 100%);
    color: var(--hp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: transform 0.25s ease;
}

.hp-benefit-card:hover .hp-benefit-icon {
    transform: scale(1.05);
}

.hp-benefit-card strong {
    font-size: 1.0625rem;
    color: var(--hp-text);
}

.hp-benefit-card p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9375rem;
    color: var(--hp-text-muted);
}

.hp-disclaimer {
    font-size: 0.8125rem;
    color: var(--hp-text-muted);
    margin: 1.5rem 0 0 0;
    max-width: 56ch;
}

/* ----- Makta Rewards modal (How it works + Example benefits) ----- */
.hp-modal-makta .modal-content {
    border-radius: var(--hp-radius-lg);
    border: 1px solid var(--hp-gray-border);
    box-shadow: var(--hp-shadow-lg);
}

.hp-modal-makta-header {
    border-bottom: 1px solid var(--hp-gray-border);
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, #FAF5FF 0%, #F5F3FF 100%);
}

.hp-modal-makta-header .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text);
}

.hp-modal-makta .modal-body {
    padding: 1.5rem 1.5rem;
    background: var(--hp-white);
}

.hp-modal-makta-body .hp-section-subtitle {
    margin-bottom: 1rem;
}

.hp-modal-makta-body .hp-section-title--small {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.hp-modal-makta-body .hp-section-title--small:first-of-type {
    margin-top: 0;
}

.hp-modal-makta-section-title {
    margin-top: 1.75rem !important;
}

.hp-cards-modal {
    margin-top: 1rem;
}

.hp-modal-makta-body .hp-disclaimer {
    margin-top: 1.25rem;
}

.hp-modal-makta-footer {
    border-top: 1px solid var(--hp-gray-border);
    padding: 1rem 1.5rem;
    background: var(--hp-gray);
}

.hp-modal-enroll-btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border-radius: var(--hp-radius);
    font-weight: 600;
    font-size: 0.9375rem;
    background: linear-gradient(180deg, var(--hp-makta) 0%, #5b21b6 100%);
    color: var(--hp-white) !important;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-modal-enroll-btn:hover {
    color: var(--hp-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--hp-shadow-lg);
}

/* ----- Trust: clear section contrast ----- */
.hp-trust {
    background: linear-gradient(180deg, var(--hp-gray-warm) 0%, var(--hp-gray) 100%);
}

.hp-trust-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--hp-shadow-card);
    border: 1px solid var(--hp-gray-border);
    border-left: 4px solid var(--hp-blue);
}

@media (min-width: 768px) {
    .hp-trust-card {
        padding: 2rem 2.25rem;
    }
}

.hp-trust-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--hp-gray-border);
}

.hp-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hp-blue);
    background: var(--hp-blue-light);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hp-trust-badge i {
    font-size: 1rem;
}

.hp-trust-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hp-trust-title { font-size: 2.5rem; }
}

.hp-trust-accent {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-blue) 0%, var(--hp-blue-deep) 100%);
    border-radius: 2px;
    margin: 0 0 1.25rem 0;
}

.hp-trust-subtitle {
    font-size: 1.125rem;
    color: var(--hp-text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 42ch;
}

.hp-trust-content {
    margin-top: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.hp-trust-row {
    display: grid;
    gap: var(--hp-gap-lg);
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 768px) {
    .hp-trust-row {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.hp-trust-image-wrap {
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--hp-gray-border);
}

.hp-trust-image {
    width: 100%;
    height: auto;
    display: block;
}

.hp-trust-list-wrap {
    min-width: 0;
}

.hp-trust-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.hp-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    font-size: 1rem;
    color: var(--hp-text);
    border-bottom: 1px solid var(--hp-gray-border);
}

.hp-trust-list li:last-child { border-bottom: none; }

.hp-trust-list i {
    color: var(--hp-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hp-trust-locations { margin-top: 2rem; }

.hp-trust-locations h3,
.hp-trust-branches-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0 0 0.75rem 0;
}

.hp-trust-hours-notice {
    font-size: 0.9375rem;
    color: var(--hp-text-muted);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

/* Location cards grid */
#hoursList {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    #hoursList {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    #hoursList {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.hp-location-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--hp-gray-border);
    box-shadow: var(--hp-shadow-card);
    min-width: 0;
    transition: box-shadow 0.2s ease;
}

.hp-location-card:hover {
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
}

.hp-location-card .branch-name {
    display: block;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--hp-blue);
    margin-bottom: 0.5rem;
}

.hp-location-card a {
    color: var(--hp-blue);
    text-decoration: none;
    font-size: 0.9375rem;
}

.hp-location-card a:hover {
    text-decoration: underline;
}

.hp-branch-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hp-branch-map-link i {
    font-size: 1rem;
}

.hp-location-card details {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--hp-gray-border);
}

.hp-location-card details summary {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--hp-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hp-location-card details summary::-webkit-details-marker {
    display: none;
}

.hp-location-card .summary-clock {
    height: 18px;
    width: auto;
    vertical-align: middle;
    flex-shrink: 0;
}

.hp-location-card details p {
    margin: 0.35rem 0;
    font-size: 0.875rem;
    color: var(--hp-text-muted);
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.hp-trust-cta { margin-top: 2rem; }

/* ----- Services ----- */
.hp-services {
    background: var(--hp-white);
}

.hp-services-content {
    display: grid;
    gap: var(--hp-gap-lg);
    margin-top: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .hp-services-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 2.5rem;
    }
}

.hp-services-list-wrap {
    background: var(--hp-gray);
    border-radius: var(--hp-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--hp-gray-border);
}

#servicesList p {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--hp-text);
    font-size: 1rem;
}

.hp-services-image-wrap {
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--hp-gray-border);
}

.hp-services-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ----- Gallery ----- */
.hp-gallery {
    background: var(--hp-gray);
}

.hp-gallery-wrap {
    margin-top: 1rem;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    min-height: 200px;
}

.slideshow-container .prev,
.slideshow-container .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.9);
    color: var(--hp-text);
    border-radius: var(--hp-radius);
    text-decoration: none;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2;
}

.slideshow-container .prev { left: 0; }
.slideshow-container .next { right: 0; }

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
    background: var(--hp-blue);
    color: var(--hp-white);
}

/* ----- About Us + Our Story (2 columns) ----- */
.hp-about-story {
    background: var(--hp-white);
}

@media (min-width: 768px) {
    .hp-about-story .hp-grid-2 {
        grid-template-columns: 1fr 1.5fr;
        align-items: stretch;
    }
}

.hp-about-block {
    min-width: 0;
    padding: 1.5rem;
    background: var(--hp-gray);
    border-radius: var(--hp-radius-lg);
    border: 1px solid var(--hp-gray-border);
}

@media (min-width: 768px) {
    .hp-about-block { padding: 2rem; }
}

.hp-about-block .hp-section-title {
    margin-bottom: 0.5rem;
}

.hp-about-underline {
    height: 4px;
    width: 48px;
    background: var(--hp-blue);
    border-radius: 2px;
    margin: 0 0 1rem 0;
}

.hp-section-text {
    font-size: 1rem;
    color: var(--hp-text-muted);
    margin: 0;
    line-height: 1.65;
}

.hp-about-block .hp-section-text {
    text-align: left;
}

.hp-section-title--small {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

/* ----- Video + Logo/QR (2 columns) ----- */
.hp-video-logo {
    background: linear-gradient(180deg, var(--hp-gray) 0%, var(--hp-gray-warm) 100%);
}

@media (min-width: 768px) {
    .hp-video-section-grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: center;
        gap: 2.5rem;
    }
}

.hp-video-text-block {
    min-width: 0;
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--hp-shadow-card);
    border: 1px solid var(--hp-gray-border);
    border-left: 4px solid var(--hp-blue);
    position: relative;
}

@media (min-width: 768px) {
    .hp-video-text-block {
        padding: 2rem 2.25rem;
    }
}

.hp-video-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hp-blue);
    background: var(--hp-blue-light);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hp-video-section-brand {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.hp-video-accent-line {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-blue) 0%, var(--hp-blue-deep) 100%);
    border-radius: 2px;
    margin: 0 0 1rem 0;
}

.hp-video-section-company {
    font-size: 0.9375rem;
    color: var(--hp-text-muted);
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.hp-video-watch-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hp-video-watch-icon {
    font-size: 1.5rem;
    color: var(--hp-blue);
}

.hp-video-text-block .hp-section-title--small {
    margin-bottom: 0;
}

.hp-video-section-text {
    font-size: 1rem;
    color: var(--hp-text-muted);
    line-height: 1.65;
    margin: 0;
}

.hp-video-block,
.hp-logo-qr-block {
    min-width: 0;
}

.hp-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--hp-radius-lg);
    background: var(--hp-gray-border);
}

.hp-video-frame {
    box-shadow: var(--hp-shadow-card);
    border: 1px solid var(--hp-gray-border);
}

.hp-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--hp-radius);
}

#videoEmbed:not([src]),
#videoEmbed[src=""] {
    display: none !important;
}

.hp-logo-qr-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hp-logo-qr-inner { gap: 2rem; }
}

.hp-logo-qr-img {
    max-height: 100px;
    max-width: 180px;
    width: auto;
    height: auto;
}

@media (min-width: 768px) {
    .hp-logo-qr-img { max-height: 120px; max-width: 200px; }
}

#qrcode {
    display: inline-block;
}

#qrcode img {
    display: block;
}

/* ----- Contact (2 columns: info + form) ----- */
.hp-contact {
    background: var(--hp-gray);
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .hp-contact { padding: 4rem 1.5rem; }
}

.hp-contact-grid {
    display: grid;
    gap: var(--hp-gap-lg);
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hp-contact-grid { max-width: 800px; }
}

@media (min-width: 992px) {
    .hp-contact-grid { max-width: 900px; }
}

.hp-contact-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hp-contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text);
    margin: 0 0 0.5rem 0;
}

@media (min-width: 768px) {
    .hp-contact-title { font-size: 1.75rem; }
}

.hp-contact-sub {
    font-size: 1rem;
    color: var(--hp-text-muted);
    margin: 0;
}

.hp-contact-form-wrap {
    min-width: 0;
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--hp-shadow-card);
    border: 1px solid var(--hp-gray-border);
}

@media (min-width: 768px) {
    .hp-contact-form-wrap { padding: 2rem 2.5rem; }
}

.hp-contact .form-control {
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-gray-border);
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.hp-contact .contact-us-label { color: var(--hp-text); font-weight: 500; }

.hp-contact #submitButton {
    background: linear-gradient(180deg, var(--hp-blue) 0%, var(--hp-blue-deep) 100%) !important;
    color: var(--hp-white) !important;
    border-radius: var(--hp-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    box-shadow: var(--hp-shadow);
    transition: transform 0.2s ease;
}

.hp-contact #submitButton:hover {
    transform: translateY(-1px);
    box-shadow: var(--hp-shadow-lg);
}

/* ----- Footer ----- */
.hp-footer {
    text-align: center;
    padding: 1.5rem 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
    background: var(--hp-text);
}

.hp .required::after {
    content: " *";
    font-weight: bold;
    color: #dc3545;
}

.hp .scroll-to-top button {
    background: linear-gradient(180deg, var(--hp-blue) 0%, var(--hp-blue-deep) 100%);
    box-shadow: var(--hp-shadow);
}

.hp .scroll-to-top button:hover {
    box-shadow: var(--hp-shadow-lg);
}
