/* Variables CSS */
:root {
    --primary-color: #9333ea;
    --primary-light: #a855f7;
    --primary-dark: #7c3aed;
    --secondary-color: #ffffff;
    --accent-color: #f3e8ff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --neon-glow: 0 0 20px rgba(147, 51, 234, 0.5);
    --neon-glow-strong: 0 0 30px rgba(147, 51, 234, 0.8);
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow), var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: var(--neon-glow);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow);
    border-radius: 0 0 30px 30px;
    transition: all 0.3s ease;
    margin: 0 20px;
    width: calc(100% - 40px);
}

.header:hover {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(147, 51, 234, 0.1);
    transform: translateY(2px);
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}

.nav-brand {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu .nav-link-tracking {
    display: none;
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-tracking {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color) !important;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: fit-content;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link-tracking::after {
    display: none;
}

.nav-link-tracking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.nav-link-tracking:hover::before {
    left: 100%;
}

.nav-link-tracking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(192, 132, 252, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(147, 51, 234, 0.15) 50%, transparent 70%);
    transform: rotate(-15deg);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(147, 51, 234, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.8);
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    top: 15%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0d5ff 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 0 40px rgba(147, 51, 234, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.8);
    animation: expandLine 1s ease-out forwards;
    animation-delay: 1.4s;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.2s;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-phone {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 40px;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(147, 51, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: phoneFloat 6s ease-in-out infinite;
}

.hero-phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.hero-phone-screen {
    width: 90%;
    height: 85%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), #c084fc);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: screenPulse 4s ease-in-out infinite;
}

.hero-phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    animation: glowMove 5s ease-in-out infinite;
}

.hero-phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: scanLine 3s linear infinite;
}

.hero-phone-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.95);
    z-index: 1;
    animation: iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.6s;
}

.hero-stat {
    text-align: center;
    padding: 1.2rem;
    background: rgba(30, 27, 75, 0.6);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    min-width: 120px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.3), transparent);
    transition: left 0.6s;
}

.hero-stat:hover::before {
    left: 100%;
}

.hero-stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
    border-color: rgba(147, 51, 234, 0.6);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes rotateGlow {
    from {
        transform: rotate(-15deg);
    }
    to {
        transform: rotate(345deg);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) translateX(-25px);
        opacity: 0.6;
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-15px) rotateY(5deg);
    }
    50% {
        transform: translateY(-10px) rotateY(0deg);
    }
    75% {
        transform: translateY(-15px) rotateY(-5deg);
    }
}

@keyframes screenPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(147, 51, 234, 0.8);
    }
}

@keyframes glowMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes scanLine {
    from {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    to {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-5deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Hero Redesign Overrides */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(120deg, #f8f6ff 0%, #ffffff 55%, #f3ecff 100%);
    position: relative;
    overflow: hidden;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -180px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.22) 0%, rgba(147, 51, 234, 0) 65%);
    opacity: 0.45;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -240px;
    left: -200px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, rgba(59, 130, 246, 0) 70%);
    opacity: 0.5;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6rem;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-dark);
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(147, 51, 234, 0.12);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-heading {
    font-size: clamp(2.6rem, 3vw + 1rem, 3.6rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hero-lead {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-description p {
    font-size: 1rem;
    color: var(--text-light);
}

.hero-services {
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
}

.hero-services-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
}

.hero-list li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.hero-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
}

.hero-call-btn {
    box-shadow: 0 20px 45px rgba(147, 51, 234, 0.25);
}

.hero-call-btn i {
    font-size: 1rem;
}

.hero-secondary-btn {
    border: 2px solid rgba(147, 51, 234, 0.2);
    background: #ffffff;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.2rem;
    border-radius: 18px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hero-contact i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.hero-contact strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.hero-contact span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-meta-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.4rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero-meta-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.hero-meta-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.hero-meta-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.hero-address {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(147, 51, 234, 0.1);
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
}

.hero-card {
    position: relative;
    border-radius: 36px;
    box-shadow: 0 45px 90px rgba(79, 70, 229, 0.18);
    overflow: hidden;
}

.hero-card-main {
    width: 100%;
    min-height: 460px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(160deg, rgba(147, 51, 234, 0.12) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(147, 51, 234, 0.18);
    position: relative;
    overflow: hidden;
}

.hero-card-accent {
    position: absolute;
    inset: 35px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(147, 51, 234, 0.18), rgba(255, 255, 255, 0));
    opacity: 0.9;
    pointer-events: none;
}

.hero-card-main img {
    width: 260px;
    max-width: 100%;
    z-index: 1;
    filter: drop-shadow(0 25px 45px rgba(79, 70, 229, 0.25));
    position: relative;
}

.hero-card-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.hero-card-label i {
    font-size: 1rem;
}

.hero-card-contact {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(147, 51, 234, 0.18);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.18);
    z-index: 2;
}

.hero-card-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
}

