/* ============================================
   TRAILFIT - Premium Sport/Outdoor Website
   Dark Theme | Lime Green Accent #8BC53F
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent { color: #8BC53F; }

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8BC53F;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1.05;
    margin-bottom: 60px;
}

.section-title .accent {
    background: linear-gradient(135deg, #8BC53F, #5da828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #8BC53F, #5da828);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 197, 63, .35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: #8BC53F;
    border-color: #8BC53F;
    color: #fff;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.5);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    width: auto;
    transition: height .3s ease;
}

.header.scrolled .logo img {
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8BC53F;
    transition: width .3s ease;
}

.nav-link:hover {
    color: #8BC53F;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta-header {
    padding: 10px 28px;
    background: linear-gradient(135deg, #8BC53F, #5da828);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all .3s ease;
}

.btn-cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 197, 63, .4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all .3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: scale(1.1);
}

/* Hero Video Background */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180vw;
    height: 180vh;
    min-width: 180vw;
    min-height: 180vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .8s ease;
}

.hero-video-wrapper iframe.is-ready { opacity: 1; }

/* Image d'affiche : elle porte le LCP à la place de l'iframe YouTube */
.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.7) 60%, rgba(10,10,10,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 10vw, 120px);
    letter-spacing: 6px;
    line-height: .95;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title .accent {
    background: linear-gradient(135deg, #8BC53F, #5da828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,.7);
    margin-bottom: 48px;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    border-right: 2px solid rgba(139, 197, 63, .7);
    border-bottom: 2px solid rgba(139, 197, 63, .7);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(12px); }
    60% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   CONCEPT / STATS
   ============================================ */
.section-concept {
    background: #111;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8BC53F, transparent);
    opacity: 0;
    transition: opacity .4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 197, 63, .2);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 24px;
    color: #8BC53F;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number, .stat-number-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: #8BC53F;
    line-height: 1;
    display: inline;
}

.stat-number-text sup {
    font-size: 30px;
    vertical-align: super;
}

.stat-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #8BC53F;
    display: inline;
    line-height: 1;
}

.stat-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 16px;
}

.stat-desc {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
}

/* ============================================
   CONCEPT LAYOUT (text + kpi)
   ============================================ */
/* Concept header centré */
.concept-header {
    text-align: center;
    margin-bottom: 56px;
}

/* Image gauche + texte droite */
.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 0;
}

.concept-img {
    border-radius: 16px;
    overflow: hidden;
}

.concept-img img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 16px;
}

.concept-desc {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.concept-desc strong {
    color: #fff;
}

.concept-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}

.concept-product {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    text-align: left;
}

.concept-product svg {
    min-width: 24px;
    margin-top: 2px;
}

.concept-product strong {
    color: #fff;
}

/* KPI Band - section séparée */
.section-kpi {
    padding: 48px 0;
    background: #0f0f0f;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.kpi-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.kpi-item {
    flex: 1;
    text-align: center;
    padding: 16px 32px;
}

.kpi-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.1);
}

.kpi-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #8BC53F;
    line-height: 1;
    display: inline;
}

.kpi-number-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: #8BC53F;
    line-height: 1;
}

.kpi-number-text sup {
    font-size: 18px;
}

.kpi-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #8BC53F;
    display: inline;
}

.kpi-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 4px;
}

.kpi-card p {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    margin-top: 4px;
}

/* ============================================
   SOLUTIONS / PRODUCTS
   ============================================ */
.section-solutions {
    background: #0f0f0f;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 197, 63, .2);
    box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 16px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #8BC53F, #5da828);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.badge-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.badge-aventure {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.product-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: #8BC53F;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.section-title-row .section-title {
    margin-bottom: 0;
}

.shipping-badge {
    font-size: 14px;
    font-weight: 700;
    color: #8BC53F;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(139,197,63,.1);
    border: 1px solid rgba(139,197,63,.25);
    padding: 10px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.product-features {
    margin-bottom: 24px;
    flex: 1;
}

.product-features li {
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #8BC53F;
    border-radius: 50%;
    transform: translateY(-50%);
}

.btn-product {
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 13px;
    width: 100%;
}

/* ============================================
   CONCEPTS GRID
   ============================================ */
.section-univers {
    background: #0a0a0a;
    position: relative;
    text-align: center;
}

.section-univers .section-title,
.section-univers .section-label {
    text-align: center;
}

.section-univers .univers-card {
    text-align: left;
}

.section-univers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8BC53F, transparent);
}

