/* =============================================
   MOTIONHUBPEEK - GLOBAL STYLES
   Finnish Eco-Friendly Packaging Brand
   ============================================= */

/* --- CSS Variables --- */
:root {
    --primary: #0F3D2E;
    --primary-light: #1a5c44;
    --primary-dark: #0a2b1f;
    --secondary: #F5F5F0;
    --accent: #FFB703;
    --accent-dark: #e6a503;
    --neutral: #1E1E1E;
    --highlight: #8ECAE6;
    --white: #ffffff;
    --gray-50: #fafaf8;
    --gray-100: #f0f0ec;
    --gray-200: #e0e0da;
    --gray-300: #c8c8c0;
    --gray-400: #a0a098;
    --gray-500: #787870;
    --gray-600: #585850;
    --gray-700: #404040;
    --gray-800: #2a2a2a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--gray-600);
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

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

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-accent {
    background: var(--accent);
    color: var(--neutral);
}

.btn-accent:hover {
    background: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

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

.btn-white:hover {
    background: var(--secondary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8125rem;
}

.btn-full {
    width: 100%;
}

/* --- Section Styling --- */
.section {
    padding: 96px 0;
}

.bg-cream {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--gray-100) 100%);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(15, 61, 46, 0.08);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.footer .logo-text {
    color: var(--secondary);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(15, 61, 46, 0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #e8f0e8 50%, #dde8f0 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-xl);
    opacity: 0.08;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--highlight);
    top: 60%;
    right: 5%;
    animation-delay: -5s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 20%;
    right: 20%;
    animation-delay: -10s;
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--primary);
    bottom: 20%;
    left: 15%;
    animation-delay: -7s;
    border-radius: 50%;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: var(--highlight);
    bottom: -10%;
    left: 40%;
    animation-delay: -3s;
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(15, 61, 46, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-ctas .btn-outline-light {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-ctas .btn-outline-light:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: 40px;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    top: 40px;
    right: -20px;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-icon {
    font-size: 1.5rem;
}

.float-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral);
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--highlight);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.125rem;
    margin: 8px 0;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--neutral);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eco-badge {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   SPLIT LAYOUT (Sustainability, About)
   ============================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.split-image {
    position: relative;
}

.split-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.split-text {
    margin-bottom: 16px;
}

.split-content .section-tag {
    display: inline-block;
}

.split-content .section-title {
    margin-bottom: 24px;
}

.eco-features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.eco-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.eco-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 61, 46, 0.06);
    border-radius: var(--radius-md);
}

.eco-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.eco-feature p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--white) 100%);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-card {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

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

.process-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(15, 61, 46, 0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.process-icon {
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 60px;
    flex-shrink: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--secondary);
    border-radius: var(--radius-xl);
    text-align: center;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--neutral);
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(15, 61, 46, 0.04);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a5c44 50%, #14533c 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(142, 202, 230, 0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 183, 3, 0.08);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--neutral);
    padding: 64px 0 0;
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 320px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-400);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    font-size: 0.875rem;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--accent);
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
    padding: 140px 0 64px;
    background: linear-gradient(135deg, var(--secondary) 0%, #e8f0e8 100%);
    text-align: center;
}

.page-hero-small {
    padding: 140px 0 48px;
}

.page-hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.page-title {
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
}

/* =============================================
   GLASS CARD
   ============================================= */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
}

.card-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.glass-card h3 {
    margin-bottom: 16px;
}

.glass-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* =============================================
   FEATURE CARDS (About - Why Choose Us)
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* =============================================
   TEAM CARDS
   ============================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

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

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.team-card h4 {
    padding: 20px 16px 4px;
    font-size: 1rem;
}

.team-role {
    display: block;
    padding: 0 16px 20px;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* =============================================
   PRODUCTS FULL PAGE
   ============================================= */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-full-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.product-full-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-full-card .product-image-wrapper {
    aspect-ratio: auto;
    height: 100%;
    min-height: 280px;
}

.product-full-card .product-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 8px;
}

.product-specs span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    color: var(--gray-600);
}

.product-use {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.product-use strong {
    color: var(--neutral);
}

.product-full-card.hidden {
    display: none;
}

/* =============================================
   SUSTAINABILITY PAGE
   ============================================= */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.material-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.material-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.material-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 12px;
}

.material-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.material-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(15, 61, 46, 0.08);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cert-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

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

.cert-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cert-card h4 {
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Impact Stats */
.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.impact-stat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.impact-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 80px;
}

.impact-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    flex: 1;
}

.impact-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.impact-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--highlight));
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Goals Timeline */
.goals-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.goals-timeline::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.goal-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.goal-year {
    flex-shrink: 0;
    width: 96px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1;
}

.goal-content {
    flex: 1;
    padding: 4px 0;
}

.goal-content h4 {
    margin-bottom: 8px;
}

.goal-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper .glass-card {
    padding: 40px;
}

.contact-form-wrapper h3 {
    margin-bottom: 8px;
}

.contact-form-wrapper > .glass-card > p {
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--neutral);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-error {
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
}

.form-error.show {
    display: block;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
}

.contact-info-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
    padding-bottom: 80px;
}

.legal-body h2 {
    font-size: 1.375rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-size: 1.125rem;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-body p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.legal-body ul {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.legal-body li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.875rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-table th {
    background: var(--secondary);
    font-weight: 600;
    color: var(--neutral);
}

.cookie-table td {
    color: var(--gray-600);
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        height: 360px;
    }

    .hero-float-card.card-1 {
        left: 20px;
    }

    .hero-float-card.card-2 {
        right: 20px;
    }

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

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

    .process-grid {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .process-connector {
        display: none;
    }

    .process-card {
        max-width: 220px;
    }

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

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

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

    .products-full-grid {
        grid-template-columns: 1fr;
    }

    .product-full-card {
        grid-template-columns: 1fr 1.5fr;
    }

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

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.125rem;
        padding: 12px 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-image {
        height: 280px;
    }

    .hero-float-card.card-1 {
        left: 10px;
        bottom: 20px;
    }

    .hero-float-card.card-2 {
        right: 10px;
        top: 20px;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .product-full-card {
        grid-template-columns: 1fr;
    }

    .product-full-card .product-image-wrapper {
        min-height: 200px;
        aspect-ratio: 16/10;
    }

    .process-card {
        max-width: 100%;
        flex: auto;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .glass-card {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .split-img {
        height: 320px;
    }

    .goals-timeline::before {
        left: 47px;
    }

    .goal-item {
        gap: 20px;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        padding: 120px 0 48px;
    }

    .cta-banner {
        padding: 60px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-float-card {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .header,
    .cookie-banner,
    .cta-banner,
    .hero-bg {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero {
        padding-top: 20px;
    }
}