/* ========================================
   TALINE GROUP — style.css
   Bold Industrial Energy Drink Aesthetic
   ======================================== */

/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:       #0A84FF;
    --red-dark:  #0066CC;
    --red-glow:  rgba(10,132,255,0.35);
    --black:     #080808;
    --dark:      #111111;
    --dark2:     #1a1a1a;
    --dark3:     #232323;
    --white:     #f5f5f5;
    --grey:      #888;
    --grey-light:#ccc;
    --blue-acc:  #1ab4e8;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-text: 'Inter', sans-serif;
    --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    --radius: 4px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 { font-family: var(--font-head); text-transform: uppercase; line-height: 1.05; letter-spacing: 0.02em; }
p { font-family: var(--font-text); font-weight: 300; }
a { text-decoration: none; color: inherit; }

/* === NAVBAR === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem;
    background: linear-gradient(180deg, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0) 100%);
    transition: background var(--transition), padding var(--transition);
}
.navbar.scrolled {
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10,132,255,0.2);
    padding: 0 2rem;
}
.nav-container {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex; align-items: baseline; gap: 2px;
    font-family: var(--font-head); font-weight: 900;
    font-size: 1.8rem; letter-spacing: 0.05em;
    text-transform: uppercase; line-height: 1;
    flex-direction: row; align-items: center; gap: 4px;
}
.logo-oz { color: var(--white); font-size: 1.8rem; font-weight: 900; }
.logo-man { color: var(--red); font-size: 1.8rem; font-weight: 900; }
.logo-sub {
    font-size: 0.6rem; color: var(--grey); letter-spacing: 0.15em;
    font-weight: 600; margin-left: 4px; align-self: center;
    border-left: 1px solid var(--red); padding-left: 6px;
}
.nav-links {
    display: flex; list-style: none; gap: 2.5rem; align-items: center;
}
.nav-links a {
    font-family: var(--font-head); font-weight: 600; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--grey-light); transition: color var(--transition);
    position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.nav-cta {
    background: var(--red); color: var(--white);
    padding: 8px 20px; border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--white); transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO SECTION === */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(10,132,255,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,180,232,0.05) 0%, transparent 60%),
        linear-gradient(135deg, #080808 0%, #141414 50%, #0a0a0a 100%);
}
.hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
        linear-gradient(var(--red) 1px, transparent 1px),
        linear-gradient(90deg, var(--red) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-container {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    padding-top: 80px;
}
.hero-content { }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em; color: var(--red);
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: ''; display: block; width: 40px; height: 2px; background: var(--red);
}
.hero-title {
    font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 900;
    line-height: 0.95; margin-bottom: 1.5rem;
    color: var(--white);
}
.hero-title .accent { color: var(--red); display: block; }
.hero-title .small-line {
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: var(--grey-light); font-weight: 300; letter-spacing: 0.15em;
}
.hero-desc {
    font-size: 1rem; color: var(--grey); max-width: 420px;
    margin-bottom: 2.5rem; line-height: 1.8; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 14px 32px; border-radius: var(--radius);
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
    background: var(--red); color: var(--white); border-color: var(--red);
    box-shadow: 0 0 30px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 40px var(--red-glow); }
.btn-outline {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { }
.stat-num {
    font-family: var(--font-head); font-size: 2.2rem; font-weight: 900;
    color: var(--red); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; }

.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
    height: 580px;
}
.hero-can-wrap {
    position: relative; z-index: 2;
    animation: floatCan 4s ease-in-out infinite;
}
@keyframes floatCan {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}
.hero-can-wrap img {
    height: 480px; width: auto; object-fit: contain;
    filter: drop-shadow(0 20px 80px rgba(10,132,255,0.5));
}
.hero-glow-ring {
    position: absolute; inset: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,132,255,0.12) 0%, transparent 70%);
    animation: pulseRing 3s ease-in-out infinite;
}
@keyframes pulseRing { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } }

.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
    font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--grey); animation: bounce 2s infinite;
}
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* === SECTION UTILS === */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em; color: var(--red);
    margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }
.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 900; color: var(--white);
    margin-bottom: 1.5rem;
}
.section-title span { color: var(--red); }
.section-desc { font-size: 1rem; color: var(--grey); max-width: 540px; line-height: 1.8; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-desc { margin: 0 auto; }

/* === MARQUEE / TICKER === */
.ticker-bar {
    background: var(--red); padding: 12px 0; overflow: hidden;
    position: relative; z-index: 1;
}
.ticker-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: ticker 20s linear infinite;
}
.ticker-item {
    padding: 0 3rem; font-family: var(--font-head); font-size: 0.9rem;
    font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: white; display: flex; align-items: center; gap: 1.5rem;
}
.ticker-item::after { content: '✦'; color: rgba(255,255,255,0.6); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === PRODUCTS SECTION === */
.products-section { background: var(--dark); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px; margin-top: 4rem;
}
.product-card {
    position: relative; overflow: hidden;
    background: var(--dark2);
    cursor: pointer; group: true;
    transition: transform var(--transition);
}
.product-card:hover { transform: scale(1.02); z-index: 2; }
.product-card-inner { position: relative; }
.product-img-wrap {
    height: 340px; overflow: hidden; position: relative;
    display: flex; align-items: center; justify-content: center;
    background: var(--dark3);
}
.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); filter: brightness(1); }
.product-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(8,8,8,0.9) 0%, transparent 60%);
}
.product-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    transform: translateY(20px); opacity: 0.7;
    transition: all var(--transition);
}
.product-card:hover .product-info { transform: translateY(0); opacity: 1; }
.product-tag {
    display: inline-block; background: var(--red); color: white;
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 10px; margin-bottom: 0.5rem;
}
.product-name {
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
    color: var(--white); text-transform: uppercase; line-height: 1.1;
}
.product-sub { font-family: var(--font-text); font-size: 0.8rem; color: var(--grey); margin-top: 4px; }

/* Featured large card */
.product-card.featured .product-img-wrap { height: 480px; }

/* === ABOUT SECTION (homepage snippet) === */
.about-home {
    background: var(--black);
}
.about-home-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
    margin-top: 3rem;
}
.about-img-stack {
    position: relative; height: 500px;
}
.about-img-main, .about-img-accent {
    position: absolute; border-radius: var(--radius);
    object-fit: cover; object-position: center;
}
.about-img-main {
    width: 75%; height: 85%; top: 0; left: 0;
    filter: brightness(0.85);
}
.about-img-accent {
    width: 55%; height: 55%; bottom: 0; right: 0;
    border: 3px solid var(--red);
    filter: brightness(0.9);
}
.about-badge {
    position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%);
    background: var(--red); padding: 1.5rem;
    display: flex; flex-direction: column; align-items: center;
    font-family: var(--font-head);
}
.about-badge-num { font-size: 2rem; font-weight: 900; color: white; line-height: 1; }
.about-badge-text { font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); text-transform: uppercase; }
.about-features { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
    width: 40px; height: 40px; background: rgba(10,132,255,0.1);
    border: 1px solid rgba(10,132,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.feature-text h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.feature-text p { font-size: 0.8rem; color: var(--grey); line-height: 1.5; }

/* === FULL ABOUT PAGE === */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 30% 50%, rgba(10,132,255,0.08) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-title { font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; color: var(--white); }
.page-title span { color: var(--red); }
.page-breadcrumb {
    font-family: var(--font-head); font-size: 0.8rem; color: var(--grey);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: var(--red); }
.page-breadcrumb a:hover { color: var(--white); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.value-card {
    background: var(--dark2); padding: 3rem 2rem;
    border-bottom: 3px solid transparent; transition: border-color var(--transition);
    position: relative; overflow: hidden;
}
.value-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0; transition: opacity var(--transition);
}
.value-card:hover { border-bottom-color: var(--red); }
.value-card:hover::before { opacity: 1; }
.value-num { font-family: var(--font-head); font-size: 5rem; font-weight: 900; color: rgba(10,132,255,0.08); line-height: 1; position: absolute; top: 1rem; right: 1.5rem; }
.value-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.value-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 1rem; }
.value-desc { font-family: var(--font-text); font-size: 0.9rem; color: var(--grey); line-height: 1.7; }

.team-section { padding: 80px 0; }
.cta-band {
    background: var(--red); padding: 80px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-band::before {
    content: 'OZMAN'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: var(--font-head); font-size: 18rem; font-weight: 900;
    color: rgba(0,0,0,0.1); white-space: nowrap; pointer-events: none;
}
.cta-band h2 { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900; color: white; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 1rem auto 2rem; max-width: 500px; font-family: var(--font-text); position: relative; z-index: 1; }
.btn-white { background: white; color: var(--red); border-color: white; }
.btn-white:hover { background: var(--dark); color: white; border-color: var(--dark); }

/* === PRODUCTS PAGE === */
.filter-bar {
    display: flex; gap: 1rem; flex-wrap: wrap; margin: 3rem 0 2rem;
}
.filter-btn {
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 20px; border: 1px solid rgba(255,255,255,0.15);
    background: transparent; color: var(--grey); cursor: pointer;
    border-radius: var(--radius); transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: white; }

.products-full-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.product-full-card {
    background: var(--dark2); border-radius: var(--radius);
    overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255,255,255,0.04);
}
.product-full-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(10,132,255,0.15); }
.product-full-img {
    height: 280px; overflow: hidden; position: relative; background: var(--dark3);
    display: flex; align-items: center; justify-content: center;
}
.product-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-full-card:hover .product-full-img img { transform: scale(1.06); }
.product-full-body { padding: 1.5rem; }
.product-full-category {
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--red);
    margin-bottom: 0.5rem;
}
.product-full-name {
    font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
    color: var(--white); text-transform: uppercase; line-height: 1.1;
    margin-bottom: 0.75rem;
}
.product-full-desc { font-family: var(--font-text); font-size: 0.85rem; color: var(--grey); line-height: 1.6; }
.product-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.p-badge {
    font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 2px;
    background: rgba(10,132,255,0.1); color: var(--red); border: 1px solid rgba(10,132,255,0.3);
}

