/* ============================================================
   WAA BOOKING – HOMEPAGE
   Clean, Premium SaaS Landing Page
   Inspired by top-tier booking SaaS designs
   ============================================================ */

/* ===== GLOBAL: Anti-Zoom + Safe Areas + Touch ===== */
html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}
body {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    -webkit-tap-highlight-color: transparent;
}

/* ===== CSS VARIABLES ===== */
:root {
    --hp-primary: #561269;
    --hp-primary-hover: #3d0d4b;
    --hp-primary-light: #9b3f94;
    --hp-primary-50: #fdf2fd;
    --hp-primary-100: #f8e3f7;
    --hp-primary-200: #f0c6ee;
    --hp-accent: #8b1f7d;
    --hp-gradient: linear-gradient(135deg, #561269 0%, #8b3f94 50%, #8b1f7d 100%);
    --hp-gradient-soft: linear-gradient(135deg, rgba(86,18,105,0.06) 0%, rgba(139,31,125,0.03) 100%);
    --hp-white: #ffffff;
    --hp-off-white: #faf9ff;
    --hp-gray-50: #f9fafb;
    --hp-gray-100: #f3f4f6;
    --hp-gray-200: #e5e7eb;
    --hp-gray-300: #d1d5db;
    --hp-gray-400: #9ca3af;
    --hp-gray-500: #6b7280;
    --hp-gray-600: #4b5563;
    --hp-gray-700: #374151;
    --hp-gray-800: #1f2937;
    --hp-gray-900: #111827;
    --hp-dark: #1a0a20;
    --hp-section-py: 96px;
    --hp-radius: 12px;
    --hp-radius-lg: 16px;
    --hp-radius-xl: 24px;
    --hp-radius-full: 9999px;
    --hp-shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --hp-shadow: 0 4px 14px rgba(0,0,0,0.06);
    --hp-shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --hp-shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
    --hp-shadow-xl: 0 25px 60px rgba(0,0,0,0.14);
    --hp-transition: all 0.3s ease;
}

/* ===== GLOBAL RESETS FOR HOMEPAGE ===== */
.hp-page {
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-800);
    overflow-x: hidden;
}
.hp-page *, .hp-page *::before, .hp-page *::after {
    box-sizing: border-box;
}
.hp-page img { max-width: 100%; height: auto; }
.hp-page a { text-decoration: none; }
.hp-page section { position: relative; }

/* ===== SECTION UTILITIES ===== */
.hp-section {
    padding: var(--hp-section-py) 0;
}
.hp-section-light {
    background: var(--hp-off-white);
}
.hp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.hp-section-header .hp-overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hp-primary);
    margin-bottom: 12px;
}
.hp-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    line-height: 1.25;
    margin: 0 0 16px;
}
.hp-section-header p {
    font-size: 1.05rem;
    color: var(--hp-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ===== GLOBAL CONTAINER PADDING ===== */
.container {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
@media (min-width: 768px) {
    .container {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}
@media (min-width: 1200px) {
    .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* ===== BUTTONS ===== */
.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--hp-radius-full);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--hp-transition);
    text-decoration: none !important;
    line-height: 1.4;
}
.hp-btn-primary {
    background: var(--hp-primary);
    color: var(--hp-white) !important;
    border-color: var(--hp-primary);
}
.hp-btn-primary:hover {
    background: var(--hp-primary-hover);
    border-color: var(--hp-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(86,18,105,0.35);
}
.hp-btn-outline {
    background: transparent;
    color: var(--hp-gray-800) !important;
    border-color: var(--hp-gray-300);
}
.hp-btn-outline:hover {
    border-color: var(--hp-primary);
    color: var(--hp-primary) !important;
    background: var(--hp-primary-50);
}
.hp-btn-white {
    background: var(--hp-white);
    color: var(--hp-primary) !important;
    border-color: var(--hp-white);
}
.hp-btn-white:hover {
    background: var(--hp-gray-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.hp-btn-gradient {
    background: var(--hp-gradient);
    color: var(--hp-white) !important;
    border: none;
}
.hp-btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(86,18,105,0.4);
}
.hp-btn-sm {
    padding: 9px 20px;
    font-size: 13px;
}
.hp-btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

/* ===== 1. HEADER ===== */
.hp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hp-gray-100);
    transition: var(--hp-transition);
}
.hp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1320px;
    margin: 0 auto;
}
.hp-header-logo img {
    height: 30px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}
.hp-header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hp-header-nav li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--hp-gray-600);
    transition: var(--hp-transition);
    padding: 8px 0;
    position: relative;
}
.hp-header-nav li a:hover,
.hp-header-nav li a.active {
    color: var(--hp-gray-900);
}
.hp-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp-header-login {
    font-size: 14px;
    font-weight: 500;
    color: var(--hp-gray-700) !important;
    padding: 8px 16px;
    transition: var(--hp-transition);
}
.hp-header-login:hover {
    color: var(--hp-primary) !important;
}
.hp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--hp-gray-700);
    cursor: pointer;
    padding: 4px;
}

/* ===== 2. HERO ===== */
.hp-hero {
    padding: 140px 0 0;
    background: var(--hp-white);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.hp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(86,18,105,0.12) 0%, rgba(110,30,135,0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}
.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--hp-radius-full);
    background: var(--hp-primary-50);
    border: 1px solid var(--hp-primary-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--hp-primary);
    margin-bottom: 20px;
}
.hp-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--hp-gray-900);
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}
.hp-hero h1 span {
    color: var(--hp-primary);
}
.hp-hero-subtitle {
    font-size: 1.15rem;
    color: var(--hp-gray-500);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.hp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hp-hero-visual {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}
.hp-hero-visual img {
    width: 100%;
    border-radius: var(--hp-radius-xl) var(--hp-radius-xl) 0 0;
    box-shadow: 0 -4px 60px rgba(86,18,105,0.1), 0 20px 60px rgba(0,0,0,0.08);
}
.hp-hero-trust-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hp-hero-trust-icons .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--hp-gray-500);
}
.hp-hero-trust-icons .trust-item i {
    font-size: 16px;
    color: var(--hp-primary);
}

/* ===== STATS BAR ===== */
.hp-stats-bar {
    background: var(--hp-white);
    padding: 0;
    border-bottom: 1px solid var(--hp-gray-100);
}
.hp-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}
.hp-stat-item {
    flex: 1;
    padding: 8px 24px;
}
.hp-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--hp-gray-200);
    flex-shrink: 0;
}
.hp-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--hp-gray-900);
    margin: 0 0 4px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hp-stat-label {
    font-size: 0.82rem;
    color: var(--hp-gray-500);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ===== 3. CATEGORIES GRID ===== */
.hp-categories {
    background: var(--hp-white);
}
.hp-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.hp-category-card {
    position: relative;
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--hp-transition);
}
.hp-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
    transition: var(--hp-transition);
}
.hp-category-card:hover::before {
    background: linear-gradient(to top, rgba(86,18,105,0.7) 0%, rgba(0,0,0,0) 60%);
}
.hp-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-md);
}
.hp-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-category-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    font-size: 48px;
}
.hp-category-card .cat-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: var(--hp-white);
}

/* ===== 4. TRUST STRIP ===== */
.hp-trust-strip {
    padding: 40px 0;
    border-top: 1px solid var(--hp-gray-100);
    border-bottom: 1px solid var(--hp-gray-100);
    background: var(--hp-white);
}
.hp-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
}
.hp-trust-logos img {
    height: 32px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--hp-transition);
}
.hp-trust-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== 5. VALUE PILLARS ===== */
.hp-pillars {
    background: var(--hp-primary-50);
}
.hp-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.hp-pillar-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--hp-radius-xl);
    background: var(--hp-white);
    border: 1px solid var(--hp-primary-100);
    transition: var(--hp-transition);
}
.hp-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-md);
}
.hp-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}
.hp-pillar-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 10px;
}
.hp-pillar-card p {
    font-size: 0.92rem;
    color: var(--hp-gray-500);
    line-height: 1.65;
    margin: 0;
}

/* Pillar featured card (middle card highlight) */
.hp-pillar-featured {
    border: 2px solid var(--hp-primary);
    background: linear-gradient(180deg, rgba(86,18,105,0.04) 0%, var(--hp-white) 100%);
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(86,18,105,0.15);
    position: relative;
}
.hp-pillar-featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 12px 40px rgba(86,18,105,0.22);
}
.hp-pillar-badge {
    display: inline-block;
    background: var(--hp-gradient);
    color: var(--hp-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.hp-pillar-stat {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--hp-primary-100);
    font-size: 0.82rem;
    color: var(--hp-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hp-pillar-stat strong {
    color: var(--hp-primary);
    font-weight: 800;
    font-size: 1rem;
}

/* ===== 6. FEATURE BLOCKS (Alternating) ===== */
.hp-feature-block {
    padding: var(--hp-section-py) 0;
}
.hp-feature-block:nth-child(even) {
    background: var(--hp-off-white);
}
.hp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hp-feature-row.reverse .hp-feature-text {
    order: 2;
}
.hp-feature-row.reverse .hp-feature-media {
    order: 1;
}
.hp-feature-text .hp-overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--hp-primary);
    margin-bottom: 12px;
}
.hp-feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    line-height: 1.25;
    margin: 0 0 16px;
}
.hp-feature-text h3 span {
    color: var(--hp-primary);
}
.hp-feature-text p {
    font-size: 1rem;
    color: var(--hp-gray-500);
    line-height: 1.7;
    margin: 0 0 12px;
}
.hp-feature-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.hp-feature-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--hp-gray-700);
}
.hp-feature-text ul li i {
    color: var(--hp-primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Payment logos strip */
.hp-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 20px;
}
.hp-payment-logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hp-gray-500);
    background: var(--hp-gray-50);
    border: 1px solid var(--hp-gray-200);
    padding: 6px 12px;
    border-radius: 6px;
}
.hp-payment-logo i {
    font-size: 16px;
    color: var(--hp-primary);
}

.hp-feature-media {
    position: relative;
}
.hp-feature-media img {
    width: 100%;
    border-radius: var(--hp-radius-xl);
    box-shadow: var(--hp-shadow-lg);
}
.hp-feature-media::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86,18,105,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.hp-feature-media:nth-child(1)::after {
    top: -30px;
    right: -30px;
}
.hp-feature-row.reverse .hp-feature-media::after {
    bottom: -30px;
    left: -30px;
    top: auto;
    right: auto;
}

/* ===== 7. REVIEWS / TESTIMONIALS ===== */
.hp-reviews {
    background: var(--hp-off-white);
}
.hp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-review-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-gray-200);
    border-radius: var(--hp-radius-xl);
    padding: 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hp-review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: var(--hp-primary-100);
    line-height: 1;
    pointer-events: none;
    opacity: 0.5;
}
.hp-review-card:hover {
    border-color: var(--hp-primary-light);
    box-shadow: 0 12px 40px rgba(86,18,105,0.08);
    transform: translateY(-4px);
}
.hp-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.hp-review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 16px;
}
.hp-review-date {
    font-size: 0.75rem;
    color: var(--hp-gray-400);
    font-weight: 500;
}
.hp-review-text {
    font-size: 0.92rem;
    color: var(--hp-gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    flex: 1;
}
.hp-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--hp-gray-100);
    margin-top: auto;
}
.hp-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hp-gradient);
    color: var(--hp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.hp-review-author-info h6 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0 0 2px;
}
.hp-review-author-info span {
    font-size: 0.75rem;
    color: var(--hp-primary);
    font-weight: 500;
}

/* ===== 8. STATS / RESULTS ===== */
.hp-results {
    background: var(--hp-off-white);
}
.hp-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hp-result-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-xl);
    padding: 36px 24px 32px;
    text-align: center;
    border: 1px solid var(--hp-gray-200);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.hp-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--hp-gradient);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: all 0.35s ease;
}
.hp-result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(86,18,105,0.12);
    border-color: var(--hp-primary-light);
}
.hp-result-card:hover::before {
    opacity: 1;
}
.hp-result-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}
.hp-result-card:hover .hp-result-icon {
    background: var(--hp-gradient);
    color: var(--hp-white);
}
.hp-result-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--hp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.hp-result-label {
    font-size: 0.88rem;
    color: var(--hp-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ===== 9. SUPPORT / COMMITTED ===== */
.hp-support {
    background: var(--hp-white);
}
.hp-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-support-card {
    padding: 32px 28px;
    border-radius: var(--hp-radius-xl);
    border: 1px solid var(--hp-gray-200);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.hp-support-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hp-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.hp-support-card:hover {
    border-color: var(--hp-primary-light);
    box-shadow: 0 12px 40px rgba(86,18,105,0.08);
    transform: translateY(-4px);
}
.hp-support-card:hover::before {
    opacity: 1;
}
.hp-support-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0 0 8px;
}
.hp-support-card p {
    font-size: 0.88rem;
    color: var(--hp-gray-500);
    line-height: 1.65;
    margin: 0;
}

/* ===== 10. CONTACT SUPPORT ===== */
.hp-contact-support {
    background: var(--hp-off-white);
    padding: 64px 0;
}
.hp-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.hp-contact-card {
    text-align: center;
    padding: 24px;
}
.hp-contact-card .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}
.hp-contact-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0 0 6px;
}
.hp-contact-card p {
    font-size: 0.85rem;
    color: var(--hp-gray-500);
    margin: 0 0 12px;
}

/* ===== 11. FAQ ===== */
.hp-faq {
    background: var(--hp-white);
}
.hp-faq-list {
    max-width: 740px;
    margin: 0 auto;
}
.hp-faq-item {
    border-bottom: 1px solid var(--hp-gray-200);
}
.hp-faq-item:first-child {
    border-top: 1px solid var(--hp-gray-200);
}
.hp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}
.hp-faq-question h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-gray-800);
    margin: 0;
    line-height: 1.5;
}
.hp-faq-question .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--hp-gray-100);
    color: var(--hp-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--hp-transition);
}
.hp-faq-item.active .hp-faq-question .faq-icon {
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    transform: rotate(180deg);
}
.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.hp-faq-answer-inner {
    padding: 0 0 20px;
    font-size: 0.92rem;
    color: var(--hp-gray-500);
    line-height: 1.7;
}
.hp-faq-item.active .hp-faq-answer {
    max-height: 300px;
}

/* ===== 12. CATEGORIES BOTTOM ===== */
.hp-categories-bottom {
    background: var(--hp-off-white);
}
.hp-cat-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.hp-cat-scroll::-webkit-scrollbar {
    height: 4px;
}
.hp-cat-scroll::-webkit-scrollbar-thumb {
    background: var(--hp-gray-300);
    border-radius: 4px;
}
.hp-cat-thumb {
    flex-shrink: 0;
    width: 160px;
    height: 120px;
    border-radius: var(--hp-radius);
    overflow: hidden;
    position: relative;
}
.hp-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-cat-thumb .cat-icon-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--hp-primary);
    background: var(--hp-primary-50);
}

/* ===== 13. FINAL CTA ===== */
.hp-final-cta {
    background: var(--hp-gradient);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hp-final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-white);
    margin: 0 0 12px;
    position: relative;
}
.hp-final-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 28px;
    position: relative;
}
.hp-final-cta .hp-btn {
    position: relative;
}

/* CTA urgency badge */
.hp-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--hp-white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
}
.hp-cta-badge i {
    font-size: 16px;
    color: #fbbf24;
}

/* ===== 14. MOBILE APP ===== */
.hp-mobile-app {
    background: var(--hp-white);
    text-align: center;
}
.hp-app-visuals {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hp-app-card {
    width: 180px;
    background: var(--hp-gray-50);
    border-radius: var(--hp-radius-lg);
    padding: 20px;
    border: 1px solid var(--hp-gray-200);
}
.hp-app-card img {
    width: 100%;
    border-radius: var(--hp-radius);
}
.hp-app-card p {
    font-size: 0.82rem;
    color: var(--hp-gray-500);
    margin: 10px 0 0;
    font-weight: 500;
}
.hp-app-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.hp-app-badges a {
    display: block;
    transition: var(--hp-transition);
}
.hp-app-badges a:hover {
    transform: translateY(-2px);
}
.hp-app-badges img {
    height: 44px;
    width: auto;
}

/* ===== 15. FOOTER ===== */
.hp-footer {
    background: var(--hp-gray-900);
    padding: 64px 0 0;
}
.hp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.hp-footer-brand img {
    height: 30px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(10);
}
.hp-footer-brand p {
    font-size: 0.85rem;
    color: var(--hp-gray-400);
    line-height: 1.7;
    margin: 0;
}
.hp-footer-col h6 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hp-gray-400);
    margin: 0 0 16px;
}
.hp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-footer-col ul li {
    margin-bottom: 10px;
}
.hp-footer-col ul li a {
    font-size: 0.88rem;
    color: var(--hp-gray-400);
    transition: var(--hp-transition);
}
.hp-footer-col ul li a:hover {
    color: var(--hp-white);
}
.hp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.hp-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--hp-gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--hp-transition);
}
.hp-footer-social a:hover {
    background: var(--hp-primary);
    color: var(--hp-white);
}
.hp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 48px;
    text-align: center;
}
.hp-footer-bottom p {
    font-size: 0.82rem;
    color: var(--hp-gray-500);
    margin: 0;
}

/* ===== PRICING CARDS (shared) ===== */
.hp-pricing-card {
    background: var(--hp-white);
    border: 2px solid var(--hp-gray-200);
    border-radius: var(--hp-radius-xl);
    padding: 36px;
    transition: var(--hp-transition);
    height: 100%;
}
.hp-pricing-card:hover {
    border-color: var(--hp-primary);
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-lg);
}
.hp-pricing-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 4px;
}
.hp-pricing-card .plan-desc {
    font-size: 0.85rem;
    color: var(--hp-gray-500);
    margin: 0 0 20px;
}
.hp-pricing-card .plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}
.hp-pricing-card .plan-price-row h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--hp-gray-900);
    margin: 0;
}
.hp-pricing-card .plan-price-row span {
    font-size: 0.88rem;
    color: var(--hp-gray-500);
}
.hp-pricing-card .plan-discount-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--hp-radius-full);
    background: #ecfdf5;
    color: #059669;
    margin-bottom: 20px;
}
.hp-pricing-card .plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.hp-pricing-card .plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--hp-gray-700);
    border-bottom: 1px solid var(--hp-gray-50);
}
.hp-pricing-card .plan-features-list li:last-child {
    border-bottom: none;
}
.hp-pricing-card .plan-features-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--hp-primary-50);
    flex-shrink: 0;
    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='%237c3aed' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.hp-pricing-card .hp-btn {
    width: 100%;
}