.univers-intro {
    text-align: center;
    color: rgba(255,255,255,.5);
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin: -32px auto 56px;
}

.univers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.univers-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all .4s ease;
}

.univers-card:hover {
    border-color: rgba(139,197,63,.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.4);
}

.univers-card-visual {
    padding: 32px 32px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.univers-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(139,197,63,.1);
    border: 1px solid rgba(139,197,63,.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8BC53F;
}

.univers-card:hover .univers-card-icon {
    background: rgba(139,197,63,.2);
    border-color: rgba(139,197,63,.4);
}

.univers-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(255,255,255,.06);
    line-height: 1;
}

.univers-card-content {
    padding: 28px 32px 32px;
}

.univers-card-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.univers-card-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #8BC53F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.univers-card-desc {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.univers-card-usages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.usage-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139,197,63,.08);
    border: 1px solid rgba(139,197,63,.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #8BC53F;
    letter-spacing: .5px;
}

.univers-card-when {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.when-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

.when-item svg {
    color: rgba(139,197,63,.6);
    min-width: 16px;
    margin-top: 2px;
}

.univers-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #8BC53F;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s;
}

.univers-card-link:hover {
    gap: 14px;
    color: #9bd44f;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.section-blog {
    background: #111;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 197, 63, .2);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: rgba(139, 197, 63, .9);
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #8BC53F;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: #a0d84e;
}

.blog-link svg {
    transition: transform .3s ease;
}

.blog-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   STATIONS
   ============================================ */
.section-stations {
    background: #0a0a0a;
    padding-top: 0;
}

.station-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.station-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.station-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.3) 0%, rgba(10,10,10,.9) 80%, #0a0a0a 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.station-desc {
    max-width: 700px;
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 60px 0;
}

.station-card {
    background: rgba(10,10,10,.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 32px;
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.station-card:hover {
    border-color: rgba(139, 197, 63, .25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.station-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.station-card-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1;
}

.station-dept {
    font-size: 12px;
    color: #8BC53F;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.station-pin {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8BC53F, #5da828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.station-pin svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}

.station-location-text {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.station-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.station-tag {
    padding: 4px 12px;
    background: rgba(139, 197, 63, .1);
    border: 1px solid rgba(139, 197, 63, .2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #8BC53F;
    letter-spacing: .5px;
}

.station-desc-text {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.station-card .btn-outline {
    align-self: flex-start;
}

/* ============================================
   PARTNERS
   ============================================ */
.section-partners {
    background: #111;
    text-align: center;
    overflow: hidden;
}

.partners-track {
    overflow: hidden;
    margin-top: 20px;
}

.partners-slide {
    display: flex;
    gap: 60px;
    animation: partnerSlide 20s linear infinite;
    width: max-content;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.partner-item img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: .5;
    transition: all .4s ease;
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.partner-item span {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes partnerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(139, 197, 63, .1);
    border: 1px solid rgba(139, 197, 63, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: #8BC53F;
}

.contact-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.contact-item a, .contact-item p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

.contact-item a:hover {
    color: #8BC53F;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all .3s ease;
}

.social-link:hover {
    background: #8BC53F;
    border-color: #8BC53F;
    transform: translateY(-3px);
}

.social-link svg {
    width: 100%;
    height: 100%;
}

/* Form */
.contact-form {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    margin-top: -100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all .3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8BC53F;
    box-shadow: 0 0 0 3px rgba(139, 197, 63, .1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff50' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 36px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #8BC53F;
}

.footer-links a, .footer-links p {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.4);
    margin-bottom: 10px;
    line-height: 1.6;
    transition: color .3s ease;
}

.footer-links a:hover {
    color: #8BC53F;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.3);
}

.footer-bottom a {
    color: #8BC53F;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .btn-cta-header { display: none; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(15, 15, 15, .98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 40px;
        transition: right .4s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,.05);
        width: 100%;
    }

    .section-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .section { padding: 70px 0; }

    .concept-content { grid-template-columns: 1fr; gap: 32px; }
    .concept-img img { min-height: 250px; }
    .kpi-row { flex-wrap: wrap; }
    .kpi-item { flex: 0 0 50%; padding: 16px; }
    .kpi-divider { display: none; }
    .stats-grid,
    .blog-grid,
    .univers-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stations-grid {
        grid-template-columns: 1fr;
    }

    .station-hero { height: 350px; }

    .hero-title {
        font-size: clamp(42px, 9vw, 80px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .stat-number, .stat-number-text {
        font-size: 60px;
    }

    .product-price {
        font-size: 36px;
    }
}