
/* 
   TREVALINO MARTREX - Digital Marketplace Design System
   Theme: Midnight Blue & Electric Pink
   Font: 'Montserrat' (Headings), 'Open Sans' (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --color-midnight: #0A192F;
    --color-midnight-light: #172A45;
    --color-pink: #FF007F;
    --color-pink-hover: #D6006B;
    --color-cyan: #64FFDA;
    --color-white: #E6F1FF;
    --color-slate: #8892B0;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow-glow: 0 0 20px rgba(255, 0, 127, 0.3);
    --shadow-card: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-midnight);
    color: var(--color-slate);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-cyan);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-pink);
}

/* --- Navigation --- */
.navbar {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-pink) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--color-white);
}

.nav-link {
    font-family: var(--font-heading);
    color: var(--color-white) !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 1.5rem;
}

.nav-link:hover {
    color: var(--color-pink) !important;
}

.btn-martrex {
    background-color: transparent;
    color: var(--color-pink);
    border: 1px solid var(--color-pink);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-martrex:hover {
    background-color: rgba(255, 0, 127, 0.1);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
    color: var(--color-pink);
}

.btn-martrex-fill {
    background-color: var(--color-pink);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-martrex-fill:hover {
    background-color: var(--color-pink-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
    color: #fff;
}

/* --- Hero Section --- */
.hero-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 50%, var(--color-midnight-light) 0%, var(--color-midnight) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(100, 255, 218, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(100, 255, 218, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--color-white), var(--color-slate));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-slate);
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

/* --- Sections --- */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--color-pink);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* --- Cards --- */
.martrex-card {
    background-color: var(--color-midnight-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.martrex-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-pink);
    box-shadow: var(--shadow-glow);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-cyan);
    font-size: 1.5rem;
}

.martrex-card:hover .card-icon-wrapper {
    background-color: rgba(255, 0, 127, 0.1);
    color: var(--color-pink);
}

/* --- Deal Cards --- */
.deal-card {
    background-color: var(--color-midnight-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-cyan);
}

.deal-header {
    padding: 1.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
    position: relative;
}

.deal-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border: 2px solid var(--color-slate);
}

.discount-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--color-pink);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.deal-body {
    padding: 1.5rem;
    text-align: center;
}

.deal-btn {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deal-btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-midnight-light);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--color-slate);
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
}

/* --- New Sections Specifics --- */
.stat-box {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-right: none;
}

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

.stat-label {
    color: var(--color-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -2rem;
    position: relative;
    z-index: 0;
}

.step-title {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

/* Utility */
.text-pink { color: var(--color-pink); }
.text-cyan { color: var(--color-cyan); }
.bg-midnight-light { background-color: var(--color-midnight-light); }