/* ===== FEATURE CARD (shared) ===== */
.hp-feature-card-shared {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-gray-200);
    background: var(--hp-white);
    transition: var(--hp-transition);
}
.hp-feature-card-shared:hover {
    border-color: var(--hp-primary-light);
    box-shadow: var(--hp-shadow);
}
.hp-feature-card-shared img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}
.hp-feature-card-shared h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0 0 4px;
}
.hp-feature-card-shared p {
    font-size: 0.82rem;
    color: var(--hp-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ===== BLOG CARD (shared) ===== */
.hp-blog-card {
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    background: var(--hp-white);
    border: 1px solid var(--hp-gray-200);
    transition: var(--hp-transition);
    cursor: pointer;
    height: 100%;
}
.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-md);
    border-color: var(--hp-primary-light);
}
.hp-blog-card .blog-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.hp-blog-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hp-blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}
.hp-blog-card .blog-body {
    padding: 20px;
}
.hp-blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: var(--hp-gray-400);
}
.hp-blog-card .blog-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hp-hero h1 { font-size: 2.6rem; }
    .hp-categories-grid { grid-template-columns: repeat(4, 1fr); }
    .hp-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (max-width: 991px) {
    :root { --hp-section-py: 64px; }
    .hp-hero { padding: 120px 0 0; }
    .hp-hero h1 { font-size: 2.2rem; }
    .hp-hero::before { width: 100%; }
    .hp-section-header h2 { font-size: 1.8rem; }
    .hp-header-nav { display: none; }
    .hp-mobile-toggle { display: block; }
    .hp-header-actions { display: none; }
    .hp-stats-grid { flex-wrap: wrap; }
    .hp-stat-item { flex: 0 0 calc(50% - 1px); }
    .hp-stat-divider { display: none; }
    .hp-stat-number { font-size: 1.8rem; }
    .hp-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .hp-pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .hp-pillar-featured { transform: none; }
    .hp-feature-row { grid-template-columns: 1fr; gap: 40px; }
    .hp-feature-row.reverse .hp-feature-text { order: 1; }
    .hp-feature-row.reverse .hp-feature-media { order: 2; }
    .hp-feature-media::after { display: none; }
    .hp-reviews-grid { grid-template-columns: 1fr 1fr; }
    .hp-results-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-support-grid { grid-template-columns: 1fr; }
    .hp-contact-grid { grid-template-columns: 1fr; }
    .hp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hp-footer-brand { grid-column: span 2; }
    .hp-feature-text h3 { font-size: 1.6rem; }
    .hp-payment-logos { justify-content: center; }
}

@media (max-width: 767px) {
    :root { --hp-section-py: 48px; }
    .hp-hero { padding: 90px 0 0; }
    .hp-hero h1 { font-size: 1.75rem; line-height: 1.25; }
    .hp-hero-subtitle { font-size: 0.95rem; }
    .hp-hero-badge { font-size: 0.78rem; padding: 5px 12px; }
    .hp-hero-actions .hp-btn-lg { padding: 11px 20px; font-size: 0.85rem; }
    .hp-hero-trust-icons { gap: 12px; flex-direction: column; align-items: center; }
    .hp-hero-visual { max-width: 100%; margin-left: -16px; margin-right: -16px; }
    .hp-hero-visual img { border-radius: var(--hp-radius) var(--hp-radius) 0 0; }
    .hp-section-header h2 { font-size: 1.5rem; }
    .hp-section-header { margin-bottom: 36px; }
    .hp-section-header p { font-size: 0.92rem; }
    .hp-stats-grid { flex-wrap: wrap; gap: 0; }
    .hp-stat-item { flex: 0 0 50%; padding: 16px 12px; }
    .hp-stat-divider { display: none; }
    .hp-stat-number { font-size: 1.5rem; }
    .hp-stat-label { font-size: 0.7rem; }
    .hp-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hp-cat-card { padding: 16px 12px; }
    .hp-cat-icon { width: 40px; height: 40px; font-size: 18px; }
    .hp-feature-text h3 { font-size: 1.3rem; }
    .hp-feature-text p { font-size: 0.92rem; }
    .hp-feature-list li { font-size: 0.88rem; }
    .hp-pillar-card { padding: 28px 20px; }
    .hp-reviews-grid { grid-template-columns: 1fr; }
    .hp-review-card { padding: 24px 20px; }
    .hp-results-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .hp-result-item .hp-stat-number { font-size: 1.6rem; }
    .hp-footer-grid { grid-template-columns: 1fr; }
    .hp-footer-brand { grid-column: span 1; }
    .hp-footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .hp-final-cta h2 { font-size: 1.4rem; }
    .hp-final-cta p { font-size: 0.92rem; }
    .hp-pricing-card { padding: 24px; }
    .hp-header-inner { height: 60px; }
    .hp-header-actions .hp-btn { padding: 8px 16px; font-size: 0.85rem; }
    .hp-support-card { padding: 28px 20px; }
    .hp-faq-question { font-size: 0.95rem; padding: 16px 40px 16px 20px; }
    .hp-faq-answer { padding: 0 20px 16px; font-size: 0.9rem; }
    .hp-cta-badge { font-size: 0.78rem; padding: 6px 14px; }
    .hp-payment-logos { gap: 6px; }
    .hp-payment-logo { font-size: 0.72rem; padding: 4px 8px; }
    .container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 480px) {
    .hp-hero { padding: 80px 0 0; }
    .hp-hero h1 { font-size: 1.4rem; }
    .hp-hero-subtitle { font-size: 0.88rem; }
    .hp-hero-actions { flex-direction: row; align-items: center; justify-content: center; gap: 10px; }
    .hp-hero-actions .hp-btn { justify-content: center; }
    .hp-hero-actions .hp-btn-lg { padding: 10px 18px; font-size: 0.82rem; }
    .hp-categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hp-cat-card { padding: 14px 10px; }
    .hp-cat-name { font-size: 0.78rem; }
    .hp-stats-grid { gap: 0; }
    .hp-stat-item { flex: 0 0 50%; padding: 14px 8px; }
    .hp-stat-number { font-size: 1.3rem; }
    .hp-stat-label { font-size: 0.65rem; }
    .hp-results-grid { grid-template-columns: 1fr; }
    .hp-section-header h2 { font-size: 1.3rem; }
    .hp-feature-text h3 { font-size: 1.15rem; }
    .hp-pillar-card { padding: 24px 16px; }
    .hp-pillar-icon { width: 48px; height: 48px; font-size: 20px; }
    .hp-final-cta { padding: 48px 0; }
    .hp-final-cta h2 { font-size: 1.2rem; }
    .hp-cta-actions { flex-direction: column; align-items: stretch; }
    .hp-cta-actions .hp-btn { width: 100%; justify-content: center; }
    .hp-footer-links li { font-size: 0.85rem; }
    .hp-footer-heading { font-size: 0.9rem; }
    .hp-pricing-card { padding: 20px 16px; }
    .hp-pricing-amount { font-size: 2rem; }
    .hp-review-card { padding: 20px 16px; }
    .hp-support-card { padding: 24px 16px; }
}

/* ===== MOBILE MENU ===== */
.hp-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--hp-white);
    padding: 80px 24px 24px;
    overflow-y: auto;
}
.hp-mobile-menu.active {
    display: block;
}
.hp-mobile-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--hp-gray-700);
}
.hp-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--hp-gray-800);
    border-bottom: 1px solid var(--hp-gray-100);
}
.hp-mobile-menu ul li a:hover {
    color: var(--hp-primary);
}

/* ===== SLICK OVERRIDES ===== */
.hp-page .slick-dots {
    bottom: -40px;
}
.hp-page .slick-dots li button::before {
    font-size: 8px;
    color: var(--hp-gray-300);
}
.hp-page .slick-dots li.slick-active button::before {
    color: var(--hp-primary);
}

/* ============================================================
   ADDITIONAL COMPONENT STYLES
   ============================================================ */

/* ===== SUPPORT ICON (blade uses .hp-support-icon) ===== */
.hp-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}
.hp-support-card:hover .hp-support-icon {
    background: var(--hp-gradient);
    color: var(--hp-white);
}

/* ===== CONTACT STRIP ===== */
.hp-contact-strip {
    padding: 56px 0;
    background: var(--hp-off-white);
}
.hp-contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hp-contact-strip-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 4px;
}
.hp-contact-strip-text p {
    font-size: 0.95rem;
    color: var(--hp-gray-500);
    margin: 0;
}
.hp-contact-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hp-contact-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--hp-radius-full);
    background: var(--hp-white);
    border: 1px solid var(--hp-gray-200);
    color: var(--hp-gray-700) !important;
    font-size: 14px;
    font-weight: 500;
    transition: var(--hp-transition);
    text-decoration: none !important;
}
.hp-contact-option:hover {
    border-color: var(--hp-primary);
    color: var(--hp-primary) !important;
    box-shadow: var(--hp-shadow-sm);
}
.hp-contact-option i {
    font-size: 18px;
}

/* ===== FAQ HEADER (left-aligned version) ===== */
.hp-faq-header {
    position: sticky;
    top: 100px;
}
.hp-faq-header .hp-overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hp-primary);
    margin-bottom: 12px;
}
.hp-faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    line-height: 1.25;
    margin: 0 0 12px;
}
.hp-faq-header p {
    font-size: 1rem;
    color: var(--hp-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ===== FAQ question span/i structure ===== */
.hp-faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-gray-800);
    line-height: 1.5;
}
.hp-faq-question i {
    font-size: 18px;
    color: var(--hp-gray-400);
    transition: var(--hp-transition);
    flex-shrink: 0;
}
.hp-faq-item.active .hp-faq-question i {
    transform: rotate(180deg);
    color: var(--hp-primary);
}
.hp-faq-answer p {
    font-size: 0.92rem;
    color: var(--hp-gray-500);
    line-height: 1.7;
    padding: 0 0 20px;
    margin: 0;
}

/* ===== CATEGORIES BOTTOM – pill scroll ===== */
.hp-categories-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.hp-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--hp-radius-full);
    background: var(--hp-white);
    border: 1px solid var(--hp-gray-200);
    font-size: 14px;
    font-weight: 500;
    color: var(--hp-gray-700);
    transition: var(--hp-transition);
}
.hp-category-pill:hover {
    border-color: var(--hp-primary);
    color: var(--hp-primary);
    background: var(--hp-primary-50);
    transform: translateY(-2px);
    box-shadow: var(--hp-shadow-sm);
}
.hp-category-pill i {
    font-size: 20px;
}

/* ===== FINAL CTA – additions ===== */
.hp-final-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hp-btn-ghost-white {
    background: transparent;
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.4);
}
.hp-btn-ghost-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    color: var(--hp-white) !important;
}

/* ===== MOBILE APP – phone mockup ===== */
.hp-mobile-text {
    padding-right: 40px;
}
.hp-mobile-text .hp-overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hp-primary);
    margin-bottom: 12px;
}
.hp-mobile-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    line-height: 1.25;
    margin: 0 0 14px;
}
.hp-mobile-text p {
    color: var(--hp-gray-500);
    line-height: 1.7;
    margin: 0 0 24px;
}
.hp-app-features {
    margin-bottom: 28px;
}
.hp-app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--hp-gray-700);
}
.hp-app-feature i {
    color: var(--hp-primary);
    font-size: 20px;
}
.hp-store-badges {
    display: flex;
    gap: 12px;
}
.hp-store-badge {
    display: block;
    transition: var(--hp-transition);
}
.hp-store-badge:hover {
    transform: translateY(-2px);
}
.hp-store-badge img {
    height: 44px;
    width: auto;
}
.hp-store-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--hp-radius);
    background: var(--hp-gray-900);
    color: var(--hp-white);
    font-size: 14px;
    font-weight: 500;
}
.hp-store-placeholder i {
    font-size: 22px;
}

/* Phone mockup */
.hp-mobile-visual {
    display: flex;
    justify-content: center;
}
.hp-phone-mockup {
    width: 280px;
    background: var(--hp-gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--hp-shadow-xl);
}
.hp-phone-screen {
    background: var(--hp-white);
    border-radius: 26px;
    overflow: hidden;
    min-height: 480px;
}
.hp-phone-header {
    background: var(--hp-primary);
    padding: 12px 20px;
    text-align: center;
}
.hp-phone-time {
    color: var(--hp-white);
    font-size: 13px;
    font-weight: 600;
}
.hp-phone-content {
    padding: 20px;
}
.hp-phone-greeting {
    margin-bottom: 20px;
}
.hp-phone-greeting strong {
    font-size: 1.1rem;
    color: var(--hp-gray-900);
    display: block;
    margin-bottom: 2px;
}
.hp-phone-greeting p {
    font-size: 0.82rem;
    color: var(--hp-gray-500);
    margin: 0;
}
.hp-phone-stat-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.hp-phone-stat {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    background: var(--hp-primary-50);
    border-radius: var(--hp-radius);
}
.hp-phone-stat-num {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp-primary);
}
.hp-phone-stat-label {
    font-size: 0.68rem;
    color: var(--hp-gray-500);
}
.hp-phone-appointments {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp-phone-apt {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-gray-100);
    transition: var(--hp-transition);
}
.hp-phone-apt.active {
    border-color: var(--hp-primary-200);
    background: var(--hp-primary-50);
}
.hp-phone-apt-time {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hp-primary);
    min-width: 40px;
}
.hp-phone-apt-info strong {
    font-size: 0.82rem;
    color: var(--hp-gray-900);
    display: block;
}
.hp-phone-apt-info span {
    font-size: 0.72rem;
    color: var(--hp-gray-400);
}

/* ===== GET STARTED (shared CTA section) ===== */
.hp-get-started {
    background: var(--hp-primary-50);
    text-align: center;
}
.hp-get-started-inner {
    max-width: 560px;
    margin: 0 auto;
}
.hp-get-started-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 12px;
}
.hp-get-started-inner p {
    font-size: 1rem;
    color: var(--hp-gray-500);
    margin: 0 0 24px;
    line-height: 1.7;
}

/* ===== PRICING CARD (card_price_plan) ===== */
.hp-price-card {
    background: var(--hp-white);
    border: 2px solid var(--hp-gray-200);
    border-radius: var(--hp-radius-xl);
    padding: 32px;
    transition: var(--hp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.hp-price-card:hover {
    border-color: var(--hp-primary);
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-lg);
}
.hp-price-badge {
    position: absolute;
    top: 16px;
    right: -28px;
    transform: rotate(45deg);
    background: var(--hp-primary);
    color: var(--hp-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 36px;
    letter-spacing: 0.5px;
}
.hp-price-header {
    margin-bottom: 20px;
}
.hp-price-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 4px;
}
.hp-price-desc {
    font-size: 0.85rem;
    color: var(--hp-gray-500);
    margin: 0;
}
.hp-price-amount {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}
.hp-price-original {
    font-size: 0.95rem;
    color: var(--hp-gray-400);
    text-decoration: line-through;
}
.hp-price-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--hp-gray-900);
}
.hp-price-period {
    font-size: 0.85rem;
    color: var(--hp-gray-500);
}
.hp-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.hp-price-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--hp-gray-700);
    border-bottom: 1px solid var(--hp-gray-50);
}
.hp-price-features li:last-child {
    border-bottom: none;
}
.hp-price-features li i {
    color: var(--hp-primary);
    font-size: 16px;
    flex-shrink: 0;
}
.hp-price-action {
    margin-top: auto;
}
.hp-price-action .hp-btn {
    width: 100%;
}
.hp-btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ===== BLOG CARD (card_blog) ===== */
.hp-blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.hp-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hp-blog-card:hover .hp-blog-image img {
    transform: scale(1.05);
}
.hp-blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hp-gray-100);
    color: var(--hp-gray-400);
    font-size: 48px;
}
.hp-blog-body {
    padding: 20px;
}
.hp-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: var(--hp-gray-400);
}
.hp-blog-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-blog-title a {
    color: inherit !important;
    text-decoration: none !important;
}
.hp-blog-title a:hover {
    color: var(--hp-primary) !important;
}
.hp-blog-excerpt {
    font-size: 0.85rem;
    color: var(--hp-gray-500);
    margin: 0 0 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-primary) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--hp-transition);
}
.hp-blog-link:hover {
    gap: 8px;
}

/* ===== FEATURE CARD (card_feature) ===== */
.hp-feature-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--hp-radius-lg);
    border: 1px solid var(--hp-gray-200);
    background: var(--hp-white);
    transition: var(--hp-transition);
    height: 100%;
}
.hp-feature-card:hover {
    border-color: var(--hp-primary-light);
    box-shadow: var(--hp-shadow);
    transform: translateY(-4px);
}
.hp-feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    overflow: hidden;
}
.hp-feature-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.hp-feature-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0 0 6px;
}
.hp-feature-card-desc {
    font-size: 0.85rem;
    color: var(--hp-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 991px) {
    .hp-contact-strip-inner { flex-direction: column; text-align: center; }
    .hp-contact-options { justify-content: center; }
    .hp-mobile-text { padding-right: 0; text-align: center; margin-bottom: 40px; }
    .hp-store-badges { justify-content: center; }
    .hp-app-features { text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
    .hp-faq-header { position: static; text-align: center; margin-bottom: 40px; }
    .hp-mobile-section .container > .row,
    .hp-mobile-section .container > [class*="col-"] { flex-direction: column; }
    .hp-feature-card { padding: 20px; }
}

@media (max-width: 767px) {
    .hp-phone-mockup { width: 220px; }
    .hp-phone-screen { min-height: 360px; }
    .hp-contact-options { flex-direction: column; align-items: center; }
    .hp-categories-scroll { gap: 8px; }
    .hp-category-pill { padding: 8px 16px; font-size: 13px; }
    .hp-price-card { padding: 20px; }
    .hp-contact-strip { padding: 36px 0; }
    .hp-app-cards { gap: 10px; }
    .hp-app-card { width: 140px; padding: 12px; }
    .hp-app-card-title { font-size: 0.8rem; }
    .hp-feature-card { padding: 16px; }
    .hp-feature-card-icon { width: 36px; height: 36px; font-size: 16px; }
}

@media (max-width: 480px) {
    .hp-phone-mockup { width: 200px; }
    .hp-phone-screen { min-height: 320px; }
    .hp-cta-actions { flex-direction: column; align-items: stretch; }
    .hp-cta-actions .hp-btn { width: 100%; justify-content: center; }
    .hp-app-card { width: 120px; padding: 10px; }
    .hp-store-badges { flex-direction: column; gap: 10px; }
    .hp-contact-option { padding: 16px; }
}

/* ============================================================
   INNER PAGES – Page Header / Breadcrumb
   ============================================================ */
.hp-page-header {
    background: linear-gradient(135deg, #1a0a20 0%, #2d1040 50%, #3d0d4b 100%);
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hp-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hp-page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hp-white);
    margin: 0 0 12px;
}
.hp-page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-page-breadcrumb li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.hp-page-breadcrumb li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--hp-transition);
}
.hp-page-breadcrumb li a:hover {
    color: var(--hp-white);
}
.hp-page-breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   INNER PAGES – Content Wrapper
   ============================================================ */
