/* Man Power — modern product brand theme */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg: #ffffff;
    --bg-alt: #f5f5f0;
    --bg-dark: #0f0f0f;
    --accent: #e63312;
    --accent-dark: #c42a0e;
    --accent-muted: rgba(230, 51, 18, 0.08);
    --text: #0f0f0f;
    --text-muted: #6b6b6b;
    --text-light: #9a9a9a;
    --border: #e5e5e5;
    --border-strong: #d0d0d0;
    --footer-bg: #0f0f0f;
    --white: #ffffff;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================
   HEADER
   ============================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 0;
}

.logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.logo a:hover {
    color: var(--accent);
}

/* ==============================
   HERO
   ============================== */
.hero {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0 4.5rem;
    overflow: hidden;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--accent);
}

.subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 420px;
}

/* ==============================
   BUTTONS
   ============================== */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 0.875rem 2rem;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--border-strong);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--text);
    color: var(--text);
}

/* ==============================
   SECTION TITLES
   ============================== */
.section-title {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--text);
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.625rem;
}

/* ==============================
   PRODUCT SECTION
   ============================== */
.product-section {
    padding: 5.5rem 0;
    background: var(--bg);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.product-grid .product-info { order: 1; }
.product-grid .product-image { order: 2; }

.product-badge {
    display: inline-block;
    background: var(--accent-muted);
    color: var(--accent);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(230, 51, 18, 0.2);
}

.product-info h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--text);
    line-height: 1.1;
}

.product-description {
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.product-features {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
}

.feature:hover {
    border-color: var(--accent);
}

.feature-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    min-width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-specs {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
    border: 1px solid var(--border);
}

.product-specs h3 {
    margin-bottom: 0.875rem;
    color: var(--text);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-specs p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
}

.product-price {
    margin-bottom: 1.25rem;
}

.price-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ==============================
   CAROUSEL
   ============================== */
.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-alt);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: var(--bg-alt);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    background: var(--bg-alt);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.2s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
    text-align: center;
    padding: 0.875rem 0 1.125rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.dot {
    cursor: pointer;
    height: 7px;
    width: 7px;
    margin: 0 4px;
    background-color: var(--border-strong);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.2s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--accent);
    transform: scale(1.3);
}

/* ==============================
   BENEFITS
   ============================== */
.benefits-section {
    padding: 5.5rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid var(--border);
}

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

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.benefit-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ==============================
   HOW IT WORKS / COMPARISON
   ============================== */
.how-it-works {
    padding: 5.5rem 0;
    background: var(--bg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-item {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}

.comparison-highlight {
    border-color: var(--accent) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm) !important;
}

.comparison-item:hover {
    box-shadow: var(--shadow-md);
}

.comparison-item h3 {
    margin-bottom: 1.25rem;
    color: var(--text);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.comparison-image {
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.comparison-item p {
    margin-bottom: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.9375rem;
}

/* ==============================
   GUARANTEE / SUPPORT
   ============================== */
.guarantee {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.guarantee p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.85;
}

.guarantee a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.guarantee a:hover {
    text-decoration: underline;
}

/* ==============================
   FAQ
   ============================== */
.faq {
    padding: 5.5rem 0;
    background: var(--bg);
}

.faq-list {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item h3 {
    color: var(--text);
    margin-bottom: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* ==============================
   CONTACT
   ============================== */
.contact-section {
    padding: 5.5rem 0;
    background: var(--bg-dark);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-eyebrow {
    color: var(--accent);
}

.contact-section > .container > .contact-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 860px;
}

.contact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-item:hover {
    border-color: var(--accent);
    background: rgba(230, 51, 18, 0.06);
}

.contact-item-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.contact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    background: #080808;
    color: rgba(255, 255, 255, 0.6);
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    font-size: 0.875rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.875rem;
}

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-page {
    padding: 4rem 0 5.5rem;
    min-height: 60vh;
    background: var(--bg);
}

.legal-page .container {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.25rem 3rem;
    max-width: 900px;
}

.legal-page h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: var(--text);
}

.legal-page section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-page section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-page h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-page h3 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
    margin-top: 1.25rem;
    color: var(--text);
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.legal-page a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.legal-page a:hover {
    text-decoration: underline;
}

.withdrawal-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
}

.withdrawal-form p {
    margin-bottom: 0.875rem;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .subtitle {
        max-width: none;
    }

    .hero-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-grid .product-info,
    .product-grid .product-image {
        order: unset;
    }

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

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .section-title {
        font-size: 1.875rem;
    }

    .carousel-slides {
        height: 360px;
    }

    .legal-page h1 {
        font-size: 1.75rem;
    }

    .legal-page .container {
        padding: 1.5rem 1.25rem 2rem;
    }

    .header-top {
        padding: 1rem 0;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

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

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

.product-image img,
.comparison-image img {
    background-color: var(--bg-alt);
    min-height: 120px;
    display: block;
}