/* === CONTACT PAGE === */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 4rem;
}
.contact-info h3 {
    font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
    color: var(--white); text-transform: uppercase; margin-bottom: 1rem;
}
.contact-info p { font-family: var(--font-text); color: var(--grey); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
    width: 44px; height: 44px; background: rgba(10,132,255,0.1);
    border: 1px solid rgba(10,132,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0; color: var(--red);
}
.c-text label { display: block; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
.c-text a, .c-text span { font-family: var(--font-text); font-size: 0.9rem; color: var(--grey-light); display: block; }
.c-text a:hover { color: var(--white); }

/* Contact Form */
.contact-form-wrap {
    background: var(--dark2); padding: 3rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
}
.form-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 0.5rem; }
.form-subtitle { font-family: var(--font-text); font-size: 0.9rem; color: var(--grey); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group label {
    display: block; font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-light);
    margin-bottom: 0.5rem;
}
.form-group label .required { color: var(--red); }
.form-control {
    width: 100%; padding: 14px 16px;
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.08);
    color: var(--white); font-family: var(--font-text); font-size: 0.95rem;
    border-radius: var(--radius); outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.2); }
.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(10,132,255,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 0.5rem; }
.btn-submit {
    width: 100%; justify-content: center;
    font-size: 1rem; padding: 16px;
}
.form-message {
    padding: 1rem 1.5rem; border-radius: var(--radius);
    margin-bottom: 1.5rem; font-family: var(--font-text); font-size: 0.9rem;
    display: none;
}
.form-message.success { background: rgba(0,200,80,0.1); border: 1px solid rgba(0,200,80,0.3); color: #4de88a; display: block; }
.form-message.error { background: rgba(10,132,255,0.1); border: 1px solid rgba(10,132,255,0.3); color: var(--red); display: block; }

/* === MAP === */
.map-section { padding: 0 0 80px; }
.map-container {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.map-container iframe { width: 100%; height: 420px; border: none; display: block; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }
.map-label {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: var(--red); padding: 8px 16px;
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: white;
}

/* === FOOTER === */
.footer {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 0; position: relative; overflow: hidden;
}
.footer-glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(10,132,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.footer-container {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 4rem;
}
.footer-logo { font-family: var(--font-head); font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; }
.footer-tagline {
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--red);
    margin-bottom: 1rem;
}
.footer-desc { font-family: var(--font-text); font-size: 0.85rem; color: var(--grey); line-height: 1.7; }
.footer-links h4, .footer-products h4, .footer-contact h4 {
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--white);
    margin-bottom: 1.5rem; padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links ul li a { font-family: var(--font-text); font-size: 0.9rem; color: var(--grey); transition: color var(--transition); }
.footer-links ul li a:hover { color: var(--red); }
.footer-products ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-products ul li { font-family: var(--font-text); font-size: 0.82rem; color: var(--grey); }
.footer-contact p { font-family: var(--font-text); font-size: 0.82rem; color: var(--grey); margin-bottom: 0.6rem; display: flex; gap: 0.5rem; }
.contact-icon { color: var(--red); }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
    font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 10px; border: 1px solid rgba(10,132,255,0.3);
    color: var(--red); border-radius: 2px;
}
.footer-bottom {
    max-width: 1280px; margin: 4rem auto 0; padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-family: var(--font-text); font-size: 0.8rem; color: var(--grey); }
.footer-powered { color: rgba(255,255,255,0.25) !important; }

/* === ANIMATIONS / SCROLL REVEALS === */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; height: 350px; }
    .hero-can-wrap img { height: 300px; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-home-grid { grid-template-columns: 1fr; }
    .about-img-stack { height: 300px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 72px; background: rgba(8,8,8,0.98); backdrop-filter: blur(20px); padding: 3rem 2rem; gap: 0; align-items: flex-start; }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links a { display: block; padding: 1rem 0; font-size: 1.5rem; }
    .nav-links a.nav-cta { background: none; padding: 1rem 0; }
    .nav-toggle { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .products-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
    .section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .btn { padding: 12px 20px; font-size: 0.8rem; }
}
