/* ============================================
   ARTLINE POLYPLAST LLP — Modern Premium Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary-red: #C62828;
    --primary-blue: #0D2B6B;
    --accent-gold: #D4A843;
    --accent-cyan: #00C9FF;
    --dark-bg: #080e1f;
    --dark-card: #0f1a35;
    --light-bg: #f5f7fc;
    --text-color: #2d3748;
    --text-muted: #718096;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --grad-red: linear-gradient(135deg, #C62828 0%, #8B0000 100%);
    --grad-blue: linear-gradient(135deg, #0D2B6B 0%, #1a4299 100%);
    --grad-gold: linear-gradient(135deg, #D4A843 0%, #f0c060 100%);
    --grad-hero: linear-gradient(135deg, #080e1f 0%, #0d1f4a 50%, #1a0a0a 100%);
    --neon-red: rgba(198, 40, 40, 0.4);
    --neon-blue: rgba(13, 43, 107, 0.4);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.18);
    --shadow-glow-red: 0 0 30px rgba(198, 40, 40, 0.25);
    --shadow-glow-blue: 0 0 30px rgba(13, 43, 107, 0.3);
    --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --border-radius-lg: 24px;
    --border-radius-xl: 36px;
}

/* ——— Reset & Base ——— */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.15;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ——— Custom Scrollbar ——— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-red); border-radius: 10px; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0;
}

header.scrolled {
    background: rgba(8, 14, 31, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(198,40,40,0.6));
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    position: relative;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: var(--glass);
    border: 1px solid transparent;
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::before {
    opacity: 1;
    border-color: var(--glass-border);
}

.nav-cta {
    background: var(--grad-red) !important;
    color: #fff !important;
    padding: 0.55rem 1.4rem !important;
    box-shadow: var(--shadow-glow-red) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(198,40,40,0.4) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition-fast);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    padding: 0 1.5rem;
}

/* Animated mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(13,43,107,0.5) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 80% 70%, rgba(198,40,40,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 60% 20%, rgba(212,168,67,0.1) 0%, transparent 60%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0%   { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.05); }
}

/* Grid overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Orb animations */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(13,43,107,0.4) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(198,40,40,0.3) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
}

/* Eyebrow label */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    animation: fadeDown 1s cubic-bezier(0.16,1,0.3,1) both;
    backdrop-filter: blur(10px);
}

.hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.6); }
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-content h1 .line-red {
    background: linear-gradient(90deg, #ff6b6b, #C62828, #ff6b6b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.hero-content h1 .line-gold {
    background: linear-gradient(90deg, #D4A843, #f5d78e, #D4A843);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s 1s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeUp 1s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--grad-red);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 rgba(198,40,40,0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(198,40,40,0.45);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--glass);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 2s 1.5s both;
}

.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Floating icons in hero */
.floating-icon {
    position: absolute;
    color: rgba(255,255,255,0.06);
    z-index: 2;
    animation: floatIcon 8s ease-in-out infinite;
    pointer-events: none;
}

.icon-1 { font-size: 5rem; top: 12%; left: 8%;  animation-delay: 0s; }
.icon-2 { font-size: 3.5rem; top: 18%; right: 10%; animation-delay: -2s; }
.icon-3 { font-size: 6rem; bottom: 18%; left: 12%; animation-delay: -4s; }
.icon-4 { font-size: 4rem; bottom: 12%; right: 8%; animation-delay: -1s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%       { transform: translateY(-20px) rotate(5deg); }
    66%       { transform: translateY(10px) rotate(-3deg); }
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */

section {
    padding: 6rem 1.5rem;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(198,40,40,0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(198,40,40,0.15);
}

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

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.section-title h2 .accent {
    color: var(--primary-red);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.title-bar {
    width: 50px;
    height: 4px;
    background: var(--grad-red);
    border-radius: 4px;
    margin: 1rem auto 0;
}

/* ============================================
   STATS TICKER STRIP
   ============================================ */

.stats-strip {
    background: var(--dark-bg);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.stats-strip::before,
.stats-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}

.stats-strip::before { left: 0; background: linear-gradient(to right, var(--dark-bg), transparent); }
.stats-strip::after  { right: 0; background: linear-gradient(to left, var(--dark-bg), transparent); }

.stats-ticker {
    display: flex;
    gap: 4rem;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.stats-ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.stats-ticker-item strong {
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.stats-ticker-divider {
    color: rgba(255,255,255,0.15);
    font-size: 1.2rem;
}

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

/* ============================================
   STATS GRID SECTION
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1a35 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-red);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #C62828);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

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

.trending-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.trending-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(198,40,40,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

.product-card-img {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-img-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 1.2rem; left: 1.2rem;
    background: var(--accent-gold);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212,168,67,0.4);
}

.product-card-body {
    padding: 2rem;
}

.product-card-body h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.6rem;
}

.product-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.product-link:hover {
    gap: 0.8rem;
    color: var(--primary-blue);
}

/* Brand USP card */
.brand-usp-card {
    background: linear-gradient(145deg, #0D2B6B 0%, #1a4299 40%, #0D2B6B 100%);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-blue);
    transition: var(--transition-smooth);
}

.brand-usp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(13,43,107,0.4);
}

.brand-usp-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.brand-usp-card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(198,40,40,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.brand-usp-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
}

.usp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
}

.usp-list li .usp-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--accent-gold);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    color: var(--primary-blue);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.btn-white:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,67,0.35);
}

/* ============================================
   FEATURES / CORE EXPERTISE
   ============================================ */

.features-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(198,40,40,0.15);
}

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

.feature-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(13,43,107,0.08) 0%, rgba(198,40,40,0.05) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(13,43,107,0.08);
}

.feature-card:hover .feature-card-icon {
    background: var(--grad-blue);
    border-color: transparent;
}

.feature-card:hover .feature-card-icon i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.feature-card i {
    background: var(--grad-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-fast);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   INDUSTRY GRID
   ============================================ */

.industry-section {
    background: var(--light-bg);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-item {
    background: var(--white);
    padding: 1.6rem 1.8rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.industry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-blue);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 16px;
}

.industry-item:hover::after { opacity: 1; }

.industry-item:hover {
    transform: translateX(6px) translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: transparent;
}

.industry-item .ind-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(13,43,107,0.1) 0%, rgba(198,40,40,0.06) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    z-index: 1;
    transition: var(--transition-smooth);
    border: 1px solid rgba(13,43,107,0.08);
}

.industry-item:hover .ind-icon {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.2);
}

