/* ============================================
   ROPLANTA v3 - Private Label Website
   Enhanced with animations & interactions
   ============================================ */

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

:root {
    --dark: #080c14;
    --dark-2: #0f1520;
    --dark-3: #161d2e;
    --navy: #0b1d3a;
    --blue: #0ea5e9;
    --blue-dark: #0284c7;
    --blue-light: #7dd3fc;
    --indigo: #6366f1;
    --indigo-light: #a5b4fc;
    --green: #22c55e;
    --text: #1e293b;
    --text-2: #475569;
    --text-3: #94a3b8;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

em { font-family: 'Playfair Display', serif; font-style: italic; }

::selection { background: rgba(14,165,233,0.2); }

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px; z-index: 9999;
    background: transparent;
}
.scroll-progress-bar {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--blue), var(--indigo), var(--blue-light));
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(14,165,233,0.5);
}

/* --- Animations --- */
.anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: 0.15s; }
.anim-d2 { transition-delay: 0.3s; }
.anim-d3 { transition-delay: 0.45s; }
.anim-d4 { transition-delay: 0.6s; }

/* --- Text Reveal Animation --- */
.text-reveal .word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-reveal.words-visible .word-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* --- Image Reveal with clip-path --- */
.img-reveal img {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-reveal.revealed img {
    clip-path: inset(0 0 0 0);
}

/* --- Animated Gradient Text --- */
.gradient-animate {
    background: linear-gradient(90deg, var(--blue-light), var(--indigo-light), var(--blue-light), var(--indigo-light));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed; top: 3px; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-mark {
    width: 36px; height: 36px;
    object-fit: contain;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--white);
    transition: color 0.4s ease;
}
.navbar.scrolled .logo-text { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
    font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}
.nav-link:hover { color: white; }
.navbar.scrolled .nav-link { color: var(--text-2); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    color: white !important;
    padding: 8px 22px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.nav-cta:hover { opacity: 0.9; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.nav-toggle span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s ease; }
.navbar.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(8,12,20,0.92) 0%, rgba(11,29,58,0.85) 50%, rgba(8,12,20,0.75) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute; width: 2px; height: 2px;
    background: rgba(255,255,255,0.4); border-radius: 50%;
    animation: float linear infinite;
}
@keyframes float {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 140px 0 120px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 28px;
}
.badge-pulse {
    width: 8px; height: 8px; background: var(--green);
    border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity:0.7; box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700; line-height: 1.05;
    color: white; margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.hero-accent {
    background: linear-gradient(135deg, var(--blue-light), var(--indigo-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.55);
    max-width: 520px; line-height: 1.8; font-weight: 300;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 34px; border-radius: 100px;
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer; border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    text-decoration: none;
}
.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-glow {
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    color: white;
    box-shadow: 0 0 20px rgba(14,165,233,0.3), 0 0 60px rgba(99,102,241,0.1);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(14,165,233,0.5), 0 0 80px rgba(99,102,241,0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent; color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

.btn-full { width: 100%; justify-content: center; }

/* Floating Cards */
.hero-floating { position: absolute; z-index: 3; right: 8%; top: 50%; transform: translateY(-50%); }
.float-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg); padding: 24px 28px;
    animation: float-gentle 6s ease-in-out infinite;
}
.float-card-1 { margin-bottom: 20px; }
.float-card-2 { margin-left: 40px; animation-delay: -3s; }
@keyframes float-gentle {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.float-number {
    display: block;
    font-size: 2rem; font-weight: 900; color: white;
    letter-spacing: -0.03em; line-height: 1;
}
.float-label {
    font-size: 0.75rem; color: rgba(255,255,255,0.5);
    line-height: 1.4; margin-top: 4px; display: block;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%); z-index: 2;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
    width: 3px; height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 3px;
    animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================
   MARQUEE BANNER
   ============================================ */
.marquee-section {
    background: var(--navy);
    padding: 18px 0; overflow: hidden;
}
.marquee-track { width: 100%; overflow: hidden; }
.marquee-content {
    display: flex; align-items: center; gap: 32px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-content span {
    font-size: 0.85rem; font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 0.1em;
}
.marquee-dot {
    width: 5px; height: 5px;
    background: var(--blue);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}
.stats-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 48px;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat-label {
    display: block;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-3);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.stat-divider {
    width: 1px; height: 60px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section { padding: 120px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    color: var(--blue);
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 16px;
    background: rgba(14,165,233,0.08);
    padding: 6px 16px; border-radius: 100px;
}
.section-tag-light {
    background: rgba(255,255,255,0.1);
    color: var(--blue-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.02em;
}

/* ============================================
   SERVICES - SPLIT SCREEN
   ============================================ */
.services { background: var(--white); }

.service-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; margin-bottom: 2px; min-height: 500px;
    border-radius: var(--radius-xl); overflow: hidden;
    background: var(--off-white);
}
.service-block-reverse .service-image { order: 2; }
.service-block-reverse .service-info { order: 1; }

.service-image {
    position: relative; overflow: hidden;
    min-height: 400px;
}
.service-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-block:hover .service-image img { transform: scale(1.05); }
.service-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(8,12,20,0.4) 100%);
}
.service-image-tag {
    position: absolute; top: 24px; left: 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 6px 16px; border-radius: 100px;
    z-index: 2;
}

.service-info {
    padding: 60px 56px;
    display: flex; flex-direction: column; justify-content: center;
}
.service-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--navy); margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.service-info > p {
    font-size: 1rem; color: var(--text-2);
    line-height: 1.7; margin-bottom: 28px;
}

.service-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.service-list li {
    padding-left: 20px;
    border-left: 2px solid var(--blue);
}
.service-list li strong {
    display: block; font-size: 0.95rem;
    color: var(--navy); margin-bottom: 2px;
}
.service-list li span {
    font-size: 0.85rem; color: var(--text-3);
    line-height: 1.5;
}

/* ============================================
   PRODUCT TYPES GALLERY
   ============================================ */
.products-gallery {
    background: var(--off-white);
    padding: 120px 0;
}
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.prod-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.prod-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(14,165,233,0.03) 0%, rgba(99,102,241,0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.prod-card:hover::before { opacity: 1; }
.prod-card:hover {
    border-color: rgba(14,165,233,0.2);
    box-shadow: 0 20px 60px rgba(14,165,233,0.1), 0 0 0 1px rgba(14,165,233,0.05);
}
.prod-icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(99,102,241,0.1));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    transition: all 0.4s ease;
    position: relative;
}
.prod-card:hover .prod-icon {
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    color: white;
    transform: scale(1.1);
}
.prod-icon svg { width: 26px; height: 26px; }
.prod-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
    position: relative;
}
.prod-card p {
    font-size: 0.85rem; color: var(--text-3);
    line-height: 1.6;
    position: relative;
}

/* ============================================
   PRIVATE LABEL - IMMERSIVE
   ============================================ */
.private-label {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}
.pl-bg { position: absolute; inset: 0; }
.pl-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}
.pl-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,12,20,0.85) 0%, rgba(11,29,58,0.7) 100%);
}
.pl-content { position: relative; z-index: 2; }

