/* ===================================
   FITJARO BLACK - PREMIUM STYLES
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --violet-900: #2d0a4e;
    --violet-800: #4a0e7c;
    --violet-700: #5c1199;
    --violet-600: #6a0dad;
    --violet-500: #7c3aed;
    --violet-400: #a855f7;
    --violet-300: #c084fc;

    /* Accent Colors */
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --orange-400: #fb923c;
    --orange-300: #fdba74;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--violet-600) 0%, var(--violet-800) 100%);
    --gradient-accent: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    --gradient-hero: linear-gradient(135deg, var(--violet-900) 0%, var(--violet-700) 50%, var(--violet-600) 100%);
    --gradient-text: linear-gradient(90deg, var(--orange-400) 0%, var(--orange-500) 50%, var(--violet-400) 100%);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-bg-light: rgba(255, 255, 255, 0.95);
    --glass-bg-dark: rgba(30, 20, 50, 0.9);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.4);
    --shadow-violet: 0 20px 60px rgba(106, 13, 173, 0.3);

    /* Font */
    --font-main: 'Poppins', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brand Name - Original Product Colors */
.brand-name {
    display: inline;
}

.brand-fit {
    color: var(--orange-400);
    text-shadow: 0 2px 15px rgba(249, 115, 22, 0.5);
}

.brand-jaro {
    color: var(--violet-400);
    text-shadow: 0 2px 15px rgba(168, 85, 247, 0.5);
}

.brand-black {
    color: var(--violet-400);
    text-shadow: 0 2px 15px rgba(168, 85, 247, 0.5);
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

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

/* Glass Effects */
.glass {
    background: var(--glass-bg-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
}

.glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.glass-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 230, 0.95) 100%);
    border: 2px solid var(--orange-400);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(249, 115, 22, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--violet-600);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-glow {
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(249, 115, 22, 0.7);
    }
}

/* ===================
   HERO SECTION
   =================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--orange-500);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--violet-400);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--orange-400);
    top: 50%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

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

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange-400);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.glow-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.product-img {
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    opacity: 0.7;
    font-size: 0.85rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 10px auto 0;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--orange-400);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    animation: scroll-mouse 2s infinite;
}

@keyframes scroll-mouse {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ===================
   BENEFITS SECTION
   =================== */
.benefits-section {
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

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

.benefit-card {
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

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

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

.benefit-card h4 {
    color: var(--violet-600);
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===================
   SECTION HEADERS
   =================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
    color: var(--violet-600);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================
   RESULTS SECTION
   =================== */
.results-section {
    padding: 60px 0;
    background: var(--white);
}

/* Compact Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-compact {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
}

.testimonial-compact:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.compact-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.testimonial-compact:hover .compact-image img {
    transform: scale(1.03);
}

.compact-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.compact-result {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.compact-info {
    padding: 15px;
    text-align: center;
    background: var(--white);
}

.compact-stars {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.compact-name {
    font-weight: 600;
    color: var(--violet-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    color: var(--gray-800);
}

.modal-close:hover {
    background: var(--orange-500);
    color: var(--white);
    transform: scale(1.1);
}

.modal-info {
    text-align: center;
    margin-top: 15px;
    color: var(--white);
}

.modal-info .stars {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.modal-info .name {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Compact Social Proof */
.social-proof-compact {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.proof-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================
   OFFERS SECTION
   =================== */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}

.offers-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--violet-300);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--orange-300);
    bottom: -150px;
    right: -100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.pricing-card {
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

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

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 15;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 0 0 20px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 20;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.card-header {
    padding: 25px 25px 0;
}

.kit-label {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular .kit-label {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange-600);
}

.card-image {
    padding: 20px 40px;
    text-align: center;
}

.card-image img {
    max-height: 180px;
    margin: 0 auto;
    transition: var(--transition-normal);
}

.pricing-card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 0 30px 30px;
    text-align: center;
}

.card-body h3 {
    color: var(--gray-800);
    margin-bottom: 5px;
}

.kit-desc {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.price-container {
    margin-bottom: 20px;
}

.old-price {
    color: var(--gray-400);
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    color: var(--violet-600);
}

.popular .price {
    color: var(--orange-600);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
}

.installment {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 8px;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--gray-100);
    color: var(--violet-600);
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.buy-button:hover {
    background: var(--violet-600);
    color: var(--white);
}

.buy-button.primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.buy-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

.savings-tag {
    margin-top: 15px;
    color: #16a34a;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.5rem;
}

/* ===================
   CTA SECTION
   =================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.cta-content {
    text-align: center;
    padding: 60px;
    border-radius: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ===================
   FOOTER
   =================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-brand .highlight {
    color: var(--orange-400);
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-info {
    text-align: center;
    color: var(--gray-300);
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-links {
    text-align: right;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===================
   ANIMATIONS
   =================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

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

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

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

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

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

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .popular-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    .compact-image {
        height: 350px;
    }

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

    .footer-links {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 120px;
    }

    .product-showcase {
        max-width: 300px;
    }

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

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .compact-image {
        height: 200px;
    }

    .scroll-indicator {
        display: none;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-content {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .btn {
        padding: 14px 28px;
    }

    .btn-large {
        padding: 16px 32px;
    }

    .social-proof-compact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

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

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