:root {
    --hr-primary: #2F5E48;
    --hr-primary-light: #E6F4EA;
    --hr-primary-dark: #1a382b;
    --hr-text: #1a1a2e;
    --hr-text-muted: #6b7280;
    --hr-bg: #ffffff;
    --hr-bg-secondary: #f8f9fa;
    --hr-border: #e5e7eb;
    --hr-yellow: #facc15;
    --hr-orange: #f97316;
    --hr-red: #ef4444;
    --hr-green-cta: #00C853;
    --hr-font-body: 'DM Sans', -apple-system, sans-serif;
    --hr-font-heading: 'Outfit', 'DM Sans', sans-serif;
}

.hr-landing {
    font-family: var(--hr-font-body);
    color: var(--hr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: var(--hr-bg);
    padding-bottom: 80px;
}
.hr-landing *,
.hr-landing *::before,
.hr-landing *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.hr-landing img {
    max-width: 100%;
    height: auto;
}
.hr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.hr-narrow { max-width: 640px; }
.hr-narrow-lg { max-width: 900px; }

[dir="rtl"] .hr-landing { text-align: right; }

/* Announcement Bar */
.hr-announcement {
    background: var(--hr-primary);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hr-marquee {
    display: inline-flex;
    gap: 48px;
    animation: hr-scroll 30s linear infinite;
}
[dir="rtl"] .hr-marquee {
    animation: hr-scroll-rtl 30s linear infinite;
    flex-direction: row-reverse;
}
@keyframes hr-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes hr-scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}
.hr-marquee-item { display: inline-flex; align-items: center; gap: 8px; }

/* Navbar */
.hr-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hr-border);
}
.hr-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.hr-brand {
    font-family: var(--hr-font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--hr-primary);
    text-decoration: none;
}
.hr-navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hr-lang-toggle {
    background: none;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--hr-text);
    transition: background 0.2s;
}
.hr-lang-toggle:hover { background: var(--hr-bg-secondary); }

/* Currency Dropdown */
.hr-currency-dropdown { position: relative; }
.hr-currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}
.hr-currency-btn:hover { background: var(--hr-bg-secondary); }
.hr-currency-flag { font-size: 18px; }
.hr-currency-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid var(--hr-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 130px;
    z-index: 100;
    overflow: hidden;
}
[dir="rtl"] .hr-currency-menu { right: auto; left: 0; }
.hr-currency-dropdown.open .hr-currency-menu { display: block; }
.hr-currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
[dir="rtl"] .hr-currency-option { text-align: right; }
.hr-currency-option:hover { background: var(--hr-bg-secondary); }
.hr-currency-option.active { color: var(--hr-primary); font-weight: 600; }

/* Hero Section */
.hr-hero-section { padding: 24px 16px; }
.hr-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 1024px) {
    .hr-hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    .hr-hero-section { padding: 48px 16px; }
}

/* Gallery */
.hr-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
}
@media (min-width: 1024px) {
    .hr-gallery {
        flex-direction: row;
        position: sticky;
        top: 96px;
        align-self: start;
    }
}
.hr-gallery-thumbs {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 80px;
}
@media (min-width: 1024px) { .hr-gallery-thumbs { display: flex; } }
.hr-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.2s;
}
.hr-thumb.active { border-color: var(--hr-primary); box-shadow: 0 0 0 3px rgba(47,94,72,0.2); }
.hr-thumb img { width: 100%; height: 100%; object-fit: cover; }

.hr-gallery-main {
    position: relative;
    flex: 1;
    aspect-ratio: 1;
    background: var(--hr-bg-secondary);
    border-radius: 16px;
    overflow: hidden;
}
.hr-gallery-track { width: 100%; height: 100%; position: relative; }
.hr-gallery-slide {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}
.hr-gallery-slide.active { display: flex; }
.hr-gallery-slide img { width: 100%; height: 100%; object-fit: contain; }

.hr-gallery-prev,
.hr-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hr-gallery-main:hover .hr-gallery-prev,
.hr-gallery-main:hover .hr-gallery-next { opacity: 1; }
.hr-gallery-prev { left: 12px; }
.hr-gallery-next { right: 12px; }

.hr-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
@media (min-width: 1024px) { .hr-gallery-dots { display: none; } }
.hr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(47,94,72,0.2);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}
.hr-dot.active { background: var(--hr-primary); width: 16px; border-radius: 4px; }

