/* =============================================
   SuperCard - Bold & Powerful Theme
   Red, Dark & High Contrast Design
   ============================================= */

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

:root {
    --red: #dc2626;
    --red-dark: #991b1b;
    --red-light: #ef4444;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --dark: #1a1a1a;
    --dark-2: #222222;
    --dark-3: #333333;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}

.red-text {
    color: var(--red);
}

/* --- Navigation --- */
header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(220, 38, 38, 0.15);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: white;
    padding: 0.65rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--dark), #2d1a1a, var(--dark));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: var(--red-light);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
}

.hero-badge.secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--gray-light);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.hero-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.offer-tag {
    background: var(--red);
    color: white;
    padding: 0.2rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
}

.offer-text {
    color: var(--red-light);
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.85rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}

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

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red-light);
    background: rgba(220, 38, 38, 0.05);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-trust span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

/* --- Showcase Card --- */
.hero-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card {
    width: 320px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.showcase-card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red), #7f1d1d);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    transition: transform 0.3s ease;
}

.showcase-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.sc-chip {
    width: 32px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 4px;
}

.sc-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.sc-number {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.sc-bottom {
    display: flex;
    gap: 2rem;
}

.sc-label {
    display: block;
    font-size: 0.55rem;
    opacity: 0.6;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.sc-value {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--dark-2);
    padding: 2.5rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.06);
}

/* --- Sections Common --- */
section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.12);
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* --- Products Section --- */
.products-section {
    background: var(--off-white);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-card.featured {
    border: 2px solid var(--red);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
    transform: scale(1.02);
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 4px;
}

.product-visual {
    width: 200px;
    height: 120px;
    border-radius: 10px;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-highlight {
    margin-bottom: 1.2rem;
}

.highlight-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
}

.highlight-label {
    font-size: 0.82rem;
    color: var(--gray);
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-features li {
    padding: 0.55rem 0;
    font-size: 0.88rem;
    color: var(--dark-3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.product-features li::before {
    content: '✓ ';
    color: var(--red);
    font-weight: 700;
}

/* --- Features Showcase --- */
.features-section {
    background: white;
}

.features-showcase {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-block {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-block:hover {
    border-color: rgba(220, 38, 38, 0.1);
    transform: translateX(5px);
}

.feature-icon-wrap {
    font-size: 1.8rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.06);
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-block h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.feature-block p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* --- Testimonials --- */
.testimonial-section {
    background: var(--dark);
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-user strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-user span {
    color: var(--gray);
    font-size: 0.78rem;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--dark), #2d1a1a);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-small {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--dark), #2d1a1a);
    text-align: center;
    padding: 5rem 2rem 3.5rem;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* --- Legal Content --- */
.page-content {
    background: var(--off-white);
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-content .content-container h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.5rem 0 0.8rem;
    font-family: var(--font-heading);
}

.page-content .content-container p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.disclaimer-box {
    background: white;
    border-left: 4px solid var(--red);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.disclaimer-box ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.disclaimer-box li {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* --- Contact Page --- */
.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.method-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.06);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    color: var(--dark);
}

.method-value {
    font-weight: 600 !important;
    color: var(--dark) !important;
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

.contact-method span {
    font-size: 0.75rem;
    color: var(--gray);
}

.contact-faq-note {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    background: rgba(220, 38, 38, 0.04);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 8px;
}

.contact-faq-note p {
    font-size: 0.85rem;
    color: var(--gray);
}

.contact-faq-note a {
    color: var(--red);
    text-decoration: underline;
}

/* --- Form --- */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    background: var(--off-white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background: white;
}

.checkbox-group {
    margin: 1.2rem 0;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--red);
}

.checkbox-text {
    font-size: 0.82rem !important;
    color: var(--gray) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.form-disclaimer {
    font-size: 0.75rem !important;
    color: var(--gray-light) !important;
    margin-top: 1rem !important;
    text-align: center;
}

.form-disclaimer a {
    color: var(--red);
    text-decoration: underline;
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.footer-bottom p:first-child {
    color: var(--red-light);
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 4rem 2rem 2rem;
    }

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

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

    .hero-badge-row {
        justify-content: center;
    }

    .hero-offer {
        flex-direction: column;
        align-items: center;
    }

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

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

    .hero-card-visual {
        margin-top: 2rem;
    }

    .stats-container {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

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

    .product-card.featured {
        transform: none;
    }

    .product-card.featured:hover {
        transform: translateY(-6px);
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    section {
        padding: 3rem 1.2rem;
    }

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

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

    .cta-inner h2 {
        font-size: 2rem;
    }

    .showcase-card {
        width: 280px;
        height: 175px;
    }
}
