/* ========================================
   NSL Home Page Styles — Jeans & Polo Inspired
   ======================================== */

:root {
    --primary: #1a365d;
    --primary-dark: #122b4e;
    --accent: #c9a227;
    --accent-soft: #f7e3a4;
    --text-dark: #14283d;
    --text-muted: #65738f;
    --text-body: #4a5568;
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --surface: #ffffff;
    --border: #e7ecf4;
    --shadow: 0 4px 24px rgba(20, 40, 70, 0.08);
    --shadow-hover: 0 12px 40px rgba(20, 40, 70, 0.14);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s ease;
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.footer-brand .logo-img {
    height: 60px;
    margin-bottom: 12px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-item-has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.15);
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    min-width: 900px;
}

.nav-item-has-mega-menu:hover .mega-menu,
.nav-item-has-mega-menu:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.mega-menu-column {
    border-right: 1px solid var(--border);
    padding-right: 30px;
}

.mega-menu-column:last-child {
    border-right: none;
    padding-right: 0;
}

.mega-menu-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 12px;
}

.mega-menu-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 6px 0;
}

.mega-menu-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 40%, #0f2240 100%);
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: url('https://picsum.photos/seed/hero/1600/900') center/cover no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18,43,78,0.2) 0%, rgba(18,43,78,0.5) 50%, rgba(18,43,78,0.92) 100%);
    z-index: 1;
}

.hero-slider {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
    padding-bottom: 100px;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.slide-copy {
    max-width: 720px;
    padding: 0 24px;
    margin-left: calc((100vw - min(1200px, calc(100% - 48px))) / 2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    max-width: 520px;
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    border: none;
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.55);
}

.btn-white {
    background: #ffffff;
    color: var(--primary);
}

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

.slider-controls {
    display: flex;
    gap: 10px;
    padding: 0 24px;
    margin-left: calc((100vw - min(1200px, calc(100% - 48px))) / 2);
    padding-bottom: 40px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ========================================
   SECTION UTILITIES
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-label.light {
    color: var(--accent-soft);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-subtitle {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ========================================
   OVERVIEW / STATS
   ======================================== */

.overview-section {
    background: var(--bg);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    color: var(--primary);
    margin-bottom: 18px;
    opacity: 0.7;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-value span {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-left: 2px;
}

.stat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   ABOUT
   ======================================== */

.about-preview {
    background: var(--bg-soft);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-label {
    margin-bottom: 10px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.4;
}

.about-content p {
    color: var(--text-body);
    margin-bottom: 18px;
    line-height: 1.75;
    font-size: 15px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
    font-size: 15px;
}

.link-arrow .arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.link-arrow:hover .arrow {
    transform: translateX(3px);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ========================================
   PRODUCTS
   ======================================== */

.products-preview {
    background: var(--bg);
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(180deg, transparent 35%, rgba(18, 43, 78, 0.75) 75%, rgba(18, 43, 78, 0.95) 100%);
    color: #ffffff;
}

.product-overlay h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

.product-card:hover .product-desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

.product-card:hover .product-overlay h4 {
    transform: translateY(-4px);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.product-link span {
    transition: transform 0.3s ease;
}

.product-card:hover .product-link {
    color: var(--accent);
}

.product-card:hover .product-link span {
    transform: translateX(4px);
}

/* ========================================
   SERVICES
   ======================================== */

.services-preview {
    background: var(--bg-soft);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-image {
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 28px;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.service-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

/* ========================================
   PROCESS
   ======================================== */

.process-section {
    background: var(--bg);
    padding: 100px 0;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: var(--accent);
}

.process-image {
    position: relative;
    height: 180px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.process-card:hover .process-image img {
    transform: scale(1.08);
}

.step-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    border: 3px solid var(--surface);
    z-index: 2;
}

.process-body {
    padding: 32px 20px 24px;
    text-align: center;
}

.process-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.process-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   TEAM
   ======================================== */

.team-section {
    background: var(--bg-soft);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.04);
}

.team-info {
    padding: 28px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
}

.team-role {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 14px;
}

/* ========================================
   BRANDS
   ======================================== */

.brands-section {
    background: var(--bg);
    padding: 100px 0;
    overflow: hidden;
}

.brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

.brand-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    min-width: 200px;
    transition: var(--transition);
    flex-shrink: 0;
}

.brand-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .brands-section {
        padding: 72px 0;
    }

    .brand-item {
        min-width: 160px;
        height: 100px;
        padding: 16px;
    }
}

/* ========================================
   FAQ
   ======================================== */

.faq-section {
    background: var(--bg-soft);
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(201, 162, 39, 0.3);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    line-height: 1.5;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.12);
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: var(--primary-dark);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 72px 0;
    }

    .faq-question {
        padding: 20px 22px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 22px 20px;
    }

    .faq-answer {
        padding: 0 22px;
    }
}

/* ========================================
   CTA
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content .section-label {
    margin-bottom: 16px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-dark);
    color: #ffffff;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-brand p,
.footer-links ul li a,
.footer-contact p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.7;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-brand .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    transition: var(--transition);
}

.footer-brand .social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-soft);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 28px 0 32px;
    text-align: center;
    margin-top: 48px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        height: 420px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
        transform: translateY(-150%);
        transition: transform 0.35s ease;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .mega-menu {
        display: none;
    }

    .slide-copy {
        margin-left: 24px;
        max-width: 90%;
    }

    .slider-controls {
        margin-left: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 340px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu {
        min-width: 700px;
        padding: 24px 30px;
    }

    .mega-menu-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        width: min(100%, calc(100% - 32px));
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 40px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid,
    .services-grid,
    .stats-grid,
    .process-flow,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        height: 380px;
    }

    .overview-section,
    .about-preview,
    .products-preview,
    .services-preview,
    .process-section,
    .team-section {
        padding: 72px 0;
    }

    .cta-section {
        padding: 72px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero-video {
        object-position: 60% center;
    }

    .slide-copy {
        padding-top: 80px;
    }

    .stat-card {
        padding: 28px 20px;
    }

    .service-body {
        padding: 22px;
    }

    .team-info {
        padding: 22px;
    }
}