.hp-inner-section {
    padding: 80px 0;
}
.hp-inner-section-sm {
    padding: 56px 0;
}

/* ============================================================
   AUTH PAGES – Shared Styles
   ============================================================ */
/* ============================================================
   LOGIN PAGE – Split: Info Left, Form Right
   ============================================================ */
.hp-auth-page {
    font-family: 'Lexend Deca', sans-serif;
    min-height: 100vh;
    display: flex;
    background: #f8f7fc;
    color: var(--hp-gray-800);
}
.hp-auth-page *, .hp-auth-page *::before, .hp-auth-page *::after {
    box-sizing: border-box;
}

/* LEFT: Info/branding panel (shared between login & register) */
.hp-auth-info {
    flex: 0 0 440px;
    background: linear-gradient(160deg, #561269, #45105a 40%, #5b21b6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.hp-auth-info::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -120px;
    right: -120px;
    pointer-events: none;
}
.hp-auth-info::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}
.hp-auth-info-inner {
    position: relative;
    z-index: 1;
}
.hp-auth-info-logo {
    margin-bottom: 40px;
}
.hp-auth-info-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
.hp-auth-info-inner h2 {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
}
.hp-auth-info-inner p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0 0 32px;
}
.hp-auth-info-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hp-auth-info-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
}
.hp-auth-info-features li i {
    font-size: 20px;
    color: #86efac;
    flex-shrink: 0;
}

/* RIGHT: Form panel */
.hp-auth-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
}
/* Auth logo — shared across login & register */
.hp-auth-logo {
    margin-bottom: 24px;
}
.hp-auth-logo img {
    height: 28px;
    width: auto;
}
.hp-auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--hp-white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(86,18,105,0.1), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(86,18,105,0.08);
    padding: 52px 44px;
}
.hp-auth-card h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--hp-gray-900);
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.hp-auth-card .hp-auth-subtitle {
    font-size: 0.92rem;
    color: var(--hp-gray-500);
    margin: 0 0 28px;
    line-height: 1.6;
}
.hp-auth-form .hp-form-group {
    margin-bottom: 20px;
}
.hp-auth-form label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--hp-gray-800);
    margin-bottom: 6px;
}
.hp-auth-form label .hp-required {
    color: #ef4444;
    margin-left: 2px;
}
.hp-auth-form .hp-input-wrap {
    position: relative;
}
.hp-auth-form .hp-input {
    width: 100%;
    padding: 13px 14px;
    padding-right: 42px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-800);
    background: #fafafe;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}
.hp-auth-form .hp-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.1);
    background: var(--hp-white);
}
.hp-auth-form .hp-input.is-invalid {
    border-color: #ef4444;
}
.hp-auth-form .hp-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hp-gray-400);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.15s;
}
.hp-auth-form .hp-input-icon:hover {
    color: var(--hp-primary);
}

/* Custom country select */
.hp-custom-select {
    position: relative;
    width: 100%;
}
.hp-custom-select-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 14px;
    padding-right: 42px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-400);
    background: #fafafe;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    user-select: none;
    position: relative;
}
.hp-custom-select-trigger.has-value {
    color: var(--hp-gray-800);
}
.hp-custom-select.open .hp-custom-select-trigger {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.1);
    background: var(--hp-white);
}
.hp-custom-select-flag {
    font-size: 1.2rem;
    line-height: 1;
}
.hp-custom-select-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-custom-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hp-gray-400);
    font-size: 16px;
    transition: transform 0.2s;
}
.hp-custom-select.open .hp-custom-select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--hp-primary);
}
.hp-custom-select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--hp-white);
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 100;
    overflow: hidden;
}
.hp-custom-select.open .hp-custom-select-dropdown {
    display: block;
    animation: hp-select-fade-in 0.15s ease-out;
}
@keyframes hp-select-fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.hp-custom-select-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--hp-gray-200);
}
.hp-custom-select-search i {
    color: var(--hp-gray-400);
    font-size: 16px;
}
.hp-custom-select-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.85rem;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-800);
    background: transparent;
}
.hp-custom-select-search input::placeholder {
    color: var(--hp-gray-400);
}
.hp-custom-select-options {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 240px;
    overflow-y: auto;
}
.hp-custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.hp-custom-select-options::-webkit-scrollbar-thumb {
    background: var(--hp-gray-200);
    border-radius: 3px;
}
.hp-custom-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--hp-gray-700);
    transition: background 0.12s;
}
.hp-custom-select-option:hover {
    background: #f5f3ff;
}
.hp-custom-select-option.selected {
    background: #ede9fe;
    color: var(--hp-primary);
    font-weight: 500;
}
.hp-option-flag {
    font-size: 1.2rem;
    line-height: 1;
}
.hp-option-name {
    flex: 1;
}

.hp-auth-form .hp-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.hp-auth-form .hp-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--hp-gray-600);
    cursor: pointer;
}
.hp-auth-form .hp-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--hp-primary);
    cursor: pointer;
}
.hp-auth-form .hp-forgot-link {
    font-size: 0.85rem;
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.hp-auth-form .hp-forgot-link:hover {
    color: var(--hp-primary-hover);
}
.hp-auth-submit {
    width: 100%;
    padding: 16px 28px;
    border: none;
    border-radius: 10px;
    background: var(--hp-primary);
    color: var(--hp-white);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.2px;
}
.hp-auth-submit:hover {
    background: var(--hp-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(86,18,105,0.35);
}
/* Trust line below login button */
.hp-auth-trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--hp-gray-400);
    font-weight: 500;
    letter-spacing: 0.2px;
}
.hp-auth-trust-line i {
    font-size: 14px;
    color: #059669;
}
.hp-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--hp-gray-500);
}
.hp-auth-footer a {
    color: var(--hp-primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.15s;
}
.hp-auth-footer a:hover {
    color: var(--hp-primary-hover);
}

/* Auth template aliases: template uses left(form)/right(branding) layout */
.hp-auth-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
}
.hp-auth-right {
    flex: 0 0 420px;
    background: linear-gradient(160deg, #561269, #3d0d4b 40%, #4a1060);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}
.hp-auth-right::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.hp-auth-right::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(147,51,234,0.15);
    bottom: -60px;
    left: -60px;
    pointer-events: none;
}

/* Beauty & barber floating particles */
.hp-auth-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hp-auth-particle {
    position: absolute;
    opacity: 0.12;
    animation: hpParticleFloat 12s ease-in-out infinite;
}
.hp-auth-particle:nth-child(1) { top: 8%; left: 12%; font-size: 28px; animation-delay: 0s; animation-duration: 14s; }
.hp-auth-particle:nth-child(2) { top: 18%; right: 15%; font-size: 22px; animation-delay: -2s; animation-duration: 11s; opacity: 0.09; }
.hp-auth-particle:nth-child(3) { top: 35%; left: 8%; font-size: 20px; animation-delay: -4s; animation-duration: 16s; opacity: 0.08; }
.hp-auth-particle:nth-child(4) { top: 50%; right: 10%; font-size: 26px; animation-delay: -6s; animation-duration: 13s; opacity: 0.1; }
.hp-auth-particle:nth-child(5) { top: 22%; left: 55%; font-size: 18px; animation-delay: -3s; animation-duration: 15s; opacity: 0.07; }
.hp-auth-particle:nth-child(6) { top: 65%; left: 20%; font-size: 24px; animation-delay: -8s; animation-duration: 12s; opacity: 0.1; }
.hp-auth-particle:nth-child(7) { top: 42%; left: 70%; font-size: 16px; animation-delay: -5s; animation-duration: 17s; opacity: 0.06; }
.hp-auth-particle:nth-child(8) { top: 10%; left: 40%; font-size: 20px; animation-delay: -7s; animation-duration: 10s; opacity: 0.08; }
@keyframes hpParticleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(5deg); }
    50% { transform: translateY(6px) rotate(-3deg); }
    75% { transform: translateY(-8px) rotate(2deg); }
}

.hp-auth-right-content {
    position: relative;
    z-index: 2;
    max-width: 320px;
}
.hp-auth-right-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hp-auth-right-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin: 0 0 28px;
}
.hp-auth-right-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hp-auth-right-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}
.hp-auth-right-features li i {
    color: #a6e3a1;
    font-size: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(166,227,161,0.4));
}

/* Login responsive */
@media (max-width: 860px) {
    .hp-auth-page {
        flex-direction: column;
    }
    .hp-auth-info,
    .hp-auth-right {
        display: none;
    }
    .hp-auth-form-side,
    .hp-auth-left {
        padding: 32px 20px;
    }
}
@media (max-width: 480px) {
    .hp-auth-card {
        padding: 32px 24px;
    }
}

/* ============================================================
   REGISTRATION PAGE – Split: Info Left, Form Right
   ============================================================ */
.hp-register-page {
    font-family: 'Lexend Deca', sans-serif;
    display: flex;
    min-height: 100vh;
    background: #f8f7fc;
    color: var(--hp-gray-800);
}
.hp-register-page *, .hp-register-page *::before, .hp-register-page *::after {
    box-sizing: border-box;
}

/* LEFT: Info/branding panel (alias: hp-register-right for reversed template layout) */
.hp-register-info,
.hp-register-right {
    flex: 0 0 420px;
    background: linear-gradient(160deg, #561269, #45105a 40%, #5b21b6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.hp-register-info::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -120px;
    right: -120px;
    pointer-events: none;
}
.hp-register-info::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}
.hp-register-info-inner {
    position: relative;
    z-index: 1;
}
.hp-register-info-inner h2 {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
}
.hp-register-info-inner p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0 0 32px;
}

/* RIGHT: Form panel (alias: hp-register-left for reversed template layout) */
.hp-register-form-side,
.hp-register-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 52px 48px;
    overflow-y: auto;
    max-height: 100vh;
}
.hp-register-form-wrap {
    width: 100%;
    max-width: 740px;
    background: var(--hp-white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(86,18,105,0.1), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(86,18,105,0.08);
    padding: 52px 52px;
    position: relative;
    overflow: visible;
    margin: auto 0;
}
.hp-register-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #561269, #9333ea, #8b3f94);
    border-radius: 16px 16px 0 0;
    z-index: 1;
}
.hp-register-form-wrap .hp-auth-logo {
    margin-bottom: 28px;
}
.hp-register-form-wrap .hp-auth-logo img {
    height: 40px;
    width: auto;
}
.hp-register-form-wrap h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--hp-gray-900);
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}
.hp-register-form-wrap .hp-auth-subtitle {
    font-size: 0.92rem;
    color: var(--hp-gray-500);
    margin: 0 0 36px;
    line-height: 1.6;
}

/* ── Register form sections & spacing ── */
.hp-register-form-wrap .hp-auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hp-form-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(86,18,105,0.07);
}
.hp-form-section:last-of-type {
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: none;
}
.hp-form-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hp-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(86,18,105,0.08);
}
.hp-form-section-label i {
    font-size: 20px;
    color: var(--hp-primary);
    opacity: 0.8;
}
.hp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}
.hp-form-row .hp-form-group {
    margin-bottom: 18px;
}
.hp-form-section > .hp-form-group {
    margin-bottom: 18px;
}
.hp-form-section > .hp-form-group:last-child {
    margin-bottom: 0;
}

/* Slug input with domain prefix */
.hp-slug-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--hp-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hp-slug-input-wrap:focus-within {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.08);
}
.hp-slug-prefix {
    padding: 0 10px 0 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--hp-gray-400);
    background: var(--hp-gray-50);
    border-right: 1px solid var(--hp-gray-200);
    white-space: nowrap;
    height: 46px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.hp-slug-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 10px !important;
    font-weight: 600;
    color: var(--hp-primary) !important;
    letter-spacing: 0.3px;
}
.hp-field-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--hp-gray-400);
    margin-top: 6px;
}
.hp-field-hint i {
    font-size: 14px;
    flex-shrink: 0;
}

/* Phone input with country prefix */
.hp-phone-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--hp-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hp-phone-wrap:focus-within {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.08);
}
.hp-phone-prefix {
    padding: 0 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hp-gray-600);
    background: var(--hp-gray-50);
    border-right: 1px solid var(--hp-gray-200);
    white-space: nowrap;
    height: 46px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.hp-phone-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 14px !important;
}

/* Gender radio group */
.hp-gender-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}
.hp-gender-option {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--hp-gray-700);
    cursor: pointer;
    padding: 8px 14px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 8px;
    background: #fafafe;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
}
.hp-gender-option:hover {
    border-color: rgba(86,18,105,0.3);
    background: rgba(86,18,105,0.03);
}
.hp-gender-option input[type="radio"] {
    accent-color: var(--hp-primary);
    width: 16px;
    height: 16px;
}
.hp-gender-option input[type="radio"]:checked + span,
.hp-gender-option:has(input:checked) {
    border-color: var(--hp-primary);
    background: rgba(86,18,105,0.05);
    color: var(--hp-primary);
    font-weight: 600;
}

/* Submit button extra spacing */
.hp-register-form-wrap .hp-auth-submit {
    margin-top: 8px;
}
/* Register footer – always visible */
.hp-register-form-wrap .hp-auth-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(86,18,105,0.08);
    font-size: 0.9rem;
    color: var(--hp-gray-500);
}

/* Form layout (legacy hp-reg-* classes) */
.hp-register-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hp-reg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.hp-reg-row-single {
    grid-template-columns: 1fr;
}
.hp-reg-field {
    display: flex;
    flex-direction: column;
}
.hp-reg-field label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--hp-gray-800);
    margin-bottom: 6px;
}
.hp-req {
    color: #ef4444;
    margin-left: 2px;
}

/* Inputs */
.hp-reg-input {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-800);
    background: #fafafe;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}
.hp-reg-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.1);
    background: var(--hp-white);
}
.hp-reg-input::placeholder {
    color: var(--hp-gray-400);
}
.hp-reg-input-wrap {
    position: relative;
}
.hp-reg-input-wrap .hp-reg-input {
    padding-right: 42px;
}
.hp-reg-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hp-gray-400);
    font-size: 18px;
    pointer-events: none;
}
.hp-reg-toggle {
    pointer-events: auto;
    cursor: pointer;
    transition: color 0.15s;
}
.hp-reg-toggle:hover {
    color: var(--hp-primary);
}

/* Slug input with domain prefix */
.hp-reg-slug-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--hp-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hp-reg-slug-wrap:focus-within {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.08);
}
.hp-reg-slug-prefix {
    padding: 0 10px 0 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--hp-gray-400);
    background: var(--hp-gray-50);
    border-right: 1px solid var(--hp-gray-200);
    white-space: nowrap;
    height: 42px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.hp-reg-slug-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 10px !important;
    font-weight: 600;
    color: var(--hp-primary) !important;
    letter-spacing: 0.3px;
}

/* Phone input with +977 prefix */
.hp-reg-phone-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--hp-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hp-reg-phone-wrap:focus-within {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.08);
}
.hp-reg-phone-prefix {
    padding: 0 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hp-gray-700);
    background: var(--hp-gray-50);
    border-right: 1px solid var(--hp-gray-200);
    white-space: nowrap;
    height: 42px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.hp-reg-phone-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 14px !important;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Gender radio group */
.hp-reg-gender {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}
.hp-reg-gender-opt {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 12px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.82rem;
    color: var(--hp-gray-700);
    white-space: nowrap;
}
.hp-reg-gender-opt:has(input:checked) {
    border-color: var(--hp-primary);
    background: rgba(86,18,105,0.04);
    color: var(--hp-primary);
}
.hp-reg-gender-opt input[type="radio"] {
    accent-color: var(--hp-primary);
    margin: 0;
}

/* Hint & error */
.hp-reg-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--hp-gray-400);
    margin-top: 5px;
}
.hp-reg-hint i {
    font-size: 13px;
}
.hp-reg-error {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
}

/* Submit button */
.hp-reg-submit {
    width: 100%;
    padding: 16px 28px;
    margin-top: 8px;
    border: none;
    border-radius: 10px;
    background: var(--hp-primary);
    color: var(--hp-white);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
}
.hp-reg-submit:hover {
    background: var(--hp-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(86,18,105,0.35);
}
.hp-reg-submit i {
    font-size: 18px;
    transition: transform 0.2s;
}
.hp-reg-submit:hover i {
    transform: translateX(3px);
}

/* Footer link */
.hp-reg-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--hp-gray-500);
}
.hp-reg-footer a {
    color: var(--hp-primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.15s;
}
.hp-reg-footer a:hover {
    color: var(--hp-primary-hover);
}

/* Branding badge & features (used in info panel) */
.hp-register-right-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}
.hp-register-right-badge i {
    font-size: 16px;
    color: #a5f3fc;
}
.hp-register-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hp-register-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}
.hp-register-features li i {
    font-size: 20px;
    color: #86efac;
    flex-shrink: 0;
}

/* Register – Responsive */
@media (max-width: 1024px) {
    .hp-register-info,
    .hp-register-right {
        flex: 0 0 360px;
        padding: 48px 36px;
    }
}
@media (max-width: 860px) {
    .hp-register-page {
        flex-direction: column;
    }
    .hp-register-info,
    .hp-register-right {
        display: none;
    }
    .hp-register-form-side,
    .hp-register-left {
        max-height: none;
        padding: 32px 20px;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .hp-reg-row {
        grid-template-columns: 1fr;
    }
    .hp-register-form-side {
        padding: 24px 16px;
    }
    .hp-register-form-wrap {
        padding: 28px 20px;
    }
    .hp-register-form-wrap h1 {
        font-size: 1.35rem;
    }
}

/* Auth page – OTP */
.hp-otp-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(86,18,105,0.03) 0%, rgba(140,20,160,0.02) 100%), var(--hp-off-white);
    padding: 48px 24px;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-800);
}
.hp-otp-card {
    width: 100%;
    max-width: 480px;
    background: var(--hp-white);
    border-radius: var(--hp-radius-xl);
    box-shadow: var(--hp-shadow-md);
    padding: 48px;
    text-align: center;
}
.hp-otp-card img {
    height: 36px;
    margin-bottom: 32px;
}
.hp-otp-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 8px;
}
.hp-otp-card .hp-otp-desc {
    font-size: 0.9rem;
    color: var(--hp-gray-500);
    margin: 0 0 32px;
}
.hp-otp-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}
.hp-otp-input {
    width: 52px;
    height: 56px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: var(--hp-radius);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-900);
    transition: var(--hp-transition);
    outline: none;
}
.hp-otp-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.1);
}
.hp-otp-timer {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hp-primary);
    margin-bottom: 8px;
}
.hp-otp-resend {
    font-size: 0.85rem;
    color: var(--hp-gray-500);
    margin-bottom: 32px;
}
.hp-otp-resend a {
    color: var(--hp-primary);
    font-weight: 600;
    text-decoration: none;
}
.hp-otp-resend a[style*="pointer-events: none"] {
    opacity: 0.5;
}

/* ============================================================
   CONTACT US PAGE
   ============================================================ */
