/* ============================================
   ORECARE LANDING PAGE — PREMIUM STYLESHEET
   ============================================ */

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

:root {
    --green-dark: #0D3B1E;
    --green-primary: #1B6B2F;
    --green-mid: #2E8B47;
    --green-light: #4CAF6A;
    --gold: #C9A54B;
    --gold-light: #E0C675;
    --gold-glow: rgba(201, 165, 75, 0.3);
    --cream: #FDF8F0;
    --bg-section: #F5F9F6;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-body: #444444;
    --text-muted: #777777;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 30px rgba(201, 165, 75, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* ---- Text Gradient ---- */
.text-gradient {
    background: linear-gradient(135deg, var(--green-primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(27, 107, 47, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 107, 47, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-glow {
    animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 6px 20px rgba(27, 107, 47, 0.35); }
    50% { box-shadow: 0 6px 35px rgba(27, 107, 47, 0.55), 0 0 60px rgba(201, 165, 75, 0.15); }
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
}

.btn-arrow {
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(-5px);
}

/* ---- Animations ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ---- Mobile Floating CTA ---- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 15px;
    background: rgba(13, 59, 30, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 165, 75, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-dark);
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(201, 165, 75, 0.4);
}

/* ---- Floating WhatsApp Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.45));
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    filter: drop-shadow(0 6px 18px rgba(37, 211, 102, 0.65));
}

.whatsapp-float:active {
    transform: scale(0.97);
}

.whatsapp-float-icon {
    width: auto;
    height: 48px;
    display: block;
    object-fit: contain;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    transition: all var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    box-shadow: none;
    border-radius: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.btn-sm {
    padding: 8px 22px;
    font-size: 0.9rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(160deg, #F0F7F2 0%, var(--white) 40%, #FDF8F0 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-circle-1 {
    width: 500px; height: 500px;
    background: var(--green-primary);
    top: -150px; left: -100px;
    animation: floatSlow 12s ease-in-out infinite;
}

.hero-circle-2 {
    width: 350px; height: 350px;
    background: var(--gold);
    bottom: -100px; right: -50px;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 200px; height: 200px;
    background: var(--green-light);
    top: 40%; left: 50%;
    animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--green-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(201, 165, 75, 0.3);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 20px 24px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 107, 47, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-primary);
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Hero Trust */
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 480px;
}

.hero-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(201, 165, 75, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-product-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ==========================================
   PROBLEMS SECTION
   ========================================== */
.problems {
    padding: 80px 0;
    background: var(--bg-section);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(220, 53, 69, 0.15);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.solution {
    padding: 80px 0 20px;
    background: var(--white);
}

/* ==========================================
   INGREDIENTS SECTION
   ========================================== */
.ingredients {
    padding: 20px 0 80px;
    background: var(--white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.ingredient-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ingredient-card:hover::before {
    opacity: 1;
}

.ingredient-featured {
    border-color: rgba(201, 165, 75, 0.2);
    background: linear-gradient(160deg, var(--white), #FDF8F0);
}

.ingredient-featured::before {
    opacity: 1;
}

.ingredient-icon-wrap {
    margin-bottom: 15px;
}

.ingredient-svg {
    width: 64px;
    height: 64px;
}

.ingredient-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.ingredient-latin {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 12px;
}

.ingredient-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 15px;
}

.ingredient-benefits {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 12px;
}

.ingredient-benefits li {
    font-size: 0.85rem;
    color: var(--green-primary);
    font-weight: 600;
    padding: 4px 0;
    position: relative;
    padding-right: 18px;
}

.ingredient-benefits li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 800;
}

/* Supporting Ingredients */
.supporting-ingredients {
    background: var(--bg-section);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.supporting-ingredients h3 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.support-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.support-item:hover {
    transform: translateY(-3px);
}

.support-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.support-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.support-item span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--green-dark), #0A2E15);
    color: var(--white);
}

.benefits .section-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}

.benefits .section-header h2 {
    color: var(--white);
}

.benefits .text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
    transition: all var(--transition);
}

.benefit-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(201, 165, 75, 0.3);
    transform: translateY(-3px);
}

.benefit-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    min-width: 45px;
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.benefit-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ==========================================
   HOW TO USE SECTION
   ========================================== */
.how-to-use {
    padding: 80px 0;
    background: var(--bg-section);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.step-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    flex: 1;
    max-width: 300px;
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(201, 165, 75, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-connector {
    display: flex;
    align-items: center;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Featured Card */
.pricing-card-featured {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--green-primary), var(--gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-5px);
}

.pricing-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-dark);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(201, 165, 75, 0.3);
}

.pricing-badge-wrap {
    margin-bottom: 12px;
}

.pricing-emoji {
    font-size: 2.5rem;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-details {
    background: var(--bg-section);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.pricing-qty, .pricing-duration {
    display: block;
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 600;
}

.pricing-duration {
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-price {
    margin-bottom: 6px;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--green-primary);
    line-height: 1;
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-primary);
}

.pricing-shipping {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-shipping-free {
    color: var(--green-primary);
    font-weight: 700;
}

.pricing-save {
    display: inline-block;
    background: linear-gradient(135deg, rgba(27, 107, 47, 0.1), rgba(201, 165, 75, 0.1));
    color: var(--green-primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-features {
    text-align: right;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: relative;
    padding-right: 22px;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--green-primary);
    font-weight: 800;
    font-size: 0.9rem;
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
}

/* ==========================================
   COURSE PHASES SECTION
   ========================================== */
.course-phases {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.phase-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.phase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--gold));
}

.phase-number {
    font-size: 2.4rem;
    margin-bottom: 12px;
    line-height: 1;
}

.phase-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.phase-period {
    display: inline-block;
    background: linear-gradient(135deg, rgba(27, 107, 47, 0.08), rgba(201, 165, 75, 0.08));
    color: var(--green-primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.phase-body {
    margin-top: 12px;
}

.phase-goal,
.phase-mechanism {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 10px;
}

.phase-goal strong,
.phase-mechanism strong {
    color: var(--green-dark);
}

.phase-results {
    margin-top: 12px;
}

.phase-results li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 5px 0;
    padding-right: 22px;
    position: relative;
    line-height: 1.5;
}

.phase-results li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--green-primary);
    font-weight: 800;
    font-size: 0.9rem;
}

/* Brush Info Box */
.brush-info {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(27, 107, 47, 0.04), rgba(201, 165, 75, 0.06));
    border: 1px solid rgba(201, 165, 75, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.brush-icon {
    font-size: 2.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.brush-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.brush-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 10px;
}

.brush-content ul li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 4px 0;
    padding-right: 20px;
    position: relative;
    line-height: 1.5;
}

.brush-content ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--green-primary);
    font-weight: 800;
    font-size: 0.85rem;
}