/* Product Info */
.hr-product-info { max-width: 560px; }
.hr-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hr-stars { color: var(--hr-yellow); font-size: 16px; letter-spacing: 2px; }
.hr-rating-text { font-size: 14px; font-weight: 500; color: var(--hr-text-muted); }
.hr-product-title {
    font-family: var(--hr-font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
@media (min-width: 768px) { .hr-product-title { font-size: 36px; } }

.hr-social-proof-mini { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--hr-text-muted); margin-bottom: 20px; }
.hr-avatar-stack { display: flex; }
.hr-avatar-stack span {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 2px solid #fff;
    margin-left: -8px;
}
.hr-avatar-stack span:first-child { margin-left: 0; }
[dir="rtl"] .hr-avatar-stack span { margin-left: 0; margin-right: -8px; }
[dir="rtl"] .hr-avatar-stack span:first-child { margin-right: 0; }

.hr-feature-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.hr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--hr-bg-secondary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--hr-text);
}

/* Benefits Box */
.hr-benefits-box {
    background: rgba(248,249,250,0.5);
    border: 1px solid rgba(229,231,235,0.5);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hr-benefit { display: flex; gap: 12px; align-items: flex-start; }
.hr-benefit > span { font-size: 18px; flex-shrink: 0; }
.hr-benefit p { font-size: 14px; }
.hr-benefit strong { font-weight: 700; }

/* Urgency */
.hr-urgency { margin-bottom: 20px; }
.hr-urgency-viral {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hr-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    animation: hr-pulse-text 2s ease-in-out infinite;
}
@keyframes hr-pulse-text { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.hr-pulse {
    position: relative;
    width: 8px; height: 8px;
    display: inline-block;
    flex-shrink: 0;
}
.hr-pulse::before,
.hr-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--hr-red);
}
.hr-pulse::before { animation: hr-ping 1s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.75; }
@keyframes hr-ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.hr-countdown-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}
.hr-countdown-bar > span:first-child { font-weight: 500; color: #9a3412; }
.hr-countdown-timer { font-weight: 700; color: #ea580c; font-family: monospace; }
.hr-countdown-label { display: none; }
@media (min-width: 768px) { .hr-countdown-label { display: inline; } }

/* Bundles */
.hr-bundles { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.hr-bundle {
    position: relative;
    border: 2px solid var(--hr-border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}
.hr-bundle:hover { border-color: rgba(47,94,72,0.3); background: rgba(248,249,250,0.3); }
.hr-bundle.selected {
    border-color: var(--hr-primary);
    background: rgba(47,94,72,0.05);
    box-shadow: 0 4px 12px rgba(47,94,72,0.1);
}
.hr-bundle-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--hr-yellow);
    color: #713f12;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
[dir="rtl"] .hr-bundle-badge { right: auto; left: 16px; }
.hr-bundle-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.hr-bundle-left { display: flex; align-items: flex-start; gap: 8px; }
.hr-bundle-radio {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid var(--hr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}
.hr-bundle.selected .hr-bundle-radio { border-color: var(--hr-primary); background: var(--hr-primary); }
.hr-radio-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: transparent;
}
.hr-bundle.selected .hr-radio-dot { background: #fff; }
.hr-bundle h3 { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.hr-bundle-save { font-size: 12px; font-weight: 700; color: #16a34a; padding-left: 24px; }
[dir="rtl"] .hr-bundle-save { padding-left: 0; padding-right: 24px; }
.hr-bundle-desc { font-size: 12px; color: var(--hr-text-muted); padding-left: 24px; }
[dir="rtl"] .hr-bundle-desc { padding-left: 0; padding-right: 24px; }
.hr-bundle-right { text-align: right; }
[dir="rtl"] .hr-bundle-right { text-align: left; }
.hr-price-current { font-size: 18px; font-weight: 700; }
.hr-price-original { font-size: 12px; color: var(--hr-text-muted); text-decoration: line-through; }
.hr-bundle-bonuses {
    padding-left: 24px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(47,94,72,0.1);
    display: none;
}
[dir="rtl"] .hr-bundle-bonuses { padding-left: 0; padding-right: 24px; }
.hr-bundle.selected .hr-bundle-bonuses { display: block; }
.hr-bonus {
    font-size: 12px;
    color: var(--hr-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

/* Order Form */
.hr-order-form {
    background: #fff;
    border: 2px solid rgba(47,94,72,0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.hr-form-field {
    position: relative;
    margin-bottom: 12px;
}
.hr-field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}
[dir="rtl"] .hr-field-icon { left: auto; right: 12px; }
.hr-form-field textarea ~ .hr-field-icon { top: 14px; transform: none; }
.hr-form-field input,
.hr-form-field textarea {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid var(--hr-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--hr-font-body);
    background: rgba(248,249,250,0.3);
    transition: all 0.2s;
    outline: none;
    resize: none;
}
[dir="rtl"] .hr-form-field input,
[dir="rtl"] .hr-form-field textarea { padding: 12px 42px 12px 16px; text-align: right; }
.hr-form-field input:focus,
.hr-form-field textarea:focus {
    border-color: var(--hr-primary);
    box-shadow: 0 0 0 3px rgba(47,94,72,0.1);
}
.hr-order-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 999px;
    background: var(--hr-primary);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    font-family: var(--hr-font-body);
    box-shadow: 0 4px 14px rgba(47,94,72,0.3);
    transition: all 0.2s;
}
.hr-order-btn:hover { background: rgba(47,94,72,0.9); transform: scale(1.01); }
.hr-order-btn:active { transform: scale(0.98); }
.hr-order-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.hr-form-trust { margin-top: 12px; }
.hr-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--hr-primary);
    font-weight: 500;
    margin-bottom: 6px;
}

/* Cross-Sell */
.hr-cross-sell { padding: 48px 16px; background: #fff; border-top: 1px solid #f3f4f6; }
.hr-section-title-sm {
    font-family: var(--hr-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--hr-primary);
    text-align: center;
    margin-bottom: 24px;
}
.hr-cross-sell-list { display: flex; flex-direction: column; gap: 12px; }
.hr-cross-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    background: rgba(249,250,251,0.5);
    transition: all 0.2s;
}
.hr-cross-item:hover { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.hr-cross-img {
    width: 64px; height: 64px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    padding: 4px;
    background: #fff;
    flex-shrink: 0;
}
.hr-cross-img img { width: 100%; height: 100%; object-fit: contain; }
.hr-cross-info { flex: 1; }
.hr-cross-info h4 { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.hr-cross-prices { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.hr-cross-sale { font-weight: 700; color: var(--hr-primary); }
.hr-cross-orig { color: var(--hr-text-muted); text-decoration: line-through; font-size: 12px; }
.hr-cross-add {
    padding: 8px 16px;
    border: 2px solid var(--hr-primary);
    border-radius: 6px;
    background: none;
    color: var(--hr-primary);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    font-family: var(--hr-font-body);
}
.hr-cross-add:hover { background: var(--hr-primary); color: #fff; }

/* Section Common */
.hr-section { padding: 64px 16px; }
.hr-section-title {
    font-family: var(--hr-font-heading);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--hr-primary);
    margin-bottom: 48px;
}
@media (min-width: 768px) { .hr-section-title { font-size: 36px; } }
.hr-section-desc { text-align: center; color: var(--hr-text-muted); font-size: 18px; max-width: 700px; margin: -32px auto 48px; }

/* Science Section */
.hr-science-section { background: #F5F7FA; padding: 80px 16px; }
.hr-science-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .hr-science-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }
.hr-science-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.hr-science-img img { width: 100%; display: block; }
.hr-science-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.hr-science-overlay p { color: #fff; font-weight: 700; font-size: 18px; max-width: 300px; }
.hr-science-content h2 {
    font-family: var(--hr-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--hr-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}
@media (min-width: 768px) { .hr-science-content h2 { font-size: 36px; } }
.hr-science-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    margin-bottom: 20px;
}
.hr-science-card h3 { font-weight: 700; font-size: 20px; color: var(--hr-primary); margin-bottom: 8px; }
.hr-science-card p { color: var(--hr-text-muted); }
.hr-science-desc { font-size: 18px; color: #374151; margin-bottom: 16px; }
.hr-science-desc strong { color: var(--hr-primary); }
.hr-check-list { list-style: none; padding-top: 16px; }
.hr-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-weight: 500;
    margin-bottom: 12px;
}
.hr-check-list li::before {
    content: '✓';
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--hr-primary-light);
    color: var(--hr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.hr-science-closing {
    font-family: var(--hr-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--hr-primary);
    padding-top: 16px;
}

/* Social Proof Grid */
.hr-social-proof-section { background: #EFFCF6; padding: 80px 16px; }
.hr-sp-header { text-align: center; margin-bottom: 48px; }
.hr-sp-badge-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.hr-sp-badge-row div { text-align: left; font-size: 12px; }
[dir="rtl"] .hr-sp-badge-row div { text-align: right; }
.hr-sp-stars { color: #16a34a; font-weight: 700; }
.hr-sp-header h2 {
    font-family: var(--hr-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--hr-primary-dark);
}
@media (min-width: 768px) { .hr-sp-header h2 { font-size: 42px; } }
.hr-sp-header u { text-decoration-color: var(--hr-primary); text-underline-offset: 6px; text-decoration-thickness: 4px; color: var(--hr-primary); }
.hr-sp-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .hr-sp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .hr-sp-grid { grid-template-columns: repeat(4, 1fr); } }
.hr-sp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.hr-sp-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.hr-sp-img { aspect-ratio: 4/5; overflow: hidden; }
.hr-sp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hr-sp-card:hover .hr-sp-img img { transform: scale(1.05); }
.hr-sp-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hr-sp-text { font-size: 14px; color: #4b5563; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.hr-sp-footer { margin-top: auto; }
.hr-sp-rating { font-size: 12px; color: #f97316; margin-bottom: 4px; }
.hr-sp-rating span { color: #000; font-weight: 700; margin-left: 8px; font-size: 12px; }
.hr-sp-footer strong { font-size: 14px; color: var(--hr-primary-dark); }

.hr-sp-cta { text-align: center; margin-top: 48px; }
.hr-cta-green {
    padding: 16px 48px;
    background: var(--hr-green-cta);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,200,83,0.3);
    transition: all 0.2s;
    font-family: var(--hr-font-body);
}
.hr-cta-green:hover { background: #00a844; transform: translateY(-2px); }
.hr-guarantee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 20px;
    background: #D1F7E2;
    color: var(--hr-primary);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

/* How It Works */
.hr-how-it-works { background: #fff; padding: 64px 16px; }
.hr-steps-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .hr-steps-grid { grid-template-columns: repeat(4, 1fr); } }
.hr-step { text-align: center; }
.hr-step-icon {
    width: 80px; height: 80px;
    border-radius: 16px;
    background: var(--hr-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.hr-step:hover .hr-step-icon { transform: scale(1.1); }
.hr-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--hr-primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.hr-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hr-primary);
    margin-bottom: 8px;
}
.hr-step p { font-size: 14px; color: var(--hr-text-muted); line-height: 1.5; }

/* Features */
.hr-features-section { background: #fff; border-top: 1px solid rgba(229,231,235,0.5); }
.hr-features-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .hr-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hr-features-grid { grid-template-columns: repeat(3, 1fr); } }
.hr-feature-card { text-align: center; padding: 16px; }
.hr-feat-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(47,94,72,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}
.hr-feature-card h3 { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.hr-feature-card p { font-size: 14px; color: var(--hr-text-muted); line-height: 1.5; }

/* Ingredients */
.hr-ingredients-section { background: #FAF9F6; padding: 64px 16px; }
.hr-ingredients-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .hr-ingredients-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.hr-ingredient { text-align: center; }
.hr-ing-img-wrap {
    width: 160px; height: 160px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hr-ing-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hr-primary-light);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(20px);
}
.hr-ing-img-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.5s;
}
.hr-ingredient:hover .hr-ing-img-wrap img { transform: scale(1.05); }
.hr-ingredient h3 { font-size: 20px; font-weight: 700; color: var(--hr-primary); margin-bottom: 12px; }
.hr-ingredient p { color: var(--hr-text-muted); line-height: 1.6; }

/* Comparison */
.hr-comparison-section { background: #fff; }
.hr-comparison-grid {
    display: grid;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .hr-comparison-grid { grid-template-columns: 1fr 1fr; } }
.hr-comp-us { background: rgba(230,244,234,0.3); padding: 32px; }
.hr-comp-them { background: #fafafa; padding: 32px; border-top: 1px solid #e5e7eb; }
@media (min-width: 768px) { .hr-comp-them { border-top: none; border-left: 1px solid #e5e7eb; } }
[dir="rtl"] .hr-comp-them { border-left: none; border-right: 1px solid #e5e7eb; }
.hr-comp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hr-comp-header span { font-size: 24px; }
.hr-comp-header h3 { font-size: 20px; font-weight: 700; }
.hr-comp-us .hr-comp-header h3 { color: var(--hr-primary); }
.hr-comp-them .hr-comp-header h3 { color: #9ca3af; }
.hr-comp-us ul,
.hr-comp-them ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hr-comp-us li,
.hr-comp-them li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.hr-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--hr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.hr-x {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fecaca;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.hr-comp-them li span { color: #9ca3af; }

/* Banner */
.hr-banner-section {
    padding: 80px 16px;
    background: var(--hr-primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hr-banner-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}
.hr-banner-bg::before,
.hr-banner-bg::after {
    content: '';
    position: absolute;
    width: 384px; height: 384px;
    border-radius: 50%;
    filter: blur(48px);
}
.hr-banner-bg::before { top: -96px; left: -96px; background: #fff; }
.hr-banner-bg::after { bottom: -96px; right: -96px; background: var(--hr-primary-light); }
.hr-banner-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hr-banner-content h2 {
    font-family: var(--hr-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    white-space: pre-line;
}
@media (min-width: 768px) { .hr-banner-content h2 { font-size: 56px; } }
.hr-banner-content p { font-size: 18px; opacity: 0.9; line-height: 1.6; }
@media (min-width: 768px) { .hr-banner-content p { font-size: 22px; } }
.hr-banner-content strong { border-bottom: 1px solid rgba(255,255,255,0.4); }

/* Testimonials */
.hr-testimonials-section { background: #fff; }
.hr-stars-center { text-align: center; font-size: 20px; color: var(--hr-yellow); margin-top: -32px; margin-bottom: 8px; }
.hr-rated-text { text-align: center; color: var(--hr-text-muted); margin-bottom: 32px; }
.hr-reviews-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .hr-reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.hr-review-card {
    background: rgba(248,249,250,0.3);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(229,231,235,0.5);
}
.hr-review-stars { color: var(--hr-yellow); font-size: 16px; margin-bottom: 16px; }
.hr-review-card > p { font-size: 14px; color: rgba(26,26,46,0.8); line-height: 1.6; margin-bottom: 24px; }
.hr-reviewer { display: flex; align-items: center; gap: 12px; }
.hr-reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(47,94,72,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--hr-primary);
}
.hr-reviewer strong { font-size: 14px; }

/* FAQ */
.hr-faq-section { background: rgba(248,249,250,0.5); }
.hr-faq-list { display: flex; flex-direction: column; gap: 12px; }
.hr-faq-item { background: #fff; border-radius: 8px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); overflow: hidden; }
.hr-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    font-family: var(--hr-font-body);
    color: var(--hr-text);
}
[dir="rtl"] .hr-faq-question { text-align: right; }
.hr-faq-arrow { transition: transform 0.2s; flex-shrink: 0; }
.hr-faq-item.open .hr-faq-arrow { transform: rotate(180deg); }
.hr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.hr-faq-item.open .hr-faq-answer { max-height: 500px; }
.hr-faq-answer p { padding: 0 20px 16px; color: var(--hr-text-muted); font-size: 14px; line-height: 1.6; white-space: pre-line; }

/* Footer */
.hr-footer {
    background: var(--hr-primary-dark);
    color: #fff;
    padding: 64px 16px;
    text-align: center;
    font-size: 14px;
}
.hr-footer-brand {
    font-family: var(--hr-font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}
.hr-footer p { opacity: 0.6; }
.hr-footer-disclaimer { font-size: 12px; opacity: 0.4; max-width: 640px; margin: 16px auto 0; line-height: 1.6; }

/* Sticky Mobile */
.hr-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
}
@media (min-width: 1024px) { .hr-sticky-mobile { display: none; } }
.hr-sticky-left { flex: 1; }
.hr-sticky-label { font-size: 12px; font-weight: 700; color: var(--hr-red); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.hr-sticky-prices { display: flex; align-items: baseline; gap: 8px; }
.hr-sticky-price { font-weight: 700; font-size: 18px; }
.hr-sticky-orig { font-size: 12px; color: var(--hr-text-muted); text-decoration: line-through; }
.hr-sticky-btn {
    padding: 12px 28px;
    background: var(--hr-primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(47,94,72,0.3);
    transition: background 0.2s;
    white-space: nowrap;
    font-family: var(--hr-font-body);
}
.hr-sticky-btn:hover { background: #244a38; }

/* Toast */
.hr-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    background: #fff;
    border: 1px solid var(--hr-border);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 320px;
    animation: hr-slide-in 0.3s ease;
}
[dir="rtl"] .hr-toast { right: auto; left: 20px; }
@keyframes hr-slide-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hr-toast-title { display: block; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.hr-toast-desc { display: block; font-size: 13px; color: var(--hr-text-muted); }