.hp-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.hp-contact-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-gray-200);
    border-radius: var(--hp-radius-lg);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--hp-transition);
}
.hp-contact-card:hover {
    border-color: var(--hp-primary-light);
    box-shadow: var(--hp-shadow);
}
.hp-contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--hp-radius);
    background: var(--hp-primary-50);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.hp-contact-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    margin: 0 0 6px;
}
.hp-contact-card p {
    font-size: 0.88rem;
    color: var(--hp-gray-500);
    margin: 0 0 12px;
    line-height: 1.6;
}
.hp-contact-card .hp-contact-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--hp-transition);
}
.hp-contact-card .hp-contact-action:hover {
    gap: 10px;
}

/* Contact Form */
.hp-contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.hp-contact-form-wrap h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    text-align: center;
    margin: 0 0 8px;
}
.hp-contact-form-wrap > p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--hp-gray-500);
    margin: 0 0 32px;
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.hp-about-content {
    max-width: 800px;
    margin: 0 auto;
}
.hp-about-content h2, .hp-about-content h3, .hp-about-content h4 {
    color: var(--hp-gray-900);
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}
.hp-about-content p {
    font-size: 1rem;
    color: var(--hp-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}
.hp-about-content ul, .hp-about-content ol {
    color: var(--hp-gray-600);
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 16px;
}
.hp-about-content img {
    border-radius: var(--hp-radius-lg);
    margin: 16px 0;
}

/* ============================================================
   BLOG DETAIL PAGE
   ============================================================ */
.hp-blog-detail-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.hp-blog-detail-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 16px;
    line-height: 1.3;
}
.hp-blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--hp-gray-500);
}
.hp-blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hp-blog-detail-meta i {
    font-size: 16px;
    color: var(--hp-primary);
}
.hp-blog-detail-image {
    border-radius: var(--hp-radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    aspect-ratio: 16/7;
}
.hp-blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-blog-detail-body {
    max-width: 760px;
    margin: 0 auto;
}
.hp-blog-detail-body p {
    font-size: 1rem;
    color: var(--hp-gray-600);
    line-height: 1.9;
    margin-bottom: 16px;
}
.hp-blog-detail-body h2, .hp-blog-detail-body h3, .hp-blog-detail-body h4 {
    color: var(--hp-gray-900);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}
.hp-blog-detail-body img {
    border-radius: var(--hp-radius);
    margin: 16px 0;
}
.hp-blog-detail-body ul, .hp-blog-detail-body ol {
    color: var(--hp-gray-600);
    line-height: 1.9;
    padding-left: 24px;
    margin-bottom: 16px;
}

/* Blog Navigation */
.hp-blog-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--hp-gray-200);
    border-bottom: 1px solid var(--hp-gray-200);
    margin: 40px auto;
    max-width: 760px;
}
.hp-blog-nav-item {
    flex: 1;
    text-decoration: none;
    transition: var(--hp-transition);
}
.hp-blog-nav-item:hover {
    transform: translateX(4px);
}
.hp-blog-nav-item.prev:hover {
    transform: translateX(-4px);
}
.hp-blog-nav-item.next {
    text-align: right;
}
.hp-blog-nav-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hp-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.hp-blog-nav-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Card */
.hp-author-card {
    background: var(--hp-primary-50);
    border-radius: var(--hp-radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto 40px;
}
.hp-author-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.hp-author-card-info span {
    display: block;
    font-size: 0.82rem;
    color: var(--hp-gray-500);
    margin-bottom: 2px;
}
.hp-author-card-info strong {
    font-size: 1.05rem;
    color: var(--hp-gray-900);
}

/* Related Blogs */
.hp-related-blogs {
    max-width: 1000px;
    margin: 0 auto;
}
.hp-related-blogs h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 24px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.hp-faq-page .hp-faq-accordion {
    max-width: 760px;
    margin: 0 auto;
}

/* ============================================================
   PRICING PAGE – Plan Tabs
   ============================================================ */
.hp-pricing-tabs {
    display: inline-flex;
    background: var(--hp-gray-100);
    border-radius: var(--hp-radius-full);
    padding: 4px;
    margin: 0 auto 48px;
}
.hp-pricing-tab {
    padding: 10px 24px;
    border: none;
    border-radius: var(--hp-radius-full);
    background: transparent;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--hp-gray-600);
    cursor: pointer;
    transition: var(--hp-transition);
    font-family: 'Lexend Deca', sans-serif;
}
.hp-pricing-tab.active {
    background: var(--hp-primary);
    color: var(--hp-white);
    box-shadow: var(--hp-shadow-sm);
}

/* ============================================================
   COMPARE PLAN TABLE
   ============================================================ */
.hp-compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--hp-radius-lg);
    border: 1px solid var(--hp-gray-200);
}
.hp-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.hp-compare-table thead th {
    background: var(--hp-gray-900);
    color: var(--hp-white);
    font-weight: 600;
    padding: 16px 20px;
    text-align: center;
    white-space: nowrap;
}
.hp-compare-table thead th:first-child {
    text-align: left;
}
.hp-compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--hp-gray-100);
    text-align: center;
    color: var(--hp-gray-700);
}
.hp-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--hp-gray-800);
}
.hp-compare-table tbody tr:hover {
    background: var(--hp-primary-50);
}
.hp-compare-table .hp-check-icon {
    color: var(--hp-primary);
    font-size: 18px;
}
.hp-compare-table .hp-cross-icon {
    color: var(--hp-gray-300);
    font-size: 18px;
}

/* ============================================================
   PAYMENT HISTORY TABLE
   ============================================================ */
.hp-payment-table-wrap {
    overflow-x: auto;
    border-radius: var(--hp-radius-lg);
    border: 1px solid var(--hp-gray-200);
}
.hp-payment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.hp-payment-table thead th {
    background: var(--hp-gray-900);
    color: var(--hp-white);
    font-weight: 500;
    padding: 14px 16px;
    white-space: nowrap;
    text-align: left;
}
.hp-payment-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--hp-gray-100);
    color: var(--hp-gray-700);
}
.hp-payment-table tbody tr:hover {
    background: var(--hp-primary-50);
}
.hp-payment-table .hp-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--hp-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}
.hp-payment-table .hp-badge-active {
    background: #dcfce7;
    color: #15803d;
}
.hp-payment-table .hp-badge-inactive {
    background: #fef2f2;
    color: #b91c1c;
}
.hp-payment-table .hp-download-link {
    color: var(--hp-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.hp-payment-table .hp-download-link:hover {
    color: var(--hp-primary-hover);
}

/* ============================================================
   EDIT PROFILE PAGE
   ============================================================ */
.hp-profile-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--hp-gray-200);
    margin-bottom: 32px;
}
.hp-profile-tab {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hp-gray-500);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: var(--hp-transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'Lexend Deca', sans-serif;
}
.hp-profile-tab.active {
    color: var(--hp-primary);
    border-bottom-color: var(--hp-primary);
    font-weight: 600;
}
.hp-profile-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-gray-200);
    border-radius: var(--hp-radius-lg);
    padding: 32px;
}
.hp-avatar-upload {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}
.hp-avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hp-primary-100);
}
.hp-avatar-upload-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: var(--hp-radius);
    background: var(--hp-white);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hp-gray-700);
    cursor: pointer;
    transition: var(--hp-transition);
    font-family: 'Lexend Deca', sans-serif;
}
.hp-avatar-upload-btn:hover {
    border-color: var(--hp-primary);
    color: var(--hp-primary);
}

/* ============================================================
   DYNAMIC PAGE (page.blade.php)
   ============================================================ */
.hp-page-content {
    max-width: 800px;
    margin: 0 auto;
}
.hp-page-content h1, .hp-page-content h2, .hp-page-content h3,
.hp-page-content h4, .hp-page-content h5, .hp-page-content h6 {
    color: var(--hp-gray-900);
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}
.hp-page-content p {
    font-size: 1rem;
    color: var(--hp-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}
.hp-page-content img {
    border-radius: var(--hp-radius);
    margin: 16px 0;
}
.hp-page-content ul, .hp-page-content ol {
    color: var(--hp-gray-600);
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 16px;
}

/* ============================================================
   INNER PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hp-auth-left { padding: 32px 24px; border-radius: var(--hp-radius-lg); }
    .hp-register-card { padding: 32px 24px; }
    .hp-register-form-wrap { padding: 36px 28px; }
    .hp-form-section { margin-bottom: 24px; padding-bottom: 20px; }
    .hp-contact-cards { grid-template-columns: 1fr; }
    .hp-blog-nav { flex-direction: column; }
    .hp-author-card { flex-direction: column; text-align: center; }
    .hp-page-header h1 { font-size: 1.75rem; }
    .hp-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .hp-page-header { padding: 48px 0 36px; }
    .hp-page-header h1 { font-size: 1.45rem; }
    .hp-page-header .hp-breadcrumb { font-size: 0.82rem; }
    .hp-inner-section { padding: 48px 0; }
    .hp-auth-left { padding: 24px 16px; border-radius: var(--hp-radius); }
    .hp-auth-form .hp-form-row { grid-template-columns: 1fr; }
    .hp-register-form-wrap { padding: 28px 20px; }
    .hp-register-form-wrap h1 { font-size: 1.4rem; }
    .hp-form-section { margin-bottom: 20px; padding-bottom: 16px; }
    .hp-form-section-label { font-size: 0.82rem; margin-bottom: 14px; }
    .hp-gender-option { padding: 8px 14px; font-size: 0.84rem; }
    .hp-otp-inputs { gap: 8px; }
    .hp-otp-input { width: 44px; height: 48px; }
    .hp-blog-detail-header h1 { font-size: 1.4rem; }
    .hp-blog-detail-meta { flex-wrap: wrap; justify-content: center; }
    .hp-register-card { padding: 24px 16px; }
    .hp-blog-grid { grid-template-columns: 1fr; }
    .hp-contact-card { padding: 24px 16px; }
    .hp-pricing-toggle { font-size: 0.88rem; }
}
@media (max-width: 480px) {
    .hp-gender-group { flex-wrap: wrap; }
    .hp-gender-option { flex: 1; justify-content: center; }
    .hp-auth-demo-btns { flex-direction: column; }
    .hp-pricing-tabs { flex-direction: column; border-radius: var(--hp-radius); }
    .hp-auth-form .hp-form-group label { font-size: 0.85rem; }
    .hp-auth-form input, .hp-auth-form select { font-size: 0.9rem; padding: 10px 14px; }
    .hp-register-card h2 { font-size: 1.3rem; }
    .hp-register-form-wrap { padding: 24px 16px; }
    .hp-register-form-wrap h1 { font-size: 1.25rem; }
    .hp-page-header { padding: 40px 0 28px; }
    .hp-slug-prefix, .hp-phone-prefix { font-size: 0.78rem; padding: 0 10px; }
}

/* =======================================================================
   ONBOARDING WIZARD
   ======================================================================= */
.ob-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f4fb 0%, #f0e8f5 50%, #f5f0fa 100%);
    padding: 0;
    font-family: 'Lexend Deca', sans-serif;
}
.ob-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 24px 48px;
}

/* Header */
.ob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.ob-logo img {
    height: 28px;
    width: auto;
}
.ob-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ob-skip-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--hp-gray-500);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.ob-skip-btn:hover {
    color: var(--hp-primary);
    background: rgba(86,18,105,0.05);
}
.ob-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    padding: 6px 14px;
    border-radius: 20px;
}
.ob-trial-badge.ob-trial-expired {
    color: #dc2626;
    background: #fee2e2;
}

/* Progress Steps */
.ob-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(86,18,105,0.06);
}
.ob-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
}
.ob-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    background: var(--hp-gray-100);
    color: var(--hp-gray-400);
    border: 2px solid var(--hp-gray-200);
    transition: all 0.3s;
}
.ob-step-active .ob-step-circle {
    background: rgba(86,18,105,0.1);
    color: var(--hp-primary);
    border-color: var(--hp-primary);
}
.ob-step-done .ob-step-circle {
    background: var(--hp-primary);
    color: #fff;
    border-color: var(--hp-primary);
}
.ob-step-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--hp-gray-400);
    text-align: center;
    white-space: nowrap;
}
.ob-step-active .ob-step-label {
    color: var(--hp-primary);
    font-weight: 600;
}
.ob-step-done .ob-step-label {
    color: var(--hp-gray-700);
}
.ob-step-line {
    flex: 1;
    height: 2px;
    background: var(--hp-gray-200);
    min-width: 24px;
    margin: 0 6px;
    align-self: flex-start;
    margin-top: 18px;
    transition: background 0.3s;
}
.ob-step-line-done {
    background: var(--hp-primary);
}

/* Panels */
.ob-panel {
    display: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(86,18,105,0.08);
    padding: 36px 36px;
    margin-bottom: 24px;
    animation: obFadeIn 0.35s ease;
}
.ob-panel-active {
    display: block;
}
@keyframes obFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.ob-panel-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(86,18,105,0.06);
}
.ob-panel-header > i {
    font-size: 28px;
    color: var(--hp-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.ob-panel-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin: 0 0 2px;
}
.ob-panel-header p {
    font-size: 0.88rem;
    color: var(--hp-gray-500);
    margin: 0;
}

/* Form Elements */
.ob-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ob-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.ob-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.ob-form-group {
    margin-bottom: 18px;
}
.ob-form-group.ob-full {
    grid-column: 1 / -1;
}
.ob-form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--hp-gray-700);
    margin-bottom: 6px;
}
.ob-form-group label small {
    font-weight: 400;
    color: var(--hp-gray-400);
}
.ob-req {
    color: #ef4444;
    margin-left: 2px;
}
.ob-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--hp-gray-800);
    background: #fafafe;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.ob-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(86,18,105,0.08);
    background: #fff;
}
.ob-textarea {
    resize: vertical;
    min-height: 80px;
}
select.ob-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 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Radio cards */
.ob-radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ob-radio-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1.5px solid var(--hp-gray-200);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--hp-gray-600);
    background: #fafafe;
    transition: all 0.2s;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}
.ob-radio-card:hover {
    border-color: rgba(86,18,105,0.3);
}
.ob-radio-card:has(input:checked) {
    border-color: var(--hp-primary);
    background: rgba(86,18,105,0.04);
    color: var(--hp-primary);
    font-weight: 600;
}
.ob-radio-card input[type="radio"] {
    accent-color: var(--hp-primary);
}
.ob-radio-card i {
    font-size: 18px;
}

/* Document Upload */
.ob-doc-section {
    margin-bottom: 28px;
}
.ob-doc-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hp-gray-800);
    margin-bottom: 14px;
}
.ob-doc-section-title i {
    color: var(--hp-primary);
    font-size: 18px;
}
.ob-doc-section-title small {
    font-weight: 400;
    color: var(--hp-gray-400);
    font-size: 0.8rem;
}
.ob-doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ob-doc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px dashed var(--hp-gray-200);
    border-radius: 12px;
    background: #fafafe;
    transition: all 0.2s;
}
.ob-doc-card:hover {
    border-color: rgba(86,18,105,0.2);
}
.ob-doc-uploaded {
    border-style: solid;
    border-color: #16a34a;
    background: #f0fdf4;
}
.ob-doc-rejected {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}
.ob-doc-selected {
    border-style: solid;
    border-color: var(--hp-primary);
    background: rgba(86,18,105,0.03);
}
.ob-doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(86,18,105,0.06);
    color: var(--hp-primary);
    font-size: 20px;
    flex-shrink: 0;
}
.ob-doc-status-approved { color: #16a34a; }
.ob-doc-status-rejected { color: #dc2626; }
.ob-doc-status-pending { color: #f59e0b; }
.ob-doc-info {
    flex: 1;
    min-width: 0;
}
.ob-doc-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--hp-gray-800);
    margin-bottom: 2px;
}
.ob-doc-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ob-req-badge {
    background: #fef3c7;
    color: #92400e;
}
.ob-opt-badge {
    background: var(--hp-gray-100);
    color: var(--hp-gray-500);
}
.ob-doc-filename {
    display: block;
    font-size: 0.76rem;
    color: var(--hp-gray-400);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ob-doc-rejection {
    display: block;
    font-size: 0.76rem;
    color: #dc2626;
    margin-top: 2px;
}
.ob-doc-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hp-primary);
    background: rgba(86,18,105,0.06);
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ob-doc-upload-btn:hover {
    background: rgba(86,18,105,0.12);
}
.ob-doc-file-input {
    display: none;
}
.ob-doc-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--hp-gray-400);
    margin-top: 8px;
}

/* Payment sections */
.ob-payment-section {
    margin-bottom: 24px;
}

/* Review cards */
.ob-review {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ob-review-card {
    border: 1px solid var(--hp-gray-200);
    border-radius: 12px;
    padding: 18px 20px;
}
.ob-review-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hp-gray-800);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ob-review-card h4 i {
    color: var(--hp-primary);
}
.ob-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--hp-gray-100);
    font-size: 0.84rem;
}
.ob-review-row:last-child {
    border-bottom: none;
}
.ob-review-row span {
    color: var(--hp-gray-500);
}
.ob-review-row strong {
    color: var(--hp-gray-800);
}
.ob-review-ok {
    color: #16a34a !important;
}
.ob-review-missing {
    color: #dc2626 !important;
}

/* Compliance checkboxes */
.ob-compliance {
    margin-top: 20px;
    gap: 10px;
}
.ob-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--hp-gray-700);
    cursor: pointer;
    padding: 10px 14px;
    border: 1px solid var(--hp-gray-200);
    border-radius: 10px;
    transition: all 0.2s;
}
.ob-check:hover {
    border-color: rgba(86,18,105,0.2);
}
.ob-check input[type="checkbox"] {
    accent-color: var(--hp-primary);
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}
.ob-check a {
    color: var(--hp-primary);
    font-weight: 600;
}

/* Navigation */
.ob-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ob-nav-spacer {
    flex: 1;
}
.ob-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Lexend Deca', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.ob-btn-back {
    background: var(--hp-gray-100);
    color: var(--hp-gray-600);
}
.ob-btn-back:hover {
    background: var(--hp-gray-200);
}
.ob-btn-next {
    background: var(--hp-primary);
    color: #fff;
}
.ob-btn-next:hover {
    background: #45105a;
    color: #fff;
}
.ob-btn-submit {
    background: #16a34a;
    color: #fff;
}
.ob-btn-submit:hover {
    background: #15803d;
}