.pl-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; color: white;
    line-height: 1.15; margin-bottom: 60px;
    max-width: 600px;
    letter-spacing: -0.02em;
}
.pl-title em { color: var(--blue-light); }
/* Make text-reveal words white in PL section */
.pl-title .word-reveal { color: white; }

.pl-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pl-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.pl-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(14,165,233,0.3);
    transform: translateY(-4px);
}
.pl-card-number {
    font-size: 3rem; font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; margin-bottom: 16px;
    letter-spacing: -0.05em;
}
.pl-card h4 {
    font-size: 1.05rem; font-weight: 700;
    color: white; margin-bottom: 10px;
}
.pl-card p {
    font-size: 0.875rem; color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ============================================
   YOUR BRAND - STEPS
   ============================================ */
.your-brand { background: var(--white); }

.brand-steps {
    display: flex; flex-direction: column;
    gap: 4px;
}
.brand-step {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 400px; border-radius: var(--radius-xl);
    overflow: hidden; background: var(--off-white);
}
.brand-step-reverse .step-visual { order: 2; }
.brand-step-reverse .step-info { order: 1; }

.step-visual {
    position: relative; overflow: hidden;
}
.step-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-step:hover .step-visual img { transform: scale(1.05); }
.step-num {
    position: absolute; top: 24px; left: 24px;
    font-size: 5rem; font-weight: 900;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.05em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    z-index: 2;
}

.step-info {
    padding: 56px 56px;
    display: flex; flex-direction: column; justify-content: center;
}
.step-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem; font-weight: 700;
    color: var(--navy); margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.step-info p {
    font-size: 1rem; color: var(--text-2);
    line-height: 1.8;
}

/* ============================================
   IMPORT & CONFORMITATE
   ============================================ */
.import-section {
    background: var(--off-white);
    padding: 0;
}
.import-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 700px;
}
.import-image {
    position: relative; overflow: hidden;
}
.import-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.import-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,29,58,0.3) 0%, transparent 100%);
    z-index: 1;
}

.import-content {
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
}
.import-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--navy);
    line-height: 1.2; margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.import-title em { color: var(--blue); }
.import-text {
    font-size: 1rem; color: var(--text-2);
    line-height: 1.8; margin-bottom: 32px;
}

.import-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.import-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: white;
    border-radius: var(--radius); border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}
.import-feature:hover {
    border-color: rgba(14,165,233,0.2);
    box-shadow: 0 4px 20px rgba(14,165,233,0.08);
}
.import-feature-icon {
    flex-shrink: 0; width: 42px; height: 42px;
    background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(99,102,241,0.1));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
}
.import-feature-icon svg { width: 20px; height: 20px; }
.import-feature strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 2px; }
.import-feature p { font-size: 0.825rem; color: var(--text-3); line-height: 1.5; margin: 0; }

/* ============================================
   CERTIFICATIONS - STRIP
   ============================================ */
