/* 
 * Vitality Mens Choice - Google Ads Compliant Design System
 * UI-UX-Pro-Max Intelligence: Dark Slate Theme, Glassmorphism, Micro-Animations
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --bg-dark: #0F172A;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --border-color: rgba(255, 255, 255, 0.1);
    --primary: #10B981;
    --primary-gradient: linear-gradient(135deg, #059669 0%, #10B981 100%);
    --accent: #8B5CF6;
    --accent-gradient: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    --gold: #F59E0B;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header & Navigation */
.header-editorial {
    background: #78350F;
    color: #FEF3C7;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.header-editorial a {
    color: #FBBF24;
    text-decoration: underline;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-desktop {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-dropdown-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 1.25rem;
    background: #1E293B;
    border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-nav a {
    padding: 0.625rem 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-dropdown-nav.active { display: flex; }
}

/* Layout Containers */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
}

/* Hero & Video Section */
.hero-section {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    color: #34D399;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.625rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 2rem auto;
}

.video-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-color);
}

.video-element {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
}

/* Video Play Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.play-btn-circle {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 1.75rem;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    margin-bottom: 1rem;
    animation: pulseGlow 2s infinite;
}

.overlay-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 0 40px rgba(16, 185, 129, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
}

/* Unmute Badge */
.unmute-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 92, 246, 0.95);
    color: #FFFFFF;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.04); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Direct Conversion Pricing Cards */
.pricing-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.price-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.05);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-img {
    max-width: 140px;
    height: auto;
    margin: 1rem auto;
}

.price-old {
    text-decoration: line-through;
    color: #64748B;
    font-size: 0.9375rem;
}

.price-new {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* Order Form Container */
.order-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #1E293B;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    background: #0F172A;
    border: 1px solid #334155;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Features Grid (6 Cards) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* Social Proof & Customer Reviews */
.reviews-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: rgba(15, 23, 42, 0.5);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.review-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    font-weight: 600;
    font-size: 0.9375rem;
}

.review-badge {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

.review-text {
    font-size: 0.9375rem;
    color: #E2E8F0;
    margin-bottom: 0.5rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 1.25rem;
    text-align: center;
    background: #090D16;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
}

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

.footer-disclaimer {
    font-size: 0.75rem;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto 1rem auto;
    line-height: 1.5;
}