/* Status banners */
.ob-status-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 14px;
    margin-top: 20px;
}
.ob-status-banner > i {
    font-size: 32px;
    flex-shrink: 0;
}
.ob-status-banner strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.ob-status-banner p {
    font-size: 0.84rem;
    margin: 0;
    opacity: 0.85;
}
.ob-status-pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}
.ob-status-approved {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}
.ob-status-rejected {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Spinner */
@keyframes obSpinAnim {
    to { transform: rotate(360deg); }
}
.ob-spin {
    animation: obSpinAnim 0.8s linear infinite;
}

/* Responsive */
@media (max-width: 767px) {
    .ob-container { padding: 20px 16px 36px; }
    .ob-progress { padding: 14px 12px; gap: 0; overflow-x: auto; }
    .ob-step-label { font-size: 0.65rem; }
    .ob-step-circle { width: 30px; height: 30px; font-size: 0.76rem; }
    .ob-step-line { min-width: 16px; }
    .ob-panel { padding: 24px 20px; }
    .ob-form-row, .ob-form-row-3 { grid-template-columns: 1fr; }
    .ob-doc-grid { grid-template-columns: 1fr; }
    .ob-doc-card { flex-wrap: wrap; }
    .ob-header { flex-direction: column; gap: 12px; align-items: flex-start; }
    .ob-radio-group { flex-direction: column; }
    .ob-status-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .ob-panel-header > i { display: none; }
    .ob-panel-header h2 { font-size: 1.1rem; }
    .ob-btn { padding: 10px 20px; font-size: 0.85rem; }
}

/* =======================================================================
   CUSTOM SCROLLBAR — plum tinted
   ======================================================================= */
* { scrollbar-width: thin; scrollbar-color: rgba(86,18,105,.25) transparent; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(86,18,105,.04); }
::-webkit-scrollbar-thumb { background: rgba(86,18,105,.2); border-radius: 99px; transition: background .2s; }
::-webkit-scrollbar-thumb:hover { background: rgba(86,18,105,.45); }
::-webkit-scrollbar-corner { background: transparent; }
/* ============================================================
   HP2 — HOMEPAGE V2 REDESIGN
   High-contrast, premium, conversion-focused
   ============================================================ */

:root {
    --hp2-primary: #45105a;
    --hp2-primary-light: #c084fc;
    --hp2-primary-dark: #3d0d4b;
    --hp2-primary-glow: rgba(86,18,105,.3);
    --hp2-lavender: #f8e3f7;
    --hp2-lavender-light: #fdf2fd;
    --hp2-bg-warm: #f3f4f6;
    --hp2-bg-tinted: #f0edff;
    --hp2-text: #0f172a;
    --hp2-text-secondary: #1e293b;
    --hp2-text-muted: #64748b;
    --hp2-white: #ffffff;
    --hp2-success: #059669;
    --hp2-warning: #ea580c;
    --hp2-red-muted: #fef2f2;
    --hp2-green-muted: #f0fdf4;
    --hp2-border: #e2e8f0;
    --hp2-dark-bg: #1a0a20;
    --hp2-dark-surface: #261230;
    --hp2-shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --hp2-shadow-md: 0 4px 16px rgba(0,0,0,.1);
    --hp2-shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --hp2-shadow-xl: 0 24px 64px rgba(86,18,105,.2);
    --hp2-radius: 12px;
    --hp2-radius-lg: 20px;
    --hp2-radius-full: 999px;
    --hp2-transition: all .25s ease;
    --hp2-font: 'Lexend Deca', -apple-system, sans-serif;
}

/* ---------- Buttons ---------- */
.hp2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--hp2-font);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--hp2-radius-full);
    cursor: pointer;
    transition: var(--hp2-transition);
    text-decoration: none;
    font-size: 1rem;
    padding: 14px 32px;
    line-height: 1.4;
}
.hp2-btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.hp2-btn-full { width: 100%; }
.hp2-btn-primary {
    background: var(--hp2-primary);
    color: var(--hp2-white);
    border-color: var(--hp2-primary);
}
.hp2-btn-primary:hover {
    background: var(--hp2-primary-dark);
    border-color: var(--hp2-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--hp2-primary-glow);
    color: var(--hp2-white);
    text-decoration: none;
}
.hp2-btn-outline {
    background: transparent;
    color: var(--hp2-primary);
    border-color: var(--hp2-primary);
}
.hp2-btn-outline:hover {
    background: var(--hp2-lavender-light);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--hp2-primary);
}
.hp2-btn-white {
    background: var(--hp2-white);
    color: var(--hp2-primary);
    border-color: var(--hp2-white);
    font-weight: 700;
}
.hp2-btn-white:hover {
    background: var(--hp2-lavender);
    border-color: var(--hp2-lavender);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--hp2-primary-dark);
}
.hp2-btn-ghost-white {
    background: transparent;
    color: var(--hp2-white);
    border-color: rgba(255,255,255,.4);
}
.hp2-btn-ghost-white:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
    text-decoration: none;
    color: var(--hp2-white);
}

/* ---------- Section Shared ---------- */
.hp2-section {
    padding: 120px 0;
    position: relative;
}

/* ============================================================
   GEOMETRIC SECTION DIVIDERS
   SVG clip-path separators between sections
   ============================================================ */

/* --- Shared divider base --- */
.hp2-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

/* 1. Hero → Trust: soft wave */
.hp2-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--hp2-white);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

/* 2. Trust → Problem: angled slash */
.hp2-trust-bar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--hp2-bg-warm);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

/* 3. Problem → Features: triangle notch */
.hp2-problem::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--hp2-white);
    clip-path: polygon(0 60%, 50% 0, 100% 60%, 100% 100%, 0 100%);
    z-index: 2;
}

/* 4. Features → Showcase: slant right */
.hp2-features::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--hp2-bg-tinted);
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%);
    z-index: 2;
}

/* 5. Showcase → Live Dashboard: zigzag */
.hp2-showcase::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--hp2-dark-bg);
    clip-path: polygon(
        0% 50%, 8% 0%, 16% 50%, 24% 0%, 32% 50%, 40% 0%,
        48% 50%, 56% 0%, 64% 50%, 72% 0%, 80% 50%, 88% 0%,
        96% 50%, 100% 0%, 100% 100%, 0% 100%
    );
    z-index: 2;
}

/* 6. Live Dashboard → ROI: no divider (both dark) */

/* 7. ROI → Pricing: curve up */
.hp2-roi::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--hp2-bg-warm);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

/* 8. Pricing → Testimonials: reverse angle */
.hp2-pricing::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--hp2-white);
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
    z-index: 2;
}

/* 9. Testimonials → FAQ: triangle notch */
.hp2-testimonials::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--hp2-bg-warm);
    clip-path: polygon(0 60%, 50% 0, 100% 60%, 100% 100%, 0 100%);
    z-index: 2;
}

/* 10. FAQ → Final CTA: zigzag into dark */
.hp2-faq::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, var(--hp2-primary-dark) 0%, var(--hp2-primary) 100%);
    clip-path: polygon(
        0% 50%, 8% 0%, 16% 50%, 24% 0%, 32% 50%, 40% 0%,
        48% 50%, 56% 0%, 64% 50%, 72% 0%, 80% 50%, 88% 0%,
        96% 50%, 100% 0%, 100% 100%, 0% 100%
    );
    z-index: 2;
}

/* Responsive: smaller dividers on mobile */
@media (max-width: 767px) {
    .hp2-hero::after,
    .hp2-roi::after { height: 35px; }
    .hp2-trust-bar::after,
    .hp2-problem::after,
    .hp2-features::after,
    .hp2-pricing::after,
    .hp2-testimonials::after { height: 30px; }
    .hp2-showcase::after,
    .hp2-faq::after { height: 24px; }
}
.hp2-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}
.hp2-section-header h2 {
    font-size: 2.9rem;
    font-weight: 900;
    color: var(--hp2-text);
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.hp2-section-header p,
.hp2-section-sub {
    font-size: 1.15rem;
    color: var(--hp2-text-muted);
    line-height: 1.7;
}
.hp2-overline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--hp2-primary);
    margin-bottom: 16px;
    background: var(--hp2-lavender);
    padding: 6px 18px;
    border-radius: var(--hp2-radius-full);
}

/* Light header for dark sections */
.hp2-header-light h2 { color: var(--hp2-white) !important; }
.hp2-header-light p { color: rgba(255,255,255,.65) !important; }
.hp2-overline-light {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
}

/* ============================================================
   HERO — Outcome-driven, dominant
   ============================================================ */
.hp2-hero {
    padding: 170px 0 110px;
    background: linear-gradient(175deg, #f0ecff 0%, var(--hp2-white) 60%);
    position: relative;
    overflow: hidden;
}
.hp2-hero .container {
    padding-left: 40px;
    padding-right: 40px;
}
.hp2-hero-bg-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(86,18,105,.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hp2-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hp2-hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--hp2-text);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hp2-hero-accent {
    color: var(--hp2-primary);
}
.hp2-hero-sub {
    font-size: 1.25rem;
    color: var(--hp2-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}
.hp2-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hp2-hero-proof {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}
.hp2-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}
.hp2-proof-item i {
    color: var(--hp2-success);
    font-size: 1.1rem;
}
.hp2-proof-item strong {
    color: var(--hp2-text);
    font-weight: 700;
}
.hp2-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hp2-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(86,18,105,.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
.hp2-hero-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(86,18,105,.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 25%;
    left: 25%;
    z-index: 0;
    pointer-events: none;
    animation: hp2-glow-pulse 4s ease-in-out infinite alternate;
}
@keyframes hp2-glow-pulse {
    0% { opacity: .5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}
.hp2-hero-dashboard {
    position: relative;
    z-index: 1;
    width: 110%;
    max-width: 700px;
    border-radius: var(--hp2-radius-lg);
    box-shadow: 0 30px 80px rgba(15,23,42,.22), 0 0 0 1px rgba(86,18,105,.12);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.hp2-trust-bar {
    background: var(--hp2-white);
    padding: 48px 0 56px;
    position: relative;
    border-bottom: 1px solid var(--hp2-border);
}
.hp2-trust-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Stats row */
.hp2-trust-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hp2-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.hp2-trust-stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--hp2-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}
.hp2-trust-stat-num i {
    font-size: 0.85rem;
    color: #f59e0b;
    margin-left: 2px;
    vertical-align: middle;
}
.hp2-trust-stat-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hp2-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp2-trust-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--hp2-border);
}

/* Divider */
.hp2-trust-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hp2-primary), transparent);
    border-radius: 2px;
    opacity: 0.4;
}

/* Bottom: payments + cities */
.hp2-trust-bottom {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.hp2-trust-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp2-trust-group-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hp2-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.hp2-trust-group-label i {
    font-size: 14px;
    color: var(--hp2-primary);
}
.hp2-trust-label {
    font-size: 0.85rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}
.hp2-trust-items {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.hp2-trust-logos {
    display: flex;
    gap: 10px;
}
.hp2-trust-logo-item {
    background: var(--hp2-lavender-light);
    padding: 5px 16px;
    border-radius: var(--hp2-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hp2-primary);
    border: 1px solid var(--hp2-lavender);
    transition: var(--hp2-transition);
}
.hp2-trust-logo-item:hover {
    background: var(--hp2-lavender);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(86,18,105,.12);
}
.hp2-trust-sep {
    width: 1px;
    height: 24px;
    background: var(--hp2-border);
}

/* --- GPS / Geo animated cities --- */
.hp2-trust-geo .hp2-trust-group-label i {
    color: #dc2626;
    animation: hp2-pin-bounce 2s ease-in-out infinite;
}
@keyframes hp2-pin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.hp2-trust-cities {
    display: flex;
    gap: 24px;
    font-size: 0.82rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
    align-items: center;
}
.hp2-geo-pin {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: hp2-geo-fadein 0.6s ease-out both;
}
@keyframes hp2-geo-fadein {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.hp2-geo-radar {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp2-geo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hp2-success);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 6px rgba(5,150,105,.5);
}
.hp2-geo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid var(--hp2-success);
    opacity: 0;
    z-index: 1;
}
.hp2-geo-ring-1 {
    width: 16px;
    height: 16px;
    animation: hp2-radar-pulse 2.5s ease-out infinite;
}
.hp2-geo-ring-2 {
    width: 24px;
    height: 24px;
    animation: hp2-radar-pulse 2.5s ease-out 0.6s infinite;
}
@keyframes hp2-radar-pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}
.hp2-geo-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hp2-text);
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.hp2-geo-pin:hover .hp2-geo-dot {
    background: #dc2626;
    box-shadow: 0 0 10px rgba(220,38,38,.5);
    transform: scale(1.3);
    transition: all 0.2s;
}
.hp2-geo-pin:hover .hp2-geo-ring {
    border-color: #dc2626;
}
.hp2-geo-pin:hover .hp2-geo-label {
    color: var(--hp2-primary);
}

@media (max-width: 767px) {
    .hp2-trust-stats { gap: 24px; }
    .hp2-trust-stat-num { font-size: 1.4rem; }
    .hp2-trust-stat-sep { height: 28px; }
    .hp2-trust-bottom { flex-direction: column; gap: 16px; }
    .hp2-trust-group { flex-direction: column; gap: 8px; }
    .hp2-trust-cities { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   PROBLEM vs SOLUTION — grey bg
   ============================================================ */
.hp2-problem {
    background: var(--hp2-bg-warm);
}
.hp2-problem .hp2-section-header { max-width: 700px; }
.hp2-problem .hp2-section-header h2 { font-size: 2.2rem; }
.hp2-problem-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}
.hp2-problem-card {
    padding: 40px 36px 28px;
    border-radius: var(--hp2-radius-lg);
    border: 1px solid var(--hp2-border);
    display: flex;
    flex-direction: column;
    transition: var(--hp2-transition);
}
.hp2-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp2-shadow-lg);
}
.hp2-problem-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.hp2-problem-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp2-problem-icon-wrap i { font-size: 1.4rem; }
.hp2-problem-icon-old { background: #fef2f2; color: #dc2626; }
.hp2-problem-icon-old i { color: #dc2626; }
.hp2-problem-icon-new { background: #f0fdf4; color: var(--hp2-success); }
.hp2-problem-icon-new i { color: var(--hp2-success); }
.hp2-problem-card-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 2px 10px;
    border-radius: var(--hp2-radius-full);
    margin-bottom: 4px;
}
.hp2-tag-old { background: #fecaca; color: #991b1b; }
.hp2-tag-new { background: #bbf7d0; color: #166534; }
.hp2-problem-card-header h3 { font-size: 1.15rem; font-weight: 800; margin: 0; }
.hp2-problem-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.hp2-problem-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; line-height: 1.5; }
.hp2-problem-card li i { margin-top: 3px; flex-shrink: 0; font-size: 1rem; }
.hp2-problem-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}
.hp2-problem-card-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,.06);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hp2-problem-card-bottom i { font-size: 16px; }

/* VS badge */
.hp2-problem-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp2-problem-vs span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hp2-white);
    border: 2px solid var(--hp2-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--hp2-text-muted);
    letter-spacing: 1px;
    box-shadow: var(--hp2-shadow-sm);
}

/* Old card */
.hp2-problem-old { background: var(--hp2-white); border-color: #fecaca; border-left: 4px solid #dc2626; }
.hp2-problem-old h3 { color: #991b1b; }
.hp2-problem-old li i { color: #dc2626; }
.hp2-problem-old li span { color: #7f1d1d; }
.hp2-problem-old .hp2-problem-num { background: #fef2f2; color: #dc2626; }
.hp2-problem-old .hp2-problem-card-bottom { color: #991b1b; }
.hp2-problem-old .hp2-problem-card-bottom i { color: #dc2626; }

/* New card */
.hp2-problem-new { background: var(--hp2-white); border-color: #bbf7d0; border-left: 4px solid var(--hp2-success); }
.hp2-problem-new h3 { color: #166534; }
.hp2-problem-new li i { color: var(--hp2-success); }
.hp2-problem-new li span { color: #14532d; }
.hp2-problem-new .hp2-problem-num { background: #f0fdf4; color: var(--hp2-success); }
.hp2-problem-bottom-new { color: #166534; }
.hp2-problem-bottom-new i { color: var(--hp2-success); }

@media (max-width: 767px) {
    .hp2-problem-grid { grid-template-columns: 1fr; max-width: 500px; }
    .hp2-problem-vs { padding: 4px 0; }
    .hp2-problem-vs span { width: 40px; height: 40px; font-size: 0.7rem; }
    .hp2-problem-card { padding: 28px 24px 20px; }
}

/* ============================================================
   CORE FEATURES — Alternating rows with CSS mockups
   ============================================================ */
.hp2-features {
    background: var(--hp2-white);
}
.hp2-feature-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.hp2-feature-row:last-child { margin-bottom: 0; }
.hp2-feature-row-reverse { direction: rtl; }
.hp2-feature-row-reverse > * { direction: ltr; }
.hp2-feature-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--hp2-lavender);
    line-height: 1;
    margin-bottom: 12px;
    font-feature-settings: 'tnum';
}
.hp2-feature-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--hp2-text);
    margin-bottom: 16px;
    line-height: 1.2;
}
.hp2-feature-text p {
    font-size: 1.08rem;
    color: var(--hp2-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.hp2-feature-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hp2-feature-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hp2-text-secondary);
}
.hp2-feature-checks i {
    color: var(--hp2-success);
    font-size: 1rem;
    flex-shrink: 0;
}
.hp2-feature-visual { position: relative; }
.hp2-feature-visual img {
    width: 100%;
    border-radius: var(--hp2-radius-lg);
    box-shadow: var(--hp2-shadow-xl);
}

/* --- Feature Mockup Shared --- */
.hp2-feature-mockup {
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-lg);
    overflow: hidden;
    box-shadow: var(--hp2-shadow-xl);
}
.hp2-mockup-bar {
    background: #f8fafc;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--hp2-border);
}
.hp2-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}
.hp2-mockup-bar .hp2-mockup-dot:nth-child(1) { background: #ff5f57; }
.hp2-mockup-bar .hp2-mockup-dot:nth-child(2) { background: #febc2e; }
.hp2-mockup-bar .hp2-mockup-dot:nth-child(3) { background: #28c840; }
.hp2-mockup-title {
    margin-left: 10px;
    font-size: 0.78rem;
    color: var(--hp2-text-muted);
    font-weight: 600;
}
.hp2-mockup-body {
    padding: 20px;
    min-height: 240px;
}

/* Mockup: Calendar */
.hp2-mockup-calendar .hp2-mockup-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
}
.hp2-mockup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp2-mockup-slot {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
}
.hp2-slot-booked {
    background: var(--hp2-lavender-light);
    color: var(--hp2-primary);
    border-left: 3px solid var(--hp2-primary);
}
.hp2-slot-open {
    background: var(--hp2-green-muted);
    color: var(--hp2-success);
    border-left: 3px solid var(--hp2-success);
}
.hp2-mockup-main {
    display: flex;
    align-items: flex-end;
}
.hp2-mockup-card-notif {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--hp2-white);
    border: 1px solid var(--hp2-lavender);
    border-radius: var(--hp2-radius);
    padding: 14px 18px;
    box-shadow: var(--hp2-shadow-md);
    animation: hp2-notif-pulse 2s ease-in-out infinite;
}
.hp2-mockup-card-notif i {
    font-size: 1.4rem;
    color: var(--hp2-primary);
}
.hp2-mockup-card-notif strong {
    display: block;
    font-size: 0.82rem;
    color: var(--hp2-text);
}
.hp2-mockup-card-notif span {
    font-size: 0.75rem;
    color: var(--hp2-text-muted);
}
@keyframes hp2-notif-pulse {
    0%, 100% { box-shadow: var(--hp2-shadow-md); }
    50% { box-shadow: 0 4px 20px var(--hp2-primary-glow); }
}

/* Mockup: Staff */
.hp2-mockup-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px;
}
.hp2-staff-card {
    background: #f8fafc;
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hp2-staff-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hp2-lavender);
    color: var(--hp2-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.hp2-staff-card strong {
    font-size: 0.82rem;
    color: var(--hp2-text);
}
.hp2-staff-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--hp2-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp2-status-active { background: var(--hp2-green-muted); color: var(--hp2-success); }
.hp2-status-break { background: #fef3c7; color: #d97706; }
.hp2-staff-bookings {
    font-size: 0.72rem;
    color: var(--hp2-text-muted);
}

/* Mockup: Payments */
.hp2-mockup-payments-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hp2-payment-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hp2-border);
}
.hp2-payment-stat-label {
    font-size: 0.85rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}
.hp2-payment-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hp2-text);
}
.hp2-payment-row {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hp2-text-secondary);
}
.hp2-payment-bar {
    height: 8px;
    background: var(--hp2-lavender-light);
    border-radius: 4px;
    overflow: hidden;
}
.hp2-payment-bar span {
    display: block;
    height: 100%;
    background: var(--hp2-primary);
    border-radius: 4px;
}

/* Mockup: Analytics */
.hp2-mockup-analytics-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hp2-analytics-row {
    display: flex;
    gap: 32px;
}
.hp2-analytics-stat {
    display: flex;
    flex-direction: column;
}
.hp2-analytics-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hp2-text);
}
.hp2-analytics-up { color: var(--hp2-success); }
.hp2-analytics-label {
    font-size: 0.75rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}
.hp2-analytics-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}
.hp2-chart-bar {
    flex: 1;
    background: var(--hp2-lavender);
    border-radius: 6px 6px 0 0;
    min-height: 10%;
    transition: var(--hp2-transition);
}
.hp2-chart-bar-active { background: var(--hp2-primary); }
.hp2-chart-bar:hover { background: var(--hp2-primary-light); }
.hp2-analytics-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--hp2-text-muted);
    font-weight: 600;
}