.industry-item i {
    color: var(--primary-red);
    transition: var(--transition-fast);
}

.industry-item:hover i { color: #fff; }

.industry-item h4 {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    z-index: 1;
    transition: var(--transition-fast);
}

.industry-item:hover h4 { color: #fff; }

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

footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.75);
    padding: 5rem 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198,40,40,0.5), rgba(13,43,107,0.5), transparent);
}

/* Strict 3-column layout */
.footer-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.6fr;
    gap: 3.5rem;
    align-items: start;
}

/* ── Column 1: Brand ── */
.footer-brand img {
    height: 44px;
    filter: brightness(0) invert(1);
    margin-bottom: 0.8rem;
    display: block;
}

.footer-company-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.footer-tagline {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 280px;
}

/* ── Column 2: Navigation ── */
.footer-nav h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.4rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.65rem;
}

.footer-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-nav a i {
    font-size: 0.6rem;
    color: var(--primary-red);
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: #fff;
    gap: 0.75rem;
}

/* ── Column 3: Contact ── */
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.4rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(198,40,40,0.15);
    border: 1px solid rgba(198,40,40,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--primary-red);
    margin-top: 0.1rem;
}

.footer-contact-item span:last-child {
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-contact-item a:hover { color: #fff; }

/* ── Footer Bottom ── */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.up    { transform: translateY(50px); }
.reveal.left  { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }
.reveal.scale { transform: scale(0.9); }

.reveal.active {
    opacity: 1;
    transform: translate(0,0) scale(1);
}

/* ============================================
   GENERAL ANIMATION KEYFRAMES
   ============================================ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================
   CTA BUTTON (legacy compat)
   ============================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--grad-red);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(198,40,40,0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198,40,40,0.4);
}

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

@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    section { padding: 4rem 1.2rem; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(8,14,31,0.97);
        backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.77,0,0.175,1);
        z-index: 1001;
    }

    .nav-links.nav-active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .nav-links.nav-active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.nav-active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.nav-active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.nav-active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.nav-active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-links a {
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
    }

    .brand-usp-card { padding: 2.5rem 2rem; }
    .brand-usp-card h3 { font-size: 1.8rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-item h3 { font-size: 2.5rem; }

    .industry-grid { grid-template-columns: 1fr 1fr; }

    .section-title h2 { font-size: 2rem; }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .floating-icon { display: none; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .industry-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
}

/* ============================================
   WHATSAPP STICKY BUTTON
   ============================================ */

.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-trigger {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.whatsapp-trigger:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-trigger.active {
    transform: rotate(360deg);
    background: var(--primary-red);
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.4);
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-red);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.whatsapp-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.whatsapp-menu-header {
    background: var(--grad-blue);
    padding: 1.5rem;
    color: #fff;
}

.whatsapp-menu-header h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    color: #fff;
}

.whatsapp-menu-header p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.whatsapp-options {
    padding: 0.8rem;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition-fast);
    text-decoration: none;
    color: var(--text-color);
}

.whatsapp-option:hover {
    background: rgba(13, 43, 107, 0.05);
    transform: translateX(-5px);
}

.option-avatar {
    width: 44px;
    height: 44px;
    background: var(--grad-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.option-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.option-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.option-number {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.whatsapp-option i {
    color: #25D366;
    font-size: 1.4rem;
}

@media (max-width: 480px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-menu {
        width: 280px;
        bottom: 70px;
    }
}