.certifications {
    background: var(--white);
    padding: 80px 0;
}
.cert-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 48px;
    padding: 48px 56px;
    background: var(--navy);
    border-radius: var(--radius-xl);
    position: relative; overflow: hidden;
}
.cert-strip::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14,165,233,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(99,102,241,0.08) 0%, transparent 50%);
}
.cert-item {
    display: flex; align-items: center; gap: 20px;
    position: relative; z-index: 1;
}
.cert-badge {
    font-size: 1.25rem; font-weight: 900;
    color: var(--blue-light);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.cert-item span {
    font-size: 0.825rem; color: rgba(255,255,255,0.5);
    max-width: 200px; line-height: 1.5;
}
.cert-divider {
    width: 1px; height: 48px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners {
    background: var(--off-white);
    padding-bottom: 100px;
}
.partners-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 24px;
}
.partners-track::-webkit-scrollbar { display: none; }

.partners-scroll {
    display: flex; justify-content: center;
    gap: 24px;
    max-width: 1200px; margin: 0 auto;
}
.partner-card {
    flex-shrink: 0;
    width: 220px; height: 120px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    padding: 24px 32px;
    transition: all 0.4s ease;
}
.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.partner-card img {
    max-height: 55px; max-width: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.4s ease;
}
.partner-card:hover img { filter: grayscale(0%); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--white); padding: 120px 0; }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--navy);
    line-height: 1.2; margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.contact-title em { color: var(--blue); }
.contact-text {
    font-size: 1rem; color: var(--text-2);
    line-height: 1.8; margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--radius);
    transition: background 0.3s ease;
}
.contact-detail:hover { background: var(--gray-50); }
.contact-detail svg {
    width: 20px; height: 20px; color: var(--blue);
    flex-shrink: 0;
}
.contact-detail span { font-size: 0.9rem; color: var(--text-2); font-weight: 500; }

/* Form */
.contact-form {
    display: flex; flex-direction: column; gap: 20px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group label {
    display: block;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--navy); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; color: var(--text);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.contact-form .btn { margin-top: 4px; padding: 16px 34px; }

/* Form Success State */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
}
.form-success-icon {
    color: #22c55e;
    margin-bottom: 20px;
}
.form-success-icon svg {
    width: 64px; height: 64px;
}
.form-success h3 {
    font-size: 1.5rem; font-weight: 700;
    color: var(--navy); margin-bottom: 10px;
}
.form-success p {
    color: var(--text-2); font-size: 1rem;
    max-width: 360px; margin: 0 auto;
    line-height: 1.6;
}

/* Form Error State */
.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-top: 12px;
}
.form-error p {
    color: #dc2626;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy); padding: 56px 0 32px;
}
.footer-container {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px; margin-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer .logo-text { color: white; }
.footer-left p { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 340px; line-height: 1.6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem; color: rgba(255,255,255,0.25);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-floating { display: none; }
    .service-block, .brand-step { grid-template-columns: 1fr; }
    .service-block-reverse .service-image,
    .brand-step-reverse .step-visual { order: 0; }
    .service-block-reverse .service-info,
    .brand-step-reverse .step-info { order: 0; }
    .service-image, .step-visual { min-height: 300px; }
    .pl-grid { grid-template-columns: repeat(2, 1fr); }
    .import-wrapper { grid-template-columns: 1fr; }
    .import-image { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .cert-strip { flex-direction: column; gap: 24px; padding: 36px; }
    .cert-divider { width: 80px; height: 1px; }
    .cert-item { flex-direction: column; text-align: center; gap: 8px; }
    .cert-item span { max-width: none; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

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

    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(11,29,58,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center;
        align-items: center; gap: 20px;
        transition: right 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .nav-links .nav-link { font-size: 1.2rem; color: rgba(255,255,255,0.8); }
    .nav-toggle { display: flex; }
    .nav-toggle.active span { background: white !important; }

    .hero-content { padding: 120px 0 100px; }

    .service-info { padding: 36px 28px; }
    .step-info { padding: 36px 28px; }
    .import-content { padding: 48px 24px; }

    .pl-grid { grid-template-columns: 1fr; }
    .private-label { padding: 100px 0; }

    .partners-scroll { justify-content: flex-start; padding: 0 24px; }
    .partner-card { width: calc(50vw - 36px); min-width: 160px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }

    .footer-container { flex-direction: column; }
    .footer-links { flex-wrap: wrap; gap: 16px; }

    .hero-scroll { display: none; }

    .marquee-content span { font-size: 0.75rem; }

    .stats-grid { flex-wrap: wrap; gap: 24px; }
    .stat-divider { display: none; }
    .stat-item { flex: 0 0 calc(50% - 12px); }

    .products-gallery { padding: 80px 0; }

    /* Disable clip-path reveal on mobile for performance */
    .img-reveal img { clip-path: none; }
    .img-reveal.revealed img { clip-path: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .btn { padding: 14px 28px; font-size: 0.9rem; }
    .service-image, .step-visual { min-height: 240px; }
    .partner-card { width: calc(50vw - 28px); height: 90px; padding: 16px; }
    .partner-card img { max-height: 40px; }
    .prod-grid { grid-template-columns: 1fr; }
    .prod-card { padding: 28px 24px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}