/* ============================================================
   PRODUCT SHOWCASE — Browser chrome
   ============================================================ */
.hp2-showcase {
    background: var(--hp2-bg-tinted);
}
.hp2-showcase-tab-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hp2-showcase-tab {
    font-family: var(--hp2-font);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-full);
    background: var(--hp2-white);
    color: var(--hp2-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hp2-transition);
}
.hp2-showcase-tab:hover {
    border-color: var(--hp2-primary-light);
    color: var(--hp2-primary);
}
.hp2-showcase-tab.active {
    background: var(--hp2-primary);
    color: var(--hp2-white);
    border-color: var(--hp2-primary);
}
.hp2-showcase-tab.active i { color: var(--hp2-white); }

.hp2-showcase-window {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--hp2-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(15,23,42,.15), 0 0 0 1px rgba(0,0,0,.06);
    background: var(--hp2-white);
}
.hp2-showcase-browser-bar {
    background: #f1f1f1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
}
.hp2-dot { width: 12px; height: 12px; border-radius: 50%; }
.hp2-dot-red { background: #ff5f57; }
.hp2-dot-yellow { background: #febc2e; }
.hp2-dot-green { background: #28c840; }
.hp2-browser-url {
    margin-left: 12px;
    font-size: 0.78rem;
    color: #999;
    font-family: 'SF Mono', Monaco, monospace;
    background: #fff;
    padding: 4px 14px;
    border-radius: var(--hp2-radius-full);
    border: 1px solid #e0e0e0;
}
.hp2-showcase-screen { position: relative; }
.hp2-showcase-panel { display: none; position: relative; }
.hp2-showcase-panel.active { display: block; }
.hp2-showcase-panel img { width: 100%; height: auto; display: block; }
.hp2-showcase-label {
    position: absolute;
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hp2-text);
    box-shadow: var(--hp2-shadow-md);
    z-index: 2;
    animation: hp2-label-float 3s ease-in-out infinite alternate;
}
.hp2-showcase-label-1 { top: 20%; right: 5%; }
.hp2-showcase-label-2 { bottom: 15%; left: 5%; }
@keyframes hp2-label-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* ============================================================
   LIVE DASHBOARD — WOW section, dark bg, glowing
   ============================================================ */
.hp2-live-dash {
    background: var(--hp2-dark-bg);
    position: relative;
    overflow: hidden;
}
.hp2-live-window {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}
.hp2-live-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--hp2-primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.hp2-live-browser {
    position: relative;
    z-index: 1;
    border-radius: var(--hp2-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(86,18,105,.3), 0 0 0 1px rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}
.hp2-live-browser-bar {
    background: var(--hp2-dark-surface);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hp2-live-browser-bar .hp2-browser-url {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.1);
    color: rgba(255,255,255,.4);
}
.hp2-live-screen {
    background: #1a0a20;
    padding: 24px;
}
.hp2-live-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.hp2-live-stat {
    background: var(--hp2-dark-surface);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--hp2-radius);
    padding: 20px 16px;
    text-align: center;
}
.hp2-live-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hp2-white);
    margin-bottom: 4px;
}
.hp2-live-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp2-live-stat-accent {
    border-color: var(--hp2-primary);
    box-shadow: 0 0 20px var(--hp2-primary-glow);
}
.hp2-live-stat-accent .hp2-live-stat-num {
    color: var(--hp2-primary-light);
}
.hp2-live-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.hp2-live-chart-area,
.hp2-live-upcoming {
    background: var(--hp2-dark-surface);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--hp2-radius);
    padding: 20px;
}
.hp2-live-chart-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.hp2-live-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}
.hp2-live-bar {
    flex: 1;
    background: rgba(86,18,105,.3);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: var(--hp2-transition);
}
.hp2-live-bar span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: rgba(255,255,255,.35);
    font-weight: 600;
}
.hp2-live-bar-glow {
    background: var(--hp2-primary);
    box-shadow: 0 0 20px var(--hp2-primary-glow);
}
.hp2-live-appointment {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hp2-live-appointment:last-child { border-bottom: none; }
.hp2-live-time {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    min-width: 56px;
}
.hp2-live-appointment strong {
    display: block;
    font-size: 0.82rem;
    color: var(--hp2-white);
}
.hp2-live-appointment span {
    font-size: 0.72rem;
    color: rgba(255,255,255,.4);
}
.hp2-live-badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--hp2-radius-full);
    background: rgba(5,150,105,.15);
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.hp2-live-badge-new {
    background: rgba(86,18,105,.2);
    color: var(--hp2-primary-light);
    animation: hp2-badge-pulse 2s ease-in-out infinite;
}
@keyframes hp2-badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .6; }
}
.hp2-live-pulse-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
}
.hp2-live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: hp2-pulse 1.5s ease-in-out infinite;
}
@keyframes hp2-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,.4); }
    50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

/* ============================================================
   ROI — DARK split layout, massive stat cards
   ============================================================ */
.hp2-roi-dark {
    background: linear-gradient(135deg, #1a0a20 0%, #2d1040 100%);
}
.hp2-roi-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}
.hp2-roi-left {
    position: sticky;
    top: 120px;
}
.hp2-roi-left h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--hp2-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hp2-roi-left p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    max-width: 400px;
}
.hp2-roi-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.hp2-roi-stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--hp2-radius-lg);
    padding: 36px 28px;
    transition: var(--hp2-transition);
}
.hp2-roi-stat-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(86,18,105,.2);
}
.hp2-roi-stat-number {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--hp2-primary-light);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 40px var(--hp2-primary-glow);
    letter-spacing: -1px;
}
.hp2-roi-stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp2-white);
    margin-bottom: 8px;
}
.hp2-roi-stat-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
    margin: 0;
}
/* keep old rule references for backward compat */
.hp2-roi-dark .hp2-roi-outcomes {
    border-color: rgba(255,255,255,.08);
}
.hp2-roi-dark .hp2-roi-outcome {
    border-bottom-color: rgba(255,255,255,.08);
}
.hp2-roi-dark .hp2-roi-number {
    font-size: 4rem;
    color: var(--hp2-primary-light);
    text-shadow: 0 0 30px var(--hp2-primary-glow);
}
.hp2-roi-dark .hp2-roi-detail h3 {
    color: var(--hp2-white);
    font-size: 1.25rem;
}
.hp2-roi-dark .hp2-roi-detail p {
    color: rgba(255,255,255,.55);
}
.hp2-roi {
    background: var(--hp2-white);
}
.hp2-section.hp2-roi.hp2-roi-dark {
    background: linear-gradient(135deg, #1a0a20 0%, #2d1040 100%);
}
.hp2-roi-outcomes {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.hp2-roi-outcome {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--hp2-border);
}
.hp2-roi-outcome:last-child { border-bottom: none; }
.hp2-roi-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--hp2-primary);
    line-height: 1;
    min-width: 140px;
    flex-shrink: 0;
    text-align: center;
}
.hp2-roi-detail h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hp2-text);
    margin-bottom: 6px;
    line-height: 1.3;
}
.hp2-roi-detail p {
    font-size: 0.95rem;
    color: var(--hp2-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   PRICING V2
   ============================================================ */
.hp2-pricing {
    background: var(--hp2-bg-warm);
}
.hp2-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.hp2-toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hp2-text-muted);
    cursor: pointer;
    transition: var(--hp2-transition);
}
.hp2-toggle-label.active { color: var(--hp2-text); }
.hp2-toggle-label em {
    font-style: normal;
    font-size: 0.75rem;
    background: var(--hp2-success);
    color: var(--hp2-white);
    padding: 2px 8px;
    border-radius: var(--hp2-radius-full);
    margin-left: 4px;
}
.hp2-toggle-switch { position: relative; width: 48px; height: 26px; cursor: pointer; }
.hp2-toggle-switch input { opacity: 0; width: 0; height: 0; }
.hp2-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--hp2-border);
    border-radius: 26px;
    transition: var(--hp2-transition);
}
.hp2-toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--hp2-white);
    left: 3px;
    top: 3px;
    transition: var(--hp2-transition);
    box-shadow: var(--hp2-shadow-sm);
}
.hp2-toggle-switch input:checked + .hp2-toggle-slider { background: var(--hp2-primary); }
.hp2-toggle-switch input:checked + .hp2-toggle-slider::before { transform: translateX(22px); }
.hp2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: center;
}
.hp2-pricing-card {
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--hp2-transition);
}
.hp2-pricing-card:hover { box-shadow: var(--hp2-shadow-md); }
.hp2-pricing-featured {
    border-color: var(--hp2-primary);
    box-shadow: 0 20px 60px var(--hp2-primary-glow);
    transform: scale(1.06);
    z-index: 1;
    padding: 52px 36px;
}
.hp2-pricing-featured:hover {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 25px 70px rgba(86,18,105,.25);
}
.hp2-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hp2-primary);
    color: var(--hp2-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--hp2-radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.hp2-pricing-header { margin-bottom: 28px; }
.hp2-pricing-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hp2-text);
    margin-bottom: 4px;
}
.hp2-pricing-subtitle {
    font-size: 0.85rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
    margin-bottom: 14px;
}
.hp2-pricing-price { display: flex; align-items: baseline; gap: 4px; }
.hp2-price-amount { font-size: 2.4rem; font-weight: 800; color: var(--hp2-text); }
.hp2-price-period { font-size: 0.9rem; color: var(--hp2-text-muted); font-weight: 500; }
.hp2-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hp2-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--hp2-text-secondary);
}
.hp2-pricing-features i { color: var(--hp2-success); font-size: 1rem; flex-shrink: 0; }
.hp2-pricing-persuasion {
    text-align: center;
    font-size: 0.8rem;
    color: var(--hp2-primary);
    font-weight: 600;
    margin-top: 12px;
}
.hp2-pricing-roi-line {
    font-size: 1rem;
    color: var(--hp2-text-muted);
    margin-top: 4px;
}

/* ============================================================
   TESTIMONIALS V2 — Bigger cards, results
   ============================================================ */
.hp2-testimonials {
    background: var(--hp2-white);
}
.hp2-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
}
.hp2-testimonial-card {
    background: #f8fafc;
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-lg);
    padding: 48px 36px;
    transition: var(--hp2-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.hp2-testimonial-card:hover {
    box-shadow: var(--hp2-shadow-lg);
    transform: translateY(-5px);
}
.hp2-testimonial-featured {
    border-color: var(--hp2-primary-light);
    box-shadow: 0 0 0 1px var(--hp2-primary-light), var(--hp2-shadow-md);
    background: var(--hp2-white);
    transform: scale(1.03);
}
.hp2-testimonial-featured:hover {
    transform: scale(1.03) translateY(-5px);
}
.hp2-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
.hp2-testimonial-stars i {
    color: #f59e0b;
    font-size: 1.1rem;
}
.hp2-testimonial-quote-mark {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--hp2-lavender);
    line-height: 1;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}
.hp2-testimonial-quote {
    font-size: 1.1rem;
    color: var(--hp2-text);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
    font-weight: 500;
}
.hp2-testimonial-result {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--hp2-green-muted);
    border: 1px solid #bbf7d0;
    border-radius: var(--hp2-radius);
    padding: 12px 18px;
    margin-bottom: 28px;
}
.hp2-testimonial-result i { color: var(--hp2-success); font-size: 1.1rem; }
.hp2-testimonial-result span { font-size: 0.88rem; font-weight: 700; color: #166534; }
.hp2-testimonial-author { display: flex; align-items: center; gap: 14px; }
.hp2-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp2-primary), var(--hp2-primary-light));
    color: var(--hp2-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--hp2-primary-glow);
}
.hp2-testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--hp2-text);
    font-weight: 700;
}
.hp2-testimonial-role {
    display: block;
    font-size: 0.82rem;
    color: var(--hp2-text-muted);
}
.hp2-testimonial-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}
.hp2-testimonial-location i { font-size: 0.85rem; }

/* ============================================================
   FAQ V2
   ============================================================ */
