/* 
   ViaShopModa - Minimalist Fashion Tech Theme 
   Palette: Monochrome + Deep Royal Blue Accent
*/

:root {
    --bg-body: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #111111;

    --text-main: #111111;
    --text-muted: #666666;
    --text-light: #ffffff;

    --accent: #1D4AFF;
    /* The Brand Blue - kept but used sparingly */
    --accent-dark: #0033cc;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --space-sm: 20px;
    --space-md: 40px;
    --space-lg: 80px;
    --space-xl: 120px;

    --max-width: 1280px;
    --radius: 0px;
    --radius-btn: 4px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-text {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: var(--space-xl) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--text-light) !important;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--text-light);
}

.btn-link {
    background: transparent;
    color: var(--text-main);
    padding: 16px 0;
    margin-left: 20px;
    border-bottom: 1px solid transparent;
}

.btn-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.italic-accent {
    font-style: italic;
    color: var(--accent);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 32px;
    width: auto;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-main);
}

.nav-item:hover {
    color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.line {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-body);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
}

/* Hero */
.hero {
    padding-top: 160px;
    padding-bottom: var(--space-xl);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 90%;
    margin-bottom: 40px;
    line-height: 1.7;
}

.visual-placeholder {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aspect-portrait {
    aspect-ratio: 4/5;
}

.aspect-square {
    aspect-ratio: 1/1;
}

.placeholder-text {
    opacity: 0.4;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: white;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.floating-card .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.floating-card .value {
    font-size: 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--accent);
}

/* Marquee */
.marquee-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
}

.trust-text {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Feature Rows (Video Sections) */
.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
}

.feature-media {
    width: 100%;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #ffffff;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-placeholder-content {
    color: white;
    text-align: center;
    opacity: 0.7;
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.feature-text h3 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-bullets li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.feature-bullets li span {
    color: var(--accent);
    white-space: nowrap;
}


/* Pillars Section (New) */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.pillar-card {
    background: var(--bg-body);
    padding: 40px 30px;
    border: 1px solid #eee;
    text-align: left;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    color: var(--accent);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pillar-action-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pillar-action-list li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

.pillar-action-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Visual Break */
.visual-break {
    background-color: var(--text-main);
    color: white;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-statement {
    font-size: 2.5rem;
    font-style: italic;
    max-width: 800px;
    line-height: 1.4;
    color: white;
}

/* States */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 60px 0;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Segment Grid */
.segment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.segment-item h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.segment-item p {
    color: #999;
}

/* CTA form */
.cta-content {
    max-width: 600px;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-text {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.lead-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.lead-form .form-group {
    flex-grow: 1;
}

.lead-form input {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
}

.lead-form input:focus {
    border-color: var(--text-main);
}

.link-underline {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    border-top: 1px solid #eee;
    background: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-top h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-top a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-top a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #999;
}


/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .visual-placeholder.aspect-portrait {
        aspect-ratio: 9/16;
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card {
        right: 0;
        bottom: -20px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-bullets li {
        justify-content: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .segment-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lead-form {
        flex-direction: column;
    }
}