/* ==========================================
   SINGLE PRICING CARD LAYOUT
   ========================================== */
.pricing-single {
    max-width: 520px;
    margin: 0 auto;
}

.pricing-card-single {
    transform: scale(1) !important;
}

.pricing-card-single:hover {
    transform: translateY(-6px) !important;
}

/* Offer Image */
.pricing-image-wrap {
    margin: 20px -28px; /* Negates the 28px left/right padding of .pricing-card */
}

.pricing-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Course Contents Table */
.course-contents {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
    text-align: right;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.course-item:last-child {
    border-bottom: none;
}

.course-item-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.course-item-info {
    text-align: right;
}

.course-item-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--green-dark);
    font-weight: 700;
}

.course-item-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Credibility Note */
.pricing-credibility {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}

/* ==========================================
   ORDER FORM SECTION
   ========================================== */
.order {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--green-dark), #0A2E15);
    position: relative;
    overflow: hidden;
}

.order::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 165, 75, 0.08), transparent);
    border-radius: 50%;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.order-info h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.order-info > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.order-guarantees {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.guarantee-icon {
    font-size: 2rem;
    line-height: 1;
}

.guarantee-item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 3px;
}

.guarantee-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* Form Wrapper */
.order-form-wrap {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.selected-pack-display {
    background: linear-gradient(135deg, rgba(27, 107, 47, 0.08), rgba(201, 165, 75, 0.08));
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border-right: 4px solid var(--gold);
}

.selected-pack-display span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.selected-pack-display strong {
    font-size: 1rem;
    color: var(--green-dark);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(27, 107, 47, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Message */
.form-message {
    display: none;
    margin-top: 15px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #080F0A;
    padding: 40px 0 20px;
    color: rgba(255,255,255,0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .header-nav .nav-link {
        display: none;
    }

    .logo-img {
        height: 34px;
    }

    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 85px;
        right: 15px;
    }

    .whatsapp-float-icon {
        height: 40px;
    }

    .hero {
        padding: 50px 0 40px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-desc {
        margin: 0 auto 1.5rem;
    }

    .hero-stats {
        flex-direction: row;
        padding: 15px;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 350px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 20px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .phases-grid {
        grid-template-columns: 1fr;
    }

    .brush-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .brush-content {
        text-align: right;
    }

    .pricing-single {
        max-width: 100%;
    }

    .order-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-info {
        text-align: center;
    }

    .order-info h2 {
        font-size: 1.8rem;
    }

    .order-guarantees {
        align-items: center;
    }

    .guarantee-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .order-form-wrap {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 8px;
        padding: 12px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .price-amount {
        font-size: 2.4rem;
    }
}
/* ============================================
   VERIFICATION / SOCIAL PROOF SECTION
   ============================================ */
.verification {
    padding: 5rem 0;
    background-color: #fcfdfc;
    border-top: 1px solid rgba(13, 59, 30, 0.05);
}

.verification-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-box, .audio-feedbacks {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(13, 59, 30, 0.05);
}

.certificate-header h3 {
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.certificate-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.certificate-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid #f0f4f1;
}

.certificate-image img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.audio-feedbacks h3 {
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.audio-card {
    background: #f8faf9;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(13, 59, 30, 0.08);
    transition: transform 0.3s ease;
}

.audio-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 59, 30, 0.05);
}

.audio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.customer-name {
    font-weight: 700;
    color: var(--color-primary);
}

.stars {
    font-size: 0.9rem;
}

audio {
    width: 100%;
    height: 40px;
    outline: none;
}

/* Audio Player customization (Webkit) */
audio::-webkit-media-controls-panel {
    background-color: #ffffff;
}
audio::-webkit-media-controls-play-button {
    background-color: var(--color-secondary);
    border-radius: 50%;
}
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .verification-content {
        flex-direction: column;
    }
}