.hp2-faq {
    background: var(--hp2-bg-warm);
}
.hp2-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hp2-faq-item {
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    overflow: hidden;
    transition: var(--hp2-transition);
    background: var(--hp2-white);
}
.hp2-faq-item.active {
    border-color: var(--hp2-lavender);
    box-shadow: var(--hp2-shadow-sm);
}
.hp2-faq-question {
    width: 100%;
    background: var(--hp2-white);
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--hp2-font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hp2-text);
    text-align: left;
    transition: var(--hp2-transition);
}
.hp2-faq-question:hover { background: var(--hp2-lavender-light); }
.hp2-faq-question i { font-size: 1.2rem; transition: transform .3s; color: var(--hp2-text-muted); }
.hp2-faq-item.active .hp2-faq-question i { transform: rotate(180deg); color: var(--hp2-primary); }
.hp2-faq-answer { display: none; padding: 0 24px 20px; }
.hp2-faq-item.active .hp2-faq-answer { display: block; }
.hp2-faq-answer p { font-size: 0.95rem; color: var(--hp2-text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   FINAL CTA V2
   ============================================================ */
.hp2-final-cta {
    background: linear-gradient(135deg, var(--hp2-primary-dark) 0%, var(--hp2-primary) 50%, #45105a 100%);
    padding: 110px 0;
    position: relative;
    z-index: 1;
}
.hp2-final-cta-inner { text-align: center; max-width: 660px; margin: 0 auto; }
.hp2-final-cta h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--hp2-white);
    margin-bottom: 16px;
    line-height: 1.12;
}
.hp2-final-cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hp2-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hp2-cta-note { font-size: 0.85rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ============================================================
   FOOTER V2
   ============================================================ */
.hp2-footer {
    background: #1a0a20;
    padding: 80px 0 40px;
    color: #d1d5db;
    border-top: 3px solid rgba(192, 132, 252, 0.3);
    position: relative;
    z-index: 1;
}
.hp2-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.hp2-footer-brand img { height: 30px; max-width: 160px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(10); }
.hp2-footer-brand p { font-size: 0.9rem; color: #9ca3af; line-height: 1.6; margin-bottom: 20px; }
.hp2-footer-social { display: flex; gap: 12px; }
.hp2-footer-social a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #374151;
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af; font-size: 1.1rem; transition: var(--hp2-transition); text-decoration: none;
}
.hp2-footer-social a:hover { background: var(--hp2-primary); border-color: var(--hp2-primary); color: var(--hp2-white); }
.hp2-footer-col h6 {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--hp2-white); margin-bottom: 20px;
}
.hp2-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hp2-footer-col a { font-size: 0.9rem; color: #9ca3af; text-decoration: none; transition: var(--hp2-transition); }
.hp2-footer-col a:hover { color: var(--hp2-white); }
.hp2-footer-payments {
    display: flex; align-items: center; gap: 12px; padding: 20px 0;
    border-top: 1px solid #301540; border-bottom: 1px solid #301540;
    font-size: 0.85rem; color: #6b7280; flex-wrap: wrap;
}
.hp2-payment-badge {
    background: #301540; padding: 4px 14px; border-radius: var(--hp2-radius-full);
    font-size: 0.8rem; font-weight: 600; color: #9ca3af;
}
.hp2-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.hp2-footer-bottom p { font-size: 0.85rem; color: #6b7280; margin: 0; }
.hp2-footer-bottom a { font-size: 0.85rem; color: #6b7280; text-decoration: none; transition: var(--hp2-transition); }
.hp2-footer-bottom a:hover { color: var(--hp2-white); }

/* ============================================================
   RESPONSIVE — HP2
   ============================================================ */
@media (max-width: 1199px) {
    .hp2-hero-content h1 { font-size: 3rem; }
    .hp2-feature-row { gap: 40px; }
    .hp2-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .hp2-live-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .hp2-hero { padding: 120px 0 60px; }
    .hp2-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hp2-hero-content h1 { font-size: 2.6rem; }
    .hp2-hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hp2-hero-ctas { justify-content: center; }
    .hp2-hero-proof { justify-content: center; }
    .hp2-hero-visual { max-width: 500px; margin: 0 auto; }

    .hp2-section { padding: 80px 0; }
    .hp2-section-header h2 { font-size: 2.1rem; }

    .hp2-problem-grid { grid-template-columns: 1fr; max-width: 500px; }

    .hp2-feature-row,
    .hp2-feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
    .hp2-feature-row { margin-bottom: 64px; }
    .hp2-feature-text { text-align: center; }
    .hp2-feature-checks { align-items: center; }
    .hp2-feature-visual { max-width: 500px; margin: 0 auto; }
    .hp2-mockup-calendar .hp2-mockup-body { grid-template-columns: 1fr; }
    .hp2-mockup-staff-grid { grid-template-columns: 1fr 1fr; }

    .hp2-showcase-window { max-width: 100%; }

    .hp2-live-grid { grid-template-columns: 1fr; }
    .hp2-live-stats { grid-template-columns: repeat(2, 1fr); }

    .hp2-roi-outcome { gap: 24px; }
    .hp2-roi-number { font-size: 2.6rem; min-width: 100px; }
    .hp2-roi-dark .hp2-roi-number { font-size: 3rem; }

    .hp2-roi-split { grid-template-columns: 1fr; gap: 48px; }
    .hp2-roi-left { position: static; text-align: center; }
    .hp2-roi-left p { max-width: 100%; margin: 0 auto; }
    .hp2-roi-left h2 { font-size: 2.2rem; }
    .hp2-testimonial-featured { transform: none; }
    .hp2-testimonial-featured:hover { transform: translateY(-5px); }

    .hp2-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hp2-pricing-featured { transform: none; padding: 40px 32px; }
    .hp2-pricing-featured:hover { transform: translateY(-3px); }

    .hp2-testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

    .hp2-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hp2-footer-brand { grid-column: 1 / -1; }

    .hp2-final-cta { padding: 80px 0; }
    .hp2-final-cta h2 { font-size: 2.1rem; }
}

@media (max-width: 767px) {
    .hp2-hero { padding: 100px 0 48px; }
    .hp2-hero-content h1 { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hp2-hero-sub { font-size: 1.05rem; }
    .hp2-hero-proof { flex-direction: column; gap: 8px; }

    .hp2-section { padding: 60px 0; }
    .hp2-section-header { margin-bottom: 40px; }
    .hp2-section-header h2 { font-size: 1.7rem; }

    .hp2-feature-num { font-size: 2.5rem; }
    .hp2-feature-text h3 { font-size: 1.35rem; }

    .hp2-showcase-tab-nav { gap: 6px; }
    .hp2-showcase-tab { padding: 8px 14px; font-size: 0.8rem; }
    .hp2-showcase-tab span { display: none; }
    .hp2-showcase-label { font-size: 0.75rem; padding: 8px 12px; }

    .hp2-live-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hp2-live-stat { padding: 14px 10px; }
    .hp2-live-stat-num { font-size: 1.2rem; }

    .hp2-roi-outcome { flex-direction: column; text-align: center; gap: 12px; }
    .hp2-roi-number { min-width: auto; font-size: 3rem; }
    .hp2-roi-dark .hp2-roi-number { font-size: 3.5rem; }
    .hp2-roi-right { grid-template-columns: 1fr 1fr; gap: 16px; }
    .hp2-roi-stat-number { font-size: 2.8rem; }
    .hp2-roi-left h2 { font-size: 1.8rem; }

    .hp2-footer-grid { grid-template-columns: 1fr; }
    .hp2-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hp2-hero-content h1 { font-size: 1.9rem; }
    .hp2-btn-lg { padding: 14px 28px; font-size: 0.95rem; }
    .hp2-hero-ctas { flex-direction: column; }
    .hp2-hero-ctas .hp2-btn { width: 100%; }
    .hp2-problem-card { padding: 28px 20px; }
    .hp2-roi-number { font-size: 2.4rem; }
    .hp2-roi-dark .hp2-roi-number { font-size: 2.8rem; }
    .hp2-roi-right { grid-template-columns: 1fr; }
    .hp2-roi-stat-number { font-size: 2.4rem; }
    .hp2-roi-stat-card { padding: 28px 20px; }
    .hp2-pricing-card { padding: 28px 20px; }
    .hp2-final-cta h2 { font-size: 1.6rem; }
    .hp2-cta-buttons { flex-direction: column; }
    .hp2-cta-buttons .hp2-btn { width: 100%; }
    .hp2-testimonial-card { padding: 28px 20px; }
    .hp2-mockup-staff-grid { grid-template-columns: 1fr; }
    .hp2-live-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   HP2 — INNER PAGES REDESIGN
   Matching homepage V3 design system
   ============================================================ */

/* ---------- Page Header ---------- */
.hp2-page-header {
    margin-top: 72px;
    padding: 48px 0 40px;
    background: linear-gradient(180deg, #f4f0f8 0%, #f9f7fc 100%);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(86,18,105,0.08);
}
.hp2-page-header::before {
    display: none;
}
.hp2-page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hp2-page-header h1 {
    font-family: var(--hp2-font);
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.hp2-page-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    max-width: 480px;
    line-height: 1.6;
}

/* ---------- Inner Section ---------- */
.hp2-inner-section {
    padding: 96px 0;
    font-family: var(--hp2-font);
}
.hp2-inner-section.hp2-bg-warm {
    background: var(--hp2-bg-warm);
}
.hp2-inner-section.hp2-bg-tinted {
    background: var(--hp2-bg-tinted);
}

/* ---------- Section Headers ---------- */
.hp2-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.hp2-section-overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hp2-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hp2-primary);
    background: var(--hp2-lavender-light);
    padding: 6px 16px;
    border-radius: var(--hp2-radius-full);
    margin-bottom: 16px;
}
.hp2-section-header h2 {
    font-family: var(--hp2-font);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--hp2-text);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 16px;
}
.hp2-section-header p {
    font-size: 1.05rem;
    color: var(--hp2-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ---------- Feature Cards (Inner Page) ---------- */
.hp2-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hp2-feature-card {
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--hp2-transition);
    position: relative;
    overflow: hidden;
}
.hp2-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hp2-primary), var(--hp2-primary-light));
    opacity: 0;
    transition: var(--hp2-transition);
}
.hp2-feature-card:hover {
    border-color: var(--hp2-primary);
    box-shadow: var(--hp2-shadow-md);
    transform: translateY(-6px);
}
.hp2-feature-card:hover::before {
    opacity: 1;
}
.hp2-feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hp2-lavender-light), rgba(86, 18, 105, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    transition: var(--hp2-transition);
}
.hp2-feature-card:hover .hp2-feature-card-icon {
    background: linear-gradient(135deg, rgba(86, 18, 105, 0.15), rgba(86, 18, 105, 0.25));
    transform: scale(1.08);
}
.hp2-feature-card-icon img {
    display: none;
}
.hp2-feature-card-icon i {
    font-size: 30px;
    color: var(--hp2-primary);
}
.hp2-feature-card h4 {
    font-family: var(--hp2-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp2-text);
    margin: 0 0 8px;
}
.hp2-feature-card p {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Contact Page ---------- */
.hp2-contact-section {
    padding: 80px 0 96px;
    font-family: var(--hp2-font);
}
.hp2-contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}

/* -- Form Wrapper -- */
.hp2-contact-form-wrap {
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-lg);
    padding: 40px 36px;
    box-shadow: var(--hp2-shadow-sm);
}

/* -- Alert Banners -- */
.hp2-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.hp2-alert i { font-size: 20px; flex-shrink: 0; }
.hp2-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.hp2-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* -- Form Fields -- */
.hp2-contact-form { display: flex; flex-direction: column; gap: 20px; }
.hp2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.hp2-form-group { display: flex; flex-direction: column; gap: 6px; }
.hp2-form-full { width: 100%; }
.hp2-form-group label {
    font-family: var(--hp2-font);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hp2-text);
    letter-spacing: 0.01em;
}
.hp2-form-group label .req { color: #ef4444; }
.hp2-form-group input,
.hp2-form-group select,
.hp2-form-group textarea {
    font-family: var(--hp2-font);
    font-size: 0.9rem;
    color: var(--hp2-text);
    padding: 11px 14px;
    border: 1px solid var(--hp2-border);
    border-radius: 10px;
    background: #fafafe;
    transition: var(--hp2-transition);
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.hp2-form-group input:focus,
.hp2-form-group select:focus,
.hp2-form-group textarea:focus {
    border-color: var(--hp2-primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.10);
    background: #fff;
}
.hp2-form-group input::placeholder,
.hp2-form-group textarea::placeholder {
    color: #b0adcf;
}
.hp2-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.hp2-form-group textarea { resize: vertical; min-height: 120px; }
.hp2-form-error {
    font-size: 0.78rem;
    color: #dc2626;
    font-weight: 500;
}

/* -- Submit Button -- */
.hp2-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--hp2-font);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--hp2-transition);
    background: var(--hp2-primary);
    color: #fff;
    align-self: flex-start;
}
.hp2-btn-submit:hover {
    background: var(--hp2-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.3);
}
.hp2-btn-submit i { font-size: 18px; }

/* -- Info Cards Column -- */
.hp2-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hp2-info-card {
    display: flex;
    gap: 16px;
    padding: 24px 22px;
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-lg);
    transition: var(--hp2-transition);
}
.hp2-info-card:hover {
    border-color: var(--hp2-primary);
    box-shadow: var(--hp2-shadow-md);
}
.hp2-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--hp2-lavender-light);
    color: var(--hp2-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.hp2-info-icon--wa {
    background: #dcfce7;
    color: #16a34a;
}
.hp2-info-card h4 {
    font-family: var(--hp2-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp2-text);
    margin: 0 0 4px;
}
.hp2-info-card p {
    font-size: 0.82rem;
    color: var(--hp2-text-muted);
    margin: 0 0 8px;
    line-height: 1.5;
}
.hp2-info-card a {
    font-family: var(--hp2-font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp2-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--hp2-transition);
}
.hp2-info-card a:hover {
    color: var(--hp2-primary-dark);
    gap: 7px;
}

/* ---------- Blog Cards ---------- */
.hp2-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hp2-blog-card {
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-lg);
    overflow: hidden;
    transition: var(--hp2-transition);
    display: flex;
    flex-direction: column;
}
.hp2-blog-card:hover {
    border-color: var(--hp2-primary);
    box-shadow: var(--hp2-shadow-md);
    transform: translateY(-4px);
}
.hp2-blog-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.hp2-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.hp2-blog-card:hover .hp2-blog-thumb img {
    transform: scale(1.05);
}
.hp2-blog-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--hp2-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--hp2-text-muted);
    opacity: .3;
}
.hp2-blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hp2-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--hp2-text-muted);
}
.hp2-blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.hp2-blog-title {
    font-family: var(--hp2-font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hp2-text);
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp2-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--hp2-transition);
}
.hp2-blog-title a:hover {
    color: var(--hp2-primary);
}
.hp2-blog-excerpt {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.hp2-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--hp2-font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp2-primary);
    text-decoration: none;
    transition: var(--hp2-transition);
    margin-top: auto;
}
.hp2-blog-link:hover {
    gap: 10px;
    color: var(--hp2-primary-dark);
}

/* ---------- FAQ Page ---------- */
.hp2-faq-page .hp2-faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.hp2-faq-page .hp2-faq-item {
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    margin-bottom: 12px;
    background: var(--hp2-white);
    overflow: hidden;
    transition: var(--hp2-transition);
}
.hp2-faq-page .hp2-faq-item:hover {
    border-color: rgba(86,18,105,.2);
}
.hp2-faq-page .hp2-faq-item.active {
    border-color: var(--hp2-primary);
    box-shadow: 0 2px 12px rgba(86,18,105,.08);
}
.hp2-faq-page .hp2-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--hp2-font);
    text-align: left;
}
.hp2-faq-page .hp2-faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp2-text);
    line-height: 1.5;
}
.hp2-faq-page .hp2-faq-question i {
    font-size: 18px;
    color: var(--hp2-text-muted);
    transition: var(--hp2-transition);
    flex-shrink: 0;
}
.hp2-faq-page .hp2-faq-item.active .hp2-faq-question i {
    color: var(--hp2-primary);
    transform: rotate(180deg);
}
.hp2-faq-page .hp2-faq-answer {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--hp2-text-muted);
    line-height: 1.7;
}
.hp2-faq-page .hp2-faq-answer p {
    margin: 0;
}

/* ---------- FAQ Language Toggle ---------- */
.faq-lang-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    background: var(--hp2-bg, #f7f5f9);
    border-radius: 999px;
    padding: 4px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}
.hp-faq-header .faq-lang-toggle {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.faq-lang-btn {
    border: none;
    background: transparent;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp2-text-muted, #6b7280);
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
    font-family: var(--hp2-font, inherit);
    line-height: 1.4;
}
.faq-lang-btn:hover {
    color: var(--hp2-text, #1a1a2e);
}
.faq-lang-btn.active {
    background: var(--hp2-white, #fff);
    color: var(--hp2-primary, #561269);
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: var(--hp2-bg, #f7f5f9);
    border-radius: 16px;
}
.faq-cta p {
    margin: 0;
    font-size: 1rem;
    color: var(--hp2-text-muted, #6b7280);
}
.faq-cta a {
    color: var(--hp2-primary, #561269);
    font-weight: 600;
    text-decoration: none;
}
.faq-cta a:hover {
    text-decoration: underline;
}

/* Updated FAQ cards: soft shadow, more padding, rounded-xl */
.hp2-faq-page .hp2-faq-item {
    border: none;
    border-radius: 16px;
    margin-bottom: 12px;
    background: var(--hp2-white, #fff);
    overflow: hidden;
    transition: all .25s ease;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.hp2-faq-page .hp2-faq-item:hover {
    box-shadow: 0 4px 16px rgba(86,18,105,.1);
}
.hp2-faq-page .hp2-faq-item.active {
    border: none;
    box-shadow: 0 4px 20px rgba(86,18,105,.12);
}
.hp2-faq-page .hp2-faq-question {
    padding: 16px 20px;
}
.hp2-faq-page .hp2-faq-answer {
    padding: 0 20px 16px;
}

/* ---------- About Page ---------- */
.hp2-about-content {
    max-width: 780px;
    margin: 0 auto;
}
.hp2-about-content h2,
.hp2-about-content h3,
.hp2-about-content h4 {
    font-family: var(--hp2-font);
    color: var(--hp2-text);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.hp2-about-content h2 { font-size: 1.75rem; }
.hp2-about-content h3 { font-size: 1.4rem; }
.hp2-about-content h4 { font-size: 1.15rem; }
.hp2-about-content p {
    font-size: 1.05rem;
    color: var(--hp2-text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}
.hp2-about-content ul,
.hp2-about-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.hp2-about-content li {
    font-size: 1rem;
    color: var(--hp2-text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}
.hp2-about-content img {
    max-width: 100%;
    border-radius: var(--hp2-radius-lg);
    margin: 24px 0;
}

/* ---------- Generic Page (Privacy, Terms etc) ---------- */
.hp2-page-content {
    max-width: 780px;
    margin: 0 auto;
    font-family: var(--hp2-font);
}
.hp2-page-content h1,
.hp2-page-content h2,
.hp2-page-content h3 {
    color: var(--hp2-text);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 32px;
    margin-bottom: 12px;
}
.hp2-page-content h1 { font-size: 1.75rem; }
.hp2-page-content h2 { font-size: 1.5rem; }
.hp2-page-content h3 { font-size: 1.25rem; }
.hp2-page-content p {
    font-size: 1rem;
    color: var(--hp2-text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
}
.hp2-page-content strong {
    color: var(--hp2-text-secondary);
}
.hp2-page-content ul,
.hp2-page-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.hp2-page-content li {
    font-size: 0.95rem;
    color: var(--hp2-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}
.hp2-page-content a {
    color: var(--hp2-primary);
    text-decoration: none;
}
.hp2-page-content a:hover {
    text-decoration: underline;
}

/* ---------- Get Started / CTA Section (Inner Pages) ---------- */
.hp2-get-started {
    background: var(--hp2-dark-bg);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hp2-get-started::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 30% 50%, rgba(86,18,105,.2), transparent),
        radial-gradient(ellipse 400px 250px at 70% 50%, rgba(86,18,105,.12), transparent);
    pointer-events: none;
}
.hp2-get-started-inner {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}
.hp2-get-started-inner h2 {
    font-family: var(--hp2-font);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--hp2-white);
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}
.hp2-get-started-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin: 0 0 32px;
}
.hp2-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Pricing Page (Inner) ---------- */
.hp2-pricing-page {
    background: linear-gradient(180deg, #faf8fd 0%, #fff 40%);
}
.hp2-pricing-page .hp2-pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}
.hp2-pricing-page .hp2-pricing-tabs {
    display: inline-flex;
    background: var(--hp2-bg-warm);
    border-radius: var(--hp2-radius-full);
    padding: 5px;
    gap: 4px;
    border: 1px solid rgba(86,18,105,0.06);
}
.hp2-pricing-page .hp2-pricing-tab {
    font-family: var(--hp2-font);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--hp2-radius-full);
    border: none;
    background: transparent;
    color: var(--hp2-text-muted);
    cursor: pointer;
    transition: var(--hp2-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hp2-pricing-page .hp2-pricing-tab.active {
    background: var(--hp2-white);
    color: var(--hp2-primary);
    box-shadow: 0 2px 8px rgba(86,18,105,0.1);
}
.hp2-save-badge {
    font-size: 0.68rem;
    font-weight: 700;
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* Pricing Grid */
.hp2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}

/* Pricing Card */
.hp2-pricing-page .hp2-price-card {
    background: var(--hp2-white);
    border: 1.5px solid var(--hp2-border);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hp2-pricing-page .hp2-price-card:hover {
    border-color: rgba(86,18,105,0.2);
    box-shadow: 0 12px 40px rgba(86,18,105,0.08);
    transform: translateY(-4px);
}

/* Popular Plan */
.hp2-pricing-page .hp2-price-card.hp2-price-popular {
    border-color: var(--hp2-primary);
    box-shadow: 0 8px 32px rgba(86,18,105,0.12);
    position: relative;
}
.hp2-pricing-page .hp2-price-card.hp2-price-popular:hover {
    box-shadow: 0 16px 48px rgba(86,18,105,0.18);
    transform: translateY(-6px);
}
.hp2-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hp2-primary);
    color: #fff;
    font-family: var(--hp2-font);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(86,18,105,0.3);
}
.hp2-popular-badge i {
    font-size: 12px;
}

/* Discount Badge */
.hp2-pricing-page .hp2-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dcfce7;
    color: #16a34a;
    font-family: var(--hp2-font);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--hp2-radius-full);
    letter-spacing: 0.02em;
}

/* Card Header */
.hp2-pricing-page .hp2-price-header-block {
    margin-bottom: 20px;
}
.hp2-pricing-page .hp2-price-name {
    font-family: var(--hp2-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hp2-text);
    margin: 0 0 4px;
}
.hp2-pricing-page .hp2-price-desc {
    font-size: 0.82rem;
    color: var(--hp2-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Price Amount */
.hp2-pricing-page .hp2-price-amount {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.hp2-pricing-page .hp2-price-original {
    font-size: 1rem;
    color: var(--hp2-text-muted);
    text-decoration: line-through;
}
.hp2-pricing-page .hp2-price-current {
    font-family: var(--hp2-font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hp2-text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.hp2-pricing-page .hp2-price-period {
    font-size: 0.88rem;
    color: var(--hp2-text-muted);
}

/* Divider */
.hp2-price-divider {
    height: 1px;
    background: rgba(86,18,105,0.08);
    margin-bottom: 20px;
}

/* Features List */
.hp2-pricing-page .hp2-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.hp2-pricing-page .hp2-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--hp2-text-secondary);
    padding: 7px 0;
}
.hp2-pricing-page .hp2-price-features li strong {
    color: var(--hp2-text);
}
.hp2-pricing-page .hp2-price-features li i {
    color: var(--hp2-success);
    font-size: 16px;
    flex-shrink: 0;
}

/* Action Button */
.hp2-pricing-page .hp2-price-action {
    margin-top: auto;
}
.hp2-pricing-page .hp2-price-action .hp2-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
}

/* Free Plan */
.hp2-pricing-page .hp2-price-card.hp2-price-free {
    border-color: var(--hp2-border);
    background: #fafafa;
}
.hp2-pricing-page .hp2-price-card.hp2-price-free .hp2-price-current {
    color: var(--hp2-primary);
}

/* Current Plan */
.hp2-pricing-page .hp2-price-card.hp2-price-current {
    border-color: var(--hp2-success);
    box-shadow: 0 0 0 1px var(--hp2-success);
}

/* Trust Signals */
.hp2-pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(86,18,105,0.06);
}
.hp2-pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}
.hp2-pricing-trust-item i {
    font-size: 20px;
    color: var(--hp2-primary);
    opacity: 0.7;
}

/* Pricing Grid Responsive */
@media (max-width: 768px) {
    .hp2-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .hp2-pricing-trust {
        flex-direction: column;
        gap: 16px;
    }
}

/* ---------- Compare Plan Table ---------- */
.hp2-compare-wrap {
    overflow-x: auto;
    border-radius: 16px;
    background: var(--hp2-white);
}
.hp2-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.hp2-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--hp2-font);
    min-width: 600px;
}
/* Header cells */
.hp2-compare-table thead th {
    padding: 28px 20px;
    text-align: center;
    background: #faf8fd;
    border-bottom: 2px solid rgba(86,18,105,0.08);
    vertical-align: top;
}
.hp2-compare-table thead th:first-child {
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hp2-text);
    min-width: 180px;
    background: #faf8fd;
    padding-top: 36px;
}
/* Plan header card in thead */
.hp2-compare-plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.hp2-compare-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hp2-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.hp2-compare-period {
    font-size: 0.78rem;
    color: var(--hp2-text-muted);
    margin-bottom: 6px;
}
.hp2-compare-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp2-text);
    display: block;
}
.hp2-compare-desc {
    font-size: 0.78rem;
    color: var(--hp2-text-muted);
    margin: 4px 0 14px;
    line-height: 1.5;
    max-width: 200px;
}
.hp2-compare-plan-header .hp2-btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
    border-radius: 8px;
}
/* Body cells */
.hp2-compare-table tbody td {
    padding: 14px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(86,18,105,0.05);
}
.hp2-compare-feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--hp2-text-secondary);
}
.hp2-compare-check-cell {
    text-align: center;
}
.hp2-compare-table tbody tr:hover {
    background: rgba(86,18,105,0.02);
}
/* Icons */
.hp2-compare-yes {
    color: #16a34a;
    font-size: 20px;
}
.hp2-compare-no {
    color: #d4d4d8;
    font-size: 18px;
}
/* Limit values */
.hp2-compare-limit-val {
    font-weight: 700;
    color: var(--hp2-primary);
    font-size: 0.9rem;
}
/* Limits header row */
.hp2-compare-limits-header td {
    padding-top: 24px;
    border-bottom: 2px solid rgba(86,18,105,0.08);
    font-size: 0.85rem;
    color: var(--hp2-text);
}
/* Responsive */
@media (max-width: 768px) {
    .hp2-compare-table thead th { padding: 20px 12px; }
    .hp2-compare-price { font-size: 1.2rem; }
    .hp2-compare-desc { display: none; }
}
}
/* (compare table styles consolidated above) */