.hero-card-contact-content span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-card-contact-content strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 0.1rem;
}

.hero-card-contact-content small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
    .hero-layout {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 90px;
    }

    .hero-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3.5rem;
    }

    .hero-text {
        align-items: center;
        max-width: 720px;
    }

    .hero-description p {
        text-align: center;
    }

    .hero-services {
        text-align: left;
    }

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

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

    .hero-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .hero-visual {
        max-width: 420px;
        width: 100%;
    }

    .hero-card-contact {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-list {
        grid-template-columns: 1fr;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 150px 0 70px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .hero-contact {
        width: 100%;
        justify-content: center;
    }

    .hero-address {
        display: block;
        text-align: center;
    }

    .hero-card-main {
        padding: 2.5rem;
        min-height: 380px;
    }

    .hero-card-contact {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.8rem;
    }

    .hero-card-contact-content {
        text-align: left;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.18) 0%, rgba(147, 51, 234, 0) 70%);
    opacity: 0.45;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -160px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 65%);
    opacity: 0.4;
}

.services-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(147, 51, 234, 0.12);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.services-badge i {
    font-size: 1rem;
}

.services-lead {
    font-size: 1.12rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 1.25rem;
}

.services-carousel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.services-window {
    overflow: hidden;
    flex: 1;
}

.services-track {
    --cards-per-view: 3;
    --services-gap: 2rem;
    display: flex;
    gap: var(--services-gap);
    transition: transform 0.6s ease;
    will-change: transform;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.2rem;
    border: 1px solid rgba(147, 51, 234, 0.12);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    flex: 0 0 calc((100% - (var(--cards-per-view) - 1) * var(--services-gap)) / var(--cards-per-view));
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(79, 70, 229, 0.18);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.25);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

.service-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(147, 51, 234, 0.12);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.service-meta i {
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    margin-top: 0.5rem;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: scaleX(1);
}

.services-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(147, 51, 234, 0.15);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.services-nav:hover {
    background: rgba(147, 51, 234, 0.25);
    color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.25);
}

.services-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.services-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.services-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(147, 51, 234, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-dot.active,
.services-dot:hover {
    background: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(147, 51, 234, 0.12);
}

.services-cta {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.services-cta .btn {
    border-radius: 999px;
    padding: 0.9rem 1.8rem;
    box-shadow: 0 18px 40px rgba(147, 51, 234, 0.25);
}

.services-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: rgba(147, 51, 234, 0.08);
    border: 1px dashed rgba(147, 51, 234, 0.3);
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

-.services-cta-link:hover {
    background: rgba(147, 51, 234, 0.12);
    border-color: rgba(147, 51, 234, 0.5);
}

.insights {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.insights::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, rgba(147, 51, 234, 0) 70%);
    opacity: 0.4;
}

.insights-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 3.5rem;
}

.insights-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.insights-badge i {
    font-size: 1rem;
}

.insights-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 1.5rem;
}

.insight-article {
    background: rgba(248, 250, 255, 0.85);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(147, 51, 234, 0.12);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.insight-article::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, rgba(147, 51, 234, 0) 65%);
    opacity: 0.3;
    pointer-events: none;
}

