/* ===== NOVROX - Main Stylesheet ===== */

/* CSS Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
    --bg-card: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn--primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1.5px solid var(--border-color);
}

.btn--secondary:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn--outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__left {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0); /* Makes SVG black to match brand */
}

.logo__icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
}

.logo__text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.logo-link {
    transition: var(--transition);
}

.logo-link:hover .logo__svg {
    transform: scale(1.05);
}

.logo-link:hover .logo__text {
    color: var(--accent-color);
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__search,
.nav__cart {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.nav__search:hover,
.nav__cart:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.nav__signin {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav__signin:hover {
    color: var(--text-primary);
}

.nav__menu-btn {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav__menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 80px;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    position: relative;
}

.hero__badge {
    display: inline-flex;
    margin-bottom: 24px;
}

.badge__text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    position: relative;
}

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__doodle {
    position: absolute;
    color: var(--text-primary);
    opacity: 0.6;
}

.hero__doodle--left {
    left: -40px;
    bottom: 100px;
    width: 100px;
}

.hero__stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    height: 500px;
}

.hero__cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__card {
    position: absolute;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__card--back {
    width: 280px;
    height: 360px;
    top: 0;
    right: 0;
    transform: rotate(6deg);
    z-index: 1;
}

.hero__card--front {
    width: 300px;
    height: 400px;
    top: 50px;
    left: 50px;
    z-index: 2;
}

.hero__card .card__image {
    height: 65%;
    overflow: hidden;
}

.hero__card .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__card .card__info {
    padding: 16px 20px;
}

.hero__card .card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero__card .card__price {
    display: flex;
    align-items: center;
    gap: 4px;
}

.price__icon {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.price__amount {
    font-weight: 600;
}

.hero__card .card__like {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero__card .card__like i {
    color: #ef4444;
}

.hero__decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
}

.decoration--star {
    top: 10%;
    right: 20%;
    font-size: 1.5rem;
    animation: twinkle 2s ease-in-out infinite;
}

.decoration--circle {
    bottom: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    border: 2px dashed var(--border-color);
    border-radius: 50%;
}

.decoration--dots {
    top: 60%;
    right: 40%;
    display: flex;
    gap: 4px;
}

.decoration--dots span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
}

@keyframes twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.partner {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: var(--transition);
}

.partner:hover {
    opacity: 1;
}

.partner__icon {
    font-size: 1.5rem;
}

.partner span {
    font-size: 1rem;
    font-weight: 600;
}

/* ===== GALLERIES SECTION ===== */
.galleries {
    padding: 80px 0;
}

.galleries__tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
}

.tab:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.tab.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.tab i {
    font-size: 1rem;
}

.galleries__all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--secondary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 auto;
    display: block;
    text-align: center;
    width: fit-content;
}

.galleries__all-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ===== FEATURED SECTION ===== */
.featured {
    padding: 80px 0;
    background: var(--bg-light);
}

.featured__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.see-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.see-all:hover {
    color: var(--text-primary);
}

.featured__slider {
    position: relative;
}

.featured__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.featured__card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.featured__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured__card .card__image {
    height: 200px;
    overflow: hidden;
}

.featured__card .card__content {
    padding: 20px;
}

.featured__card .card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.featured__card .card__author {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
}

.featured__card .card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.featured__card .price__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.featured__card .price__amount {
    font-size: 1rem;
    font-weight: 700;
}

.featured__card .card__likes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.featured__card .card__likes i {
    color: #ef4444;
}

.featured__pagination {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.page {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.page.active {
    color: var(--text-primary);
}

.pagination__line {
    width: 100px;
    height: 2px;
    background: var(--border-color);
    position: relative;
}

.pagination__line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 100%;
    background: var(--primary-color);
}

.featured__controls {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 8px;
}

.control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--bg-card);
}

.control:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* ===== TOP SOLUTIONS SECTION ===== */
.top-solutions {
    padding: 80px 0;
}

.top-solutions__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.top-solutions__header .section__title {
    margin-bottom: 0;
}

.period-tabs {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    padding: 4px;
}

.period-tab {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
}

.period-tab.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.top-solutions__header .see-all {
    margin-left: auto;
}