/* ---------- No Content State ---------- */
.hp2-empty-state {
    text-align: center;
    padding: 80px 0;
}
.hp2-empty-state p {
    color: var(--hp2-text-muted);
    font-size: 1rem;
}

/* ---------- Inner Pages Responsive ---------- */
@media (max-width: 1024px) {
    .hp2-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .hp2-page-header {
        padding: 80px 0 48px;
    }
    .hp2-page-header h1 {
        font-size: 2rem;
    }
    .hp2-inner-section {
        padding: 64px 0;
    }
    .hp2-section-header {
        margin-bottom: 40px;
    }
    .hp2-section-header h2 {
        font-size: 1.75rem;
    }
    .hp2-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hp2-contact-grid,
    .hp2-contact-layout {
        grid-template-columns: 1fr;
    }
    .hp2-form-row {
        grid-template-columns: 1fr;
    }
    .hp2-blog-grid {
        grid-template-columns: 1fr;
    }
    .hp2-get-started-inner h2 {
        font-size: 1.75rem;
    }
    .hp2-cta-actions {
        flex-direction: column;
    }
    .hp2-cta-actions .hp2-btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .hp2-feature-grid {
        grid-template-columns: 1fr;
    }
    .hp2-feature-card {
        padding: 24px 20px;
    }
    .hp2-contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .hp2-page-header h1 {
        font-size: 1.75rem;
    }
}

/* ============================================================
   FLOATING BUTTONS — Go-to-top + WhatsApp
   ============================================================ */

/* Go-to-top */
.hp2-go-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hp2-primary, #561269);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(86,18,105,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 9999;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.15);
}
.hp2-go-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.hp2-go-top:hover {
    background: #3d0d4b;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(86,18,105,.45);
    color: #fff;
}

/* WhatsApp */
.hp2-whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,.2);
}
.hp2-whatsapp-btn:hover {
    background: #1fb855;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.hp2-wa-pulse {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff3b30;
    border: 2px solid #fff;
    animation: hp2-wa-ping 2s ease-in-out infinite;
}
@keyframes hp2-wa-ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@media (max-width: 767px) {
    .hp2-go-top { bottom: 88px; right: 16px; width: 40px; height: 40px; font-size: 16px; }
    .hp2-whatsapp-btn { bottom: 24px; right: 16px; width: 48px; height: 48px; }
}

/* ============================================================
   RESPONSIVE OVERHAUL — Fluid Sizing + Missing Breakpoints
   Full coverage: 320px → 4K, no hardcoded sizes
   ============================================================ */

/* ===== FLUID TYPOGRAPHY — replace hardcoded font-sizes ===== */
.hp-section-header h2 { font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2.25rem); }
.hp-section-header p  { font-size: clamp(0.88rem, 1vw + 0.5rem, 1.05rem); }
.hp-hero h1           { font-size: clamp(1.35rem, 3.5vw + 0.5rem, 3rem); }
.hp-hero-subtitle     { font-size: clamp(0.88rem, 1vw + 0.5rem, 1.05rem); }
.hp-feature-text h3   { font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.75rem); }
.hp-feature-text p    { font-size: clamp(0.88rem, 0.8vw + 0.5rem, 1rem); }
.hp-final-cta h2      { font-size: clamp(1.15rem, 2vw + 0.5rem, 1.75rem); }
.hp-stat-number       { font-size: clamp(1.2rem, 1.5vw + 0.5rem, 2.2rem); }
.hp-support-card h3   { font-size: clamp(1rem, 0.5vw + 0.8rem, 1.15rem); }

/* HP2 fluid typography */
.hp2-section-header h2 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.9rem); }
.hp2-hero-content h1   { font-size: clamp(1.75rem, 4vw + 0.5rem, 3.75rem); }
.hp2-feature-text h3   { font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.65rem); }
.hp2-final-cta h2      { font-size: clamp(1.4rem, 2.5vw + 0.5rem, 2.6rem); }
.hp2-roi-left h2       { font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.6rem); }

/* ===== FLUID SECTION PADDING ===== */
.hp-section,
.hp2-section  { padding-top: clamp(2.5rem, 6vw, 6rem); padding-bottom: clamp(2.5rem, 6vw, 6rem); }
.hp-hero      { padding-top: clamp(5rem, 10vw, 10rem); }
.hp2-hero     { padding-top: clamp(5rem, 10vw, 10rem); padding-bottom: clamp(2.5rem, 5vw, 5rem); }

/* ===== AUTO-FIT GRIDS — fluid column counts ===== */
.hp-categories-grid    { grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr)); }
.hp-reviews-grid       { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.hp-support-grid       { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.hp-contact-grid       { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.hp-contact-cards      { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.hp-results-grid       { grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr)); }
.hp-blog-grid          { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.hp2-testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.hp2-live-stats        { grid-template-columns: repeat(auto-fit, minmax(min(100%, 120px), 1fr)); }
.hp2-roi-right         { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

/* ===== TOUCH TARGETS — minimum 44px for all interactive elements ===== */
.hp-mobile-menu ul li a       { min-height: 44px; display: flex; align-items: center; }
.hp-faq-question              { min-height: 44px; }
.hp-auth-form .hp-input       { min-height: 44px; }
.hp-auth-submit               { min-height: 44px; }
.hp-otp-input                 { min-height: 44px; }
.ob-btn                       { min-height: 44px; }
.hp-custom-select-trigger     { min-height: 44px; }
.hp-custom-select-option      { min-height: 44px; }
.hp2-btn, .hp2-btn-lg         { min-height: 44px; }
.hp2-showcase-tab             { min-height: 44px; }
.hp-btn, .hp-btn-lg           { min-height: 44px; }

/* ===== 375px — Small phones (iPhone SE, etc.) ===== */
@media (max-width: 375px) {
    .container { padding-left: 12px !important; padding-right: 12px !important; }

    /* Hero */
    .hp-hero { padding: 72px 0 0; }
    .hp-hero h1 { font-size: 1.25rem; }
    .hp-hero-subtitle { font-size: 0.84rem; }
    .hp-hero-badge { font-size: 0.72rem; padding: 4px 10px; }
    .hp-hero-actions { gap: 8px; }
    .hp-hero-actions .hp-btn-lg { padding: 9px 14px; font-size: 0.8rem; }

    /* Stats */
    .hp-stat-item { padding: 12px 6px; }
    .hp-stat-number { font-size: 1.15rem; }
    .hp-stat-label { font-size: 0.6rem; }

    /* Categories */
    .hp-categories-grid { gap: 6px; }
    .hp-cat-card { padding: 12px 8px; }
    .hp-cat-icon { width: 36px; height: 36px; font-size: 16px; }
    .hp-cat-name { font-size: 0.72rem; }

    /* Cards */
    .hp-review-card { padding: 18px 14px; }
    .hp-pillar-card { padding: 20px 14px; }
    .hp-support-card { padding: 20px 14px; }
    .hp-pricing-card { padding: 18px 14px; }

    /* Section headers */
    .hp-section-header { margin-bottom: 28px; }
    .hp-section-header .hp-overline { font-size: 11px; letter-spacing: 1px; }

    /* Footer */
    .hp-footer-heading { font-size: 0.85rem; }
    .hp-footer-links li { font-size: 0.82rem; }
    .hp-footer-bottom { padding: 16px 0; }

    /* Auth */
    .hp-auth-form-side,
    .hp-auth-left { padding: 20px 12px; }
    .hp-auth-card { padding: 24px 16px; border-radius: 12px; }
    .hp-auth-card h1 { font-size: 1.4rem; }
    .hp-auth-card .hp-auth-subtitle { font-size: 0.84rem; }
    .hp-auth-form .hp-input { padding: 11px 12px; font-size: 0.85rem; }
    .hp-auth-submit { padding: 13px 20px; font-size: 0.9rem; }
    .hp-auth-footer { font-size: 0.82rem; }

    /* Register */
    .hp-register-form-side,
    .hp-register-left { padding: 20px 12px; }
    .hp-register-form-wrap { padding: 20px 14px; }
    .hp-register-form-wrap h1 { font-size: 1.15rem; }

    /* OTP */
    .hp-otp-inputs { gap: 6px; }
    .hp-otp-input { width: 38px; height: 44px; font-size: 1.1rem; }
    .hp-otp-card { padding: 28px 16px; }

    /* Onboarding */
    .ob-container { padding: 16px 12px 28px; }
    .ob-panel { padding: 20px 14px; }
    .ob-step-label { font-size: 0.6rem; }
    .ob-step-circle { width: 26px; height: 26px; font-size: 0.7rem; }
    .ob-panel-header h2 { font-size: 1rem; }
    .ob-btn { padding: 9px 16px; font-size: 0.82rem; }

    /* HP2 */
    .hp2-hero-content h1 { font-size: 1.65rem; }
    .hp2-btn-lg { padding: 12px 22px; font-size: 0.88rem; }
    .hp2-problem-card { padding: 22px 16px; }
    .hp2-pricing-card { padding: 22px 16px; }
    .hp2-testimonial-card { padding: 22px 16px; }
    .hp2-showcase-tab { padding: 6px 10px; font-size: 0.75rem; }
    .hp2-live-stat { padding: 12px 8px; }
    .hp2-live-stat-num { font-size: 1.05rem; }

    /* Mobile menu */
    .hp-mobile-menu { padding: 72px 16px 16px; }
    .hp-mobile-menu ul li a { font-size: 15px; padding: 12px 0; }

    /* FAQ */
    .hp-faq-question { font-size: 0.88rem; padding: 14px 36px 14px 16px; }
    .hp-faq-answer { padding: 0 16px 14px; font-size: 0.85rem; }

    /* CTA */
    .hp-final-cta { padding: 40px 0; }
    .hp-cta-badge { font-size: 0.72rem; padding: 5px 12px; }

    /* WhatsApp + go-top */
    .hp2-go-top { width: 36px; height: 36px; font-size: 14px; bottom: 80px; right: 12px; }
    .hp2-whatsapp-btn { width: 44px; height: 44px; right: 12px; bottom: 20px; }
}

/* ===== 320px — Ultra-small phones ===== */
@media (max-width: 320px) {
    .container { padding-left: 8px !important; padding-right: 8px !important; }

    .hp-hero h1 { font-size: 1.15rem; }
    .hp-hero-actions { flex-direction: column; align-items: stretch; }
    .hp-hero-actions .hp-btn-lg { text-align: center; justify-content: center; }
    .hp-stat-item { flex: 0 0 100%; }
    .hp-categories-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
    .hp-cat-card { padding: 10px 6px; }
    .hp-cat-name { font-size: 0.68rem; }
    .hp-cat-icon { width: 32px; height: 32px; font-size: 14px; }

    .hp-auth-card { padding: 20px 12px; }
    .hp-auth-card h1 { font-size: 1.25rem; }
    .hp-register-form-wrap { padding: 16px 10px; }

    .hp-otp-input { width: 34px; height: 40px; font-size: 1rem; }

    .hp2-hero-content h1 { font-size: 1.45rem; }
    .hp2-section-header h2 { font-size: 1.3rem; }
    .hp2-btn-lg { padding: 11px 18px; font-size: 0.85rem; width: 100%; text-align: center; justify-content: center; }
    .hp2-problem-card { padding: 18px 12px; }
    .hp2-pricing-card { padding: 18px 12px; }
    .hp2-roi-number { font-size: 2rem; }
    .hp2-roi-stat-number { font-size: 2rem; }
    .hp2-roi-stat-card { padding: 22px 14px; }

    .ob-panel { padding: 16px 10px; }
    .ob-progress { padding: 10px 8px; }
    .ob-step-label { display: none; }

    .hp-header-inner { height: 54px; }
    .hp-header-logo img { height: 22px; }
}

/* ===== Landscape tablet / landscape phone ===== */
@media (orientation: landscape) and (max-height: 500px) {
    .hp-hero { padding: 64px 0 0; min-height: auto; }
    .hp2-hero { padding: 64px 0 32px; min-height: auto; }
    .hp-auth-page, .hp-register-page, .hp-otp-page { min-height: auto; }
    .hp-mobile-menu { padding-top: 56px; }
    .hp-hero-visual { max-width: 60%; margin: 0 auto; }
    .ob-container { padding-top: 16px; padding-bottom: 24px; }
}

/* ===== Landscape tablet (768-1024 height > 500) ===== */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hp-hero h1 { font-size: 2.2rem; }
    .hp-hero { padding: 100px 0 0; }
    .hp2-hero { padding: 100px 0 48px; }
    .hp2-hero-grid { grid-template-columns: 1fr 1fr; text-align: left; }
    .hp2-hero-content h1 { font-size: 2.4rem; }
    .hp2-hero-ctas { justify-content: flex-start; }
    .hp2-hero-proof { justify-content: flex-start; }
    .hp-feature-row { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hp2-feature-row,
    .hp2-feature-row-reverse { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== Large screens / 4K ===== */
@media (min-width: 1920px) {
    .container { max-width: 1400px; }
    .hp-hero h1 { font-size: 3.25rem; }
    .hp-section-header h2 { font-size: 2.5rem; }
    .hp2-hero-content h1 { font-size: 4rem; }
    .hp2-section-header h2 { font-size: 3.2rem; }
    .hp-hero { padding: 160px 0 0; }
}
@media (min-width: 2560px) {
    .container { max-width: 1600px; }
    :root { --hp-section-py: 120px; }
    .hp-hero h1 { font-size: 3.5rem; }
    .hp2-hero-content h1 { font-size: 4.5rem; }
}

/* ============================================================
   TOUCH & NATIVE FEEL — Smooth interactions
   ============================================================ */

/* ===== Active state feedback for touch ===== */
.hp-btn:active, .hp-btn-lg:active, .hp-auth-submit:active,
.hp2-btn:active, .hp2-btn-lg:active,
.hp-cat-card:active, .hp-review-card:active,
.hp-pillar-card:active, .hp-support-card:active,
.hp-pricing-card:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
}

/* ===== Smooth momentum scrolling on all overflow containers ===== */
.hp-custom-select-options,
.hp-mobile-menu,
.ob-progress {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* ===== Prevent text selection on interactive elements ===== */
.hp-btn, .hp-btn-lg, .hp-auth-submit, .hp-cat-card,
.hp-custom-select-trigger, .hp-faq-question,
.hp2-btn, .hp2-btn-lg, .hp2-showcase-tab,
.ob-btn, .ob-step {
    -webkit-user-select: none;
    user-select: none;
}

/* ===== Smooth transition for all hover/active states ===== */
@media (hover: none) and (pointer: coarse) {
    .hp-btn:hover, .hp-btn-lg:hover,
    .hp-cat-card:hover, .hp-review-card:hover,
    .hp-pillar-card:hover, .hp-pricing-card:hover,
    .hp-support-card:hover, .hp2-btn:hover,
    .hp2-pricing-card:hover, .hp2-testimonial-card:hover,
    .hp2-problem-card:hover {
        transform: none;
        box-shadow: inherit;
    }
}