.insight-article-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.insight-article-header p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.insight-points {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.insight-point-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.18), rgba(168, 85, 247, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.insight-point-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.insight-point-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.insight-highlight {
    background: rgba(147, 51, 234, 0.08);
    border-left: 4px solid var(--primary-color);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 0.8rem;
}

.insight-conclusion {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.insight-conclusion h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.insight-conclusion p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services {
        padding: 100px 0;
    }

    .services-track {
        --cards-per-view: 2;
    }

    .services-nav {
        width: 44px;
        height: 44px;
    }

    .insight-article {
        padding: 2.5rem;
    }

    .insight-point {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .services-track {
        --cards-per-view: 2;
    }
}

@media (max-width: 540px) {
    .services-carousel {
        gap: 1rem;
    }

    .services-track {
        --cards-per-view: 1;
    }

    .services-nav {
        width: 40px;
        height: 40px;
    }

    .services-cta .btn,
    .services-cta-link {
        width: 100%;
        justify-content: center;
    }

    .services-cta .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
        color: var(--secondary-color) !important;
        border: none !important;
    }

    .insights {
        padding: 100px 0;
    }

    .insight-article {
        padding: 2rem 1.5rem;
    }

    .insight-article-header h3 {
        font-size: 1.6rem;
    }

    .insight-point-number {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.about-badge i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-values {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateX(10px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.value-content h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.value-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.stat-card:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-5px);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about-image {
    text-align: center;
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.why-choose-badge i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(147, 51, 234, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(147, 51, 234, 0.3);
}

.feature-card.primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f8fafc 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.feature-card.primary:hover {
    transform: scale(1.05) translateY(-10px);
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(147, 51, 234, 0.2);
    font-family: 'Inter', sans-serif;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon::after {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    text-align: center;
    margin-top: auto;
}

.highlight-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-buttons .btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    display: none;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin: 0 1rem;
}

.testimonial-card.active {
    display: block;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-light);
    box-shadow: var(--neon-glow);
}

/* Contact Section - Design Asymétrique */
.contact {
    padding: 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(147, 51, 234, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Section Formulaire (Gauche) */
.contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.1));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.form-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-title-section {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.contact-icon:hover::before {
    left: 100%;
}

.contact-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

.form-title-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.form-title-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-field input,
.input-field select,
.input-field textarea {
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    border-bottom-color: var(--primary-color);
}

.input-field label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    transform-origin: left;
}

.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label,
.input-field select:focus + label,
.input-field select:not([value=""]) + label,
.input-field textarea:focus + label,
.input-field textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem) scale(0.85);
    color: var(--primary-color);
    font-weight: 600;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.input-field input:focus ~ .input-line,
.input-field select:focus ~ .input-line,
.input-field textarea:focus ~ .input-line {
    width: 100%;
}

.textarea-field {
    grid-column: 1 / -1;
}

.textarea-field textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    align-self: flex-start;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Section Informations (Droite) */
.contact-info-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    top: 40%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 4.5s;
}

.info-content {
    position: relative;
    z-index: 2;
    color: white;
}

.info-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Politique de Cookies */
.cookie-policy {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.cookie-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cookie-policy-content {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.cookie-policy-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.cookie-policy-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.cookie-section {
    margin-bottom: 2.5rem;
}

.cookie-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cookie-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-section strong {
    color: var(--primary-color);
}

.cookie-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cookie-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.contact-info {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    margin-top: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

/* Politique de Confidentialité */
.privacy-policy {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.privacy-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-policy-content {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.privacy-policy-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.privacy-policy-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.privacy-intro {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    margin-bottom: 2.5rem;
}

.privacy-intro p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: var(--primary-color);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Politique de la Boutique */
.store-policy {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.store-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.store-policy-content {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.store-policy-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.store-policy-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.02), rgba(168, 85, 247, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.policy-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-section h3 i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.policy-section h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-methods,
.security-features,
.wholesale-benefits,
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-method,
.security-item,
.benefit-item,
.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover,
.security-item:hover,
.benefit-item:hover,
.payment-method:hover {
    background: rgba(147, 51, 234, 0.1);
    transform: translateY(-2px);
}

.contact-method i,
.security-item i,
.benefit-item i,
.payment-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.withdrawal-process,
.refund-info {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    margin: 1.5rem 0;
}

.withdrawal-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.withdrawal-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.withdrawal-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.withdrawal-method div {
    display: flex;
    flex-direction: column;
}

.withdrawal-method strong {
    color: var(--text-dark);
    font-weight: 600;
}

.withdrawal-method span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.exceptions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.exception-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.exception-item i {
    color: #ef4444;
    font-size: 1.2rem;
    width: 20px;
}

.exception-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Livraison et Retours */
.delivery-returns {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.delivery-returns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.delivery-returns-content {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.delivery-returns-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.delivery-returns-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.delivery-section,
.returns-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.02), rgba(168, 85, 247, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.delivery-section h3,
.returns-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.delivery-section h3 i,
.returns-section h3 i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.delivery-section h4,
.returns-section h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.delivery-section p,
.returns-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.delivery-option:hover {
    background: rgba(147, 51, 234, 0.1);
    transform: translateY(-2px);
}

.delivery-option i {
    color: var(--primary-color);
    font-size: 2rem;
    width: 40px;
}

.delivery-option h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.delivery-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.delivery-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.delivery-info {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    margin-top: 2rem;
}

.delivery-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.delivery-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.delivery-info li i {
    color: #10b981;
    font-size: 0.9rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(147, 51, 234, 0.05);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.condition-item.valid {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.condition-item.invalid {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.condition-item i {
    font-size: 1.2rem;
    width: 20px;
}

.condition-item.valid i {
    color: #10b981;
}

.condition-item.invalid i {
    color: #ef4444;
}

.condition-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.returns-process,
.returns-conditions,
.returns-contact {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    margin: 1.5rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-method div {
    display: flex;
    flex-direction: column;
}

.contact-method strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-method span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mentions Légales */
.legal-notice {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.legal-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.legal-notice-content {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.legal-notice-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.legal-notice-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.02), rgba(168, 85, 247, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section h3 i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.company-info {
    margin-top: 1.5rem;
}

.company-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(147, 51, 234, 0.1);
}

.company-header i {
    color: var(--primary-color);
    font-size: 2rem;
}

.company-header h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.company-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.company-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.data-protection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.protection-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.protection-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.protection-item i {
    color: #10b981;
    font-size: 1.2rem;
    width: 20px;
}

.protection-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.dispute-resolution {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dispute-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.dispute-option:hover {
    background: rgba(147, 51, 234, 0.05);
    transform: translateY(-2px);
}

.dispute-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dispute-icon i {
    color: white;
    font-size: 1.5rem;
}

.dispute-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.dispute-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.dispute-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dispute-link:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateY(-1px);
}

.dispute-link i {
    font-size: 0.9rem;
}

.arbitration-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-top: 1rem;
}

.arbitration-note i {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.arbitration-note span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(147, 51, 234, 0.05);
    transform: translateY(-2px);
}

.info-card i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Blog */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.blog-card-image i {
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-date i,
.blog-category i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.blog-category {
    background: rgba(147, 51, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.blog-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.blog-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.newsletter-content h3 i {
    font-size: 1.5rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--secondary-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-light);
    box-shadow: var(--neon-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }

    .nav {
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-logo {
        height: 55px;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        grid-column: 1 / -1;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-link-tracking {
        display: inline-flex;
        margin: 1.5rem 0 0 0;
        width: auto;
        padding: 0.75rem 1.5rem;
        justify-content: center;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-heading {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-description p {
        text-align: center;
        font-size: 0.95rem;
    }

    .hero-services {
        padding: 1.2rem 1.4rem;
    }

    .hero-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-list li {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

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

    .hero-contact {
        width: 100%;
        justify-content: center;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-meta-item {
        padding: 1rem;
    }

    .hero-visual {
        max-width: 100%;
    }

    .hero-card-main {
        padding: 2rem;
        min-height: 320px;
    }

    .hero-card-main img {
        width: 200px;
    }

    .hero-card-contact {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        width: 100%;
    }

    .hero-note {
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-address {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    /* Services Section */
    .services {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 2rem;
    }

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

    .services-lead {
        font-size: 1rem;
    }

    .services-carousel {
        gap: 0.75rem;
    }

    .services-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Insights Section */
    .insights {
        padding: 80px 0;
    }

    .insight-article {
        padding: 2rem 1.5rem;
    }

    .insight-article-header h3 {
        font-size: 1.5rem;
    }

    .insight-point {
        flex-direction: column;
        gap: 1rem;
    }

    .insight-point-number {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .insight-point-content h4 {
        font-size: 1.1rem;
    }

    /* About Section */
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-values {
        margin-top: 2rem;
        gap: 1rem;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        margin: 0 auto;
    }

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

    .image-container i {
        font-size: 5rem;
    }

    .image-glow {
        width: 120px;
        height: 120px;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 80px 0;
    }

    .why-choose-header {
        margin-bottom: 2.5rem;
    }

    .why-choose-subtitle {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card.primary {
        transform: scale(1);
    }

    .feature-card.primary:hover {
        transform: translateY(-10px);
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .why-choose-cta {
        padding: 2rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-form-section {
        padding: 3rem 1.5rem;
    }

    .contact-info-section {
        padding: 3rem 1.5rem;
    }

    .form-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .form-title-content h2 {
        font-size: 1.8rem;
    }

    .form-title-content p {
        font-size: 1rem;
    }

    .input-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .input-field input,
    .input-field select,
    .input-field textarea {
        font-size: 0.95rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .info-item {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .info-value {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

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

    /* Blog Section */
    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        min-width: auto;
    }

    .newsletter-form button {
        width: 100%;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
    }

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

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

    .service-card {
        padding: 2rem;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

    .service-icon {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .feature-card.primary {
        transform: none;
    }

    .feature-card.primary:hover {
        transform: translateY(-10px);
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .why-choose-cta {
        padding: 2rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        min-width: 200px;
    }

    .cookie-policy {
        padding: 60px 0;
    }

    .cookie-policy-content {
        padding: 2rem;
    }

    .cookie-policy-content h2 {
        font-size: 2rem;
    }

    .cookie-section h3 {
        font-size: 1.3rem;
    }

    .cookie-links {
        justify-content: center;
    }


    .privacy-policy {
        padding: 60px 0;
    }

    .privacy-policy-content {
        padding: 2rem;
    }

    .privacy-policy-content h2 {
        font-size: 2rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-intro {
        padding: 1.5rem;
    }

    .store-policy {
        padding: 60px 0;
    }

    .store-policy-content {
        padding: 2rem;
    }

    .store-policy-content h2 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }

    .contact-methods,
    .security-features,
    .wholesale-benefits,
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .delivery-returns {
        padding: 60px 0;
    }

    .delivery-returns-content {
        padding: 2rem;
    }

    .delivery-returns-content h2 {
        font-size: 2rem;
    }

    .delivery-section,
    .returns-section {
        padding: 1.5rem;
    }

    .delivery-section h3,
    .returns-section h3 {
        font-size: 1.3rem;
    }

    .delivery-options {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .legal-notice {
        padding: 60px 0;
    }

    .legal-notice-content {
        padding: 2rem;
    }

    .legal-notice-content h2 {
        font-size: 2rem;
    }

    .legal-section {
        padding: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.3rem;
    }

    .company-card {
        padding: 1.5rem;
    }

    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .company-contact {
        gap: 0.75rem;
    }

    .data-protection {
        grid-template-columns: 1fr;
    }

    .dispute-resolution {
        gap: 1rem;
    }

    .dispute-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .additional-info {
        grid-template-columns: 1fr;
    }

    .blog-hero {
        padding: 80px 0 60px;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 150px;
    }

    .blog-card-image i {
        font-size: 2.5rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Container & Spacing */
    .container {
        padding: 0 15px;
    }

    /* Header & Navigation */
    .header {
        margin: 0;
        border-radius: 0;
    }

    .nav {
        padding: 1rem 15px;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .nav-logo {
        height: 50px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .nav-link-tracking {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
        margin: 1.5rem 0 0 0;
    }

    .nav-actions {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 130px 0 50px;
    }

    .hero-heading {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-lead {
        font-size: 0.95rem;
    }

    .hero-description p {
        font-size: 0.9rem;
    }

    .hero-services {
        padding: 1rem 1.2rem;
    }

    .hero-services-title {
        font-size: 0.95rem;
    }

    .hero-list li {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .hero-list i {
        font-size: 1rem;
    }

    .hero-actions .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-contact {
        padding: 0.75rem 1rem;
    }

    .hero-contact i {
        font-size: 1rem;
    }

    .hero-contact strong {
        font-size: 0.9rem;
    }

    .hero-contact span {
        font-size: 0.85rem;
    }

    .hero-meta-item {
        padding: 0.9rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }

    .hero-meta-item i {
        font-size: 1.2rem;
    }

    .hero-meta-item strong {
        font-size: 0.95rem;
    }

    .hero-meta-item span {
        font-size: 0.85rem;
    }

    .hero-card-main {
        padding: 1.5rem;
        min-height: 280px;
    }

    .hero-card-main img {
        width: 160px;
    }

    .hero-card-label {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .hero-card-contact {
        padding: 1rem 1.2rem;
        flex-direction: column;
        text-align: center;
    }

    .hero-card-contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .hero-card-contact-content strong {
        font-size: 1rem;
    }

    .hero-card-contact-content span {
        font-size: 0.8rem;
    }

    .hero-card-contact-content small {
        font-size: 0.75rem;
    }

    .hero-note {
        font-size: 0.85rem;
    }

    .hero-address {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    /* Services Section */
    .services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .services-badge {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }

    .services-lead {
        font-size: 0.9rem;
    }

    .services-carousel {
        gap: 0.5rem;
    }

    .services-nav {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .service-card {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-meta {
        gap: 0.5rem;
    }

    .service-meta span {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    .service-link {
        font-size: 0.9rem;
    }

    .services-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-cta .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .services-cta .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
        color: var(--secondary-color) !important;
        border: none !important;
    }

    .services-cta-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.2rem;
    }

    /* Insights Section */
    .insights {
        padding: 60px 0;
    }

    .insights-badge {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }

    .insights-lead {
        font-size: 0.9rem;
    }

    .insight-article {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .insight-article-header h3 {
        font-size: 1.3rem;
    }

    .insight-article-header p {
        font-size: 0.9rem;
    }

    .insight-point {
        gap: 0.75rem;
    }

    .insight-point-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .insight-point-content h4 {
        font-size: 1rem;
    }

    .insight-point-content p {
        font-size: 0.9rem;
    }

    .insight-highlight {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .insight-conclusion {
        padding: 1.5rem;
    }

    .insight-conclusion h4 {
        font-size: 1.2rem;
    }

    .insight-conclusion p {
        font-size: 0.9rem;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-badge {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .value-item {
        padding: 1.2rem;
    }

    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .value-content h4 {
        font-size: 1rem;
    }

    .value-content p {
        font-size: 0.85rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .image-container i {
        font-size: 4rem;
    }

    .image-glow {
        width: 100px;
        height: 100px;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 60px 0;
    }

    .why-choose-badge {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }

    .why-choose-subtitle {
        font-size: 0.9rem;
    }

    .features-grid {
        gap: 1.2rem;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    .feature-number {
        font-size: 1.1rem;
        top: 1rem;
        right: 1rem;
    }

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

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .feature-highlight {
        padding: 0.85rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .highlight-label {
        font-size: 0.75rem;
    }

    .why-choose-cta {
        padding: 1.5rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-form-section {
        padding: 2rem 1rem;
    }

    .contact-info-section {
        padding: 2rem 1rem;
    }

    .form-title-section {
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .form-title-content h2 {
        font-size: 1.5rem;
    }

    .form-title-content p {
        font-size: 0.9rem;
    }

    .modern-form {
        gap: 1.5rem;
    }

    .input-field input,
    .input-field select,
    .input-field textarea {
        font-size: 0.9rem;
        padding: 0.9rem 0;
    }

    .input-field label {
        font-size: 0.9rem;
    }

    .textarea-field textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .info-item {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .info-label {
        font-size: 0.85rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .info-note {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    /* Blog Section */
    .blog-hero {
        padding: 80px 0 50px;
    }

    .blog-hero h1 {
        font-size: 1.75rem;
    }

    .blog-hero p {
        font-size: 0.95rem;
    }

    .blog-card-content {
        padding: 1.2rem;
    }

    .blog-card h3 {
        font-size: 1.1rem;
    }

    .blog-card p {
        font-size: 0.85rem;
    }

    .newsletter-content h3 {
        font-size: 1.5rem;
    }

    .newsletter-content p {
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .value-item {
        padding: 0.8rem;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .image-container i {
        font-size: 4rem;
    }

    .image-glow {
        width: 100px;
        height: 100px;
    }

    .testimonial-card {
        padding: 2rem;
        margin: 0 0.5rem;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .contact-info-section {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .form-title-content h2 {
        font-size: 1.8rem;
    }

    .form-title-content p {
        font-size: 1rem;
    }

    .input-field input,
    .input-field select,
    .input-field textarea {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .info-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .info-note {
        font-size: 0.75rem;
    }

    .cookie-policy-content {
        padding: 1.5rem;
    }

    .cookie-policy-content h2 {
        font-size: 1.8rem;
    }

    .cookie-section h3 {
        font-size: 1.2rem;
    }

    .cookie-links {
        flex-direction: column;
        align-items: center;
    }

    .cookie-link {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .privacy-policy-content {
        padding: 1.5rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.8rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-intro {
        padding: 1rem;
    }

    .store-policy-content {
        padding: 1.5rem;
    }

    .store-policy-content h2 {
        font-size: 1.8rem;
    }

    .policy-section {
        padding: 1rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .withdrawal-methods {
        gap: 0.5rem;
    }

    .withdrawal-method {
        padding: 0.8rem;
    }

    .exceptions-list {
        gap: 0.5rem;
    }

    .exception-item {
        padding: 0.8rem;
    }

    .delivery-returns-content {
        padding: 1.5rem;
    }

    .delivery-returns-content h2 {
        font-size: 1.8rem;
    }

    .delivery-section,
    .returns-section {
        padding: 1rem;
    }

    .delivery-section h3,
    .returns-section h3 {
        font-size: 1.2rem;
    }

    .delivery-option {
        padding: 1rem;
    }

    .process-step {
        padding: 1rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .legal-notice-content {
        padding: 1.5rem;
    }

    .legal-notice-content h2 {
        font-size: 1.8rem;
    }

    .legal-section {
        padding: 1rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .company-card {
        padding: 1rem;
    }

    .company-header h4 {
        font-size: 1.3rem;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .dispute-icon {
        width: 50px;
        height: 50px;
    }

    .dispute-icon i {
        font-size: 1.2rem;
    }

    .info-card {
        padding: 1rem;
    }

.info-card i {
    font-size: 1.5rem;
}

/* Blog */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.blog-card-image i {
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-date i,
.blog-category i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.blog-category {
    background: rgba(147, 51, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.blog-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.blog-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.newsletter-content h3 i {
    font-size: 1.5rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error states */
.success {
    color: #10b981;
    font-weight: 500;
}

.error {
    color: #ef4444;
    font-weight: 500;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Accessibilité : Réduire les animations si demandé */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particle {
        display: none !important;
    }
    
    .hero-phone {
        animation: none !important;
    }
}

/* Article Pages */
.article-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-date i,
.article-category i,
.article-read-time i {
    font-size: 0.8rem;
}

.article-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.article-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.article-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.article-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.article-section h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-section h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.article-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tip-icon i {
    color: white;
    font-size: 1.2rem;
}

.tip-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tip-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Battery Tips */
.battery-tips {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.battery-tip {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.battery-tip h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.battery-tip p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Maintenance Checklist */
.maintenance-checklist {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.checklist-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Maintenance Schedule */
.maintenance-schedule {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.schedule-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.schedule-frequency {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.schedule-tasks p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.schedule-tasks p::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Warning Signs */
.warning-signs {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warning-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.warning-item i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.warning-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.warning-item p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Damage Types */
.damage-types {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.damage-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.damage-card.minor {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
}

.damage-card.moderate {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.damage-card.severe {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.damage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.damage-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.damage-card.minor .damage-icon {
    background: #22c55e;
}

.damage-card.moderate .damage-icon {
    background: #f59e0b;
}

.damage-card.severe .damage-icon {
    background: #ef4444;
}

.damage-icon i {
    color: white;
    font-size: 1.2rem;
}

.damage-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.damage-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Repair Types */
.repair-types {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.repair-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.repair-type h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.repair-type h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.repair-details p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Cost Analysis */
.cost-analysis {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.analysis-factor {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.analysis-factor h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.analysis-factor h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.factor-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Timeline */
.timeline {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-marker i {
    color: white;
    font-size: 1rem;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Quality Factors */
.quality-factors {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.quality-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.quality-item i {
    color: #22c55e;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.quality-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.quality-item p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Symptoms Grid */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.symptom-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.symptom-card.critical {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.symptom-card.warning {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.symptom-card.info {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
}

.symptom-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.symptom-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.symptom-card.critical .symptom-icon {
    background: #ef4444;
}

.symptom-card.warning .symptom-icon {
    background: #f59e0b;
}

.symptom-card.info .symptom-icon {
    background: #3b82f6;
}

.symptom-icon i {
    color: white;
    font-size: 1.2rem;
}

.symptom-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.symptom-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Diagnostic Steps */
.diagnostic-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.diagnostic-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-details p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Emergency Signs */
.emergency-signs {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.emergency-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    align-items: center;
}

.emergency-item.danger {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.emergency-item.warning {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.emergency-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.emergency-item.danger i {
    color: #ef4444;
}

.emergency-item.warning i {
    color: #f59e0b;
}

.emergency-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.emergency-item p {
    color: var(--text-light);
    line-height: 1.5;
}

.urgency {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

/* Battery Lifecycle */
.battery-lifecycle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.lifecycle-stage {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.stage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stage-icon i {
    color: white;
    font-size: 1.5rem;
}

.stage-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.stage-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Solutions */
.solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.solution-icon i {
    color: white;
    font-size: 1.2rem;
}

.solution-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.solution-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Protection Types */
.protection-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.protection-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.protection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.protection-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.protection-icon i {
    color: white;
    font-size: 1.2rem;
}

.protection-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.protection-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Screen Protection */
.screen-protection {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.screen-option {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.screen-option h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.screen-option h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.option-details p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Specialized Protection */
.specialized-protection {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.special-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.special-item i {
    color: #22c55e;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.special-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.special-item p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Recommendations */
.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.recommendation-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.rec-icon i {
    color: white;
    font-size: 1.2rem;
}

.rec-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.rec-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Camera Problems */
.camera-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.problem-icon i {
    color: white;
    font-size: 1.2rem;
}

.problem-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.problem-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Quick Solutions */
.quick-solutions {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.solution-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-step .step-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.solution-step .step-content p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Repair Services */
.repair-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Causes Grid */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cause-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cause-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cause-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cause-icon i {
    color: white;
    font-size: 1.2rem;
}

.cause-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.cause-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Quick Fixes */
.quick-fixes {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fix-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.fix-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fix-icon i {
    color: white;
    font-size: 1rem;
}

.fix-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.fix-content p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Repair Options */
.repair-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.repair-option {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.repair-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.option-icon i {
    color: white;
    font-size: 1.2rem;
}

.option-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.option-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Prevention Tips */
.prevention-tips {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.tip-item i {
    color: #22c55e;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.tip-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Article Conclusion */
.article-conclusion {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
}

.article-conclusion h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-conclusion p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-hero {
        padding: 80px 0 60px;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .article-body {
        padding: 2rem;
    }
    
    .article-section h2 {
        font-size: 1.6rem;
    }
    
    .tips-grid,
    .symptoms-grid,
    .damage-types,
    .protection-types,
    .recommendations,
    .camera-problems,
    .repair-services,
    .causes-grid,
    .repair-options {
        grid-template-columns: 1fr;
    }
    
    .battery-lifecycle {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.8rem;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-section h2 {
        font-size: 1.4rem;
    }
    
    .battery-lifecycle {
        grid-template-columns: 1fr;
    }
    
    .timeline-item,
    .diagnostic-step,
    .solution-step,
    .fix-step {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker,
    .step-number,
    .fix-icon {
        margin: 0 auto;
    }
}