.solutions__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.solutions__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.solution__item:hover {
    border-color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.solution__rank {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    width: 24px;
}

.solution__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.solution__info {
    flex: 1;
}

.solution__name {
    font-size: 0.9375rem;
    font-weight: 600;
    display: block;
}

.solution__floor {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.solution__stats {
    text-align: right;
}

.solution__price {
    font-size: 0.9375rem;
    font-weight: 600;
    display: block;
}

.solution__change {
    font-size: 0.8125rem;
}

.solution__change.positive {
    color: #10b981;
}

.solution__change.negative {
    color: #ef4444;
}

.solution__tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TOP FEATURES SECTION ===== */
.top-features {
    padding: 80px 0;
    background: var(--bg-light);
}

.top-features__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.top-features__header .section__title {
    margin-bottom: 0;
}

.top-features__header .see-all {
    margin-left: auto;
}

/* ===== DISCOVER SECTION ===== */
.discover {
    padding: 80px 0;
    background: var(--bg-light);
}

.discover__tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.discover-tab {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: var(--bg-card);
}

.discover-tab:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.discover-tab.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.discover__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.discover__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.discover__card--large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.discover__card .card__image {
    height: 100%;
    min-height: 200px;
}

.discover__card--large .card__image {
    min-height: 100%;
}

.discover__card .card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.discover__card .card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.discover__card .card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.discover__card .card__description {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===== NOVROX SECTIONS ===== */
.novrox-sections {
    padding: 80px 0;
}

.sections__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.section__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.section__card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.section__card .card__icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.section__card .card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section__card .card__description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section__card .card__features {
    margin-bottom: 24px;
}

.section__card .card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.section__card .card__features i {
    color: #10b981;
    font-size: 0.75rem;
}

.section__card .card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-color);
}

.section__card .card__btn:hover {
    gap: 12px;
}

/* ===== TECH STACK SECTION ===== */
.tech-stack {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.tech__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.tech__card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tech__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tech__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 12px;
}

.tech__name {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.tech__category {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: var(--primary-color);
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.cta__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

.footer__simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__brand .logo .logo__svg {
    width: 28px;
    height: 28px;
    filter: brightness(0.3); /* Slightly dimmed for footer */
}

.footer__brand .logo .logo__text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.footer__social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.footer__links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__newsletter h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer__newsletter p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.newsletter__form {
    display: flex;
    gap: 8px;
}

.newsletter__form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background: var(--bg-card);
}

.newsletter__form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter__form button {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter__form button:hover {
    background: #333;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer__bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer__legal a:hover {
    color: var(--text-primary);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .sections__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        height: 400px;
        order: -1;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .featured__track {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions__grid {
        grid-template-columns: 1fr;
    }
    
    .discover__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .discover__card--large {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav__left {
        display: none;
    }
    
    .nav__signin {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .stat__number {
        font-size: 1.5rem;
    }
    
    .partners__grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partner span {
        display: none;
    }
    
    .featured__track {
        grid-template-columns: 1fr;
    }
    
    .sections__grid {
        grid-template-columns: 1fr;
    }
    
    .tech__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .tab-row {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    
    .tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .top-solutions__header {
        flex-wrap: wrap;
    }
    
    .discover__grid {
        grid-template-columns: 1fr;
    }
    
    .discover__card--large {
        grid-column: auto;
    }
}
/* ===== NEW SECTIONS - NOVROX inc Creative Workspace ===== */

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature__card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.feature__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature__description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Nvr-notes Section */
.nvr-notes {
    padding: 80px 0;
    background: white;
}

.nvr-notes__header {
    text-align: center;
    margin-bottom: 48px;
}

.nvr-notes__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.nvr-note__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
}

.nvr-note__item i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

/* AI Tools Section */
.ai-tools {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.ai-tools__header {
    text-align: center;
    margin-bottom: 48px;
}

.ai-tools__header .section__title,
.ai-tools__header .section__subtitle {
    color: white;
}

.ai-tools__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ai-tool__card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.ai-tool__card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.ai-tool__card i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.ai-tool__card span {
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Team Chat Section */
.team-chat {
    padding: 80px 0;
    background: white;
}

.team-chat__header {
    text-align: center;
    margin-bottom: 48px;
}

.team-chat__features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.chat-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.chat-feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Connect & Share Section */
.connect-share {
    padding: 80px 0;
    background: var(--bg-light);
}

.connect__header {
    text-align: center;
    margin-bottom: 48px;
}

.connect__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.connect__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.connect__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.connect__item i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Invest Section */
.invest-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.invest__header {
    text-align: center;
    margin-bottom: 48px;
}

.invest__header .section__title,
.invest__header .section__subtitle {
    color: white;
}

.invest__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.invest__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.invest__item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.invest__item i {
    font-size: 2rem;
    color: #38ef7d;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about__text strong {
    color: var(--text-primary);
}

.about__mission {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.4;
}

/* Footer Location */
.footer__location {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Join Button in Nav */
.nav__btn-join {
    padding: 10px 24px;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav__btn-join:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== PRODUCT SECTIONS ===== */
.product-section {
    padding: 100px 0;
    overflow: hidden;
}

.product-section:nth-child(odd) {
    background: var(--bg-light);
}

.product-section:nth-child(even) {
    background: white;
}

.product-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-section__grid--reverse {
    direction: rtl;
}

.product-section__grid--reverse > * {
    direction: ltr;
}

.product-section__content {
    max-width: 520px;
}

.product-section__icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 24px;
}

.product-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-section__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-section__list {
    list-style: none;
    margin-bottom: 32px;
}

.product-section__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.product-section__list li .material-icons {
    color: #10b981;
    font-size: 1.125rem;
    margin-top: 2px;
}

.btn--go {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn--go:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.btn--go .material-icons {
    transition: transform 0.3s ease;
    font-size: 1.125rem;
}

.btn--go:hover .material-icons {
    transform: translateX(4px);
}

/* Product Section Image */
.product-section__image {
    position: relative;
}

.product-image__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.product-image__placeholder > .material-icons {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
}

.floating-card .material-icons {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.floating-card--1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section-specific colors */
.nvr-notes-section .product-section__icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ai-tools-section .product-section__icon {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
}

.team-chat-section .product-section__icon {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.connect-share-section .product-section__icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0077b5 100%);
}

.invest-section .product-section__icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .product-section__grid {
        gap: 40px;
    }
    
    .product-section__title {
        font-size: 1.75rem;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-tools__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .connect__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .invest__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 60px 0;
    }
    
    .product-section__grid,
    .product-section__grid--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .product-section__content {
        max-width: 100%;
        order: 2;
    }
    
    .product-section__image {
        order: 1;
    }
    
    .floating-card--1 {
        right: 10px;
    }
    
    .floating-card--2 {
        left: 10px;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .nvr-notes__features {
        grid-template-columns: 1fr;
    }
    
    .ai-tools__grid {
        grid-template-columns: 1fr;
    }
    
    .team-chat__features {
        flex-direction: column;
        align-items: center;
    }
    
    .connect__grid {
        grid-template-columns: 1fr;
    }
    
    .invest__grid {
        grid-template-columns: 1fr;
    }
    
    .about__mission {
        font-size: 1.25rem;
    }
}