/* ============================================
   PWA SOLUTIONS PRO - STYLESHEET
   Version améliorée avec animations avancées
   ============================================ */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-rgb: 99, 102, 241;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --purple: #8b5cf6;
    --orange: #f97316;
    --pink: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #14b8a6 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-glow-lg: 0 0 60px rgba(99, 102, 241, 0.4);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    animation-delay: -0.2s;
    border-top-color: rgba(255,255,255,0.7);
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    animation-delay: -0.4s;
    border-top-color: rgba(255,255,255,0.4);
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
}

.loader-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    animation: pulse 1.5s ease-in-out infinite;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.logo-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: var(--shadow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 2px;
}

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

.main-nav a {
    padding: 10px 18px;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
}

.main-nav .nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 600;
}

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

.header-date {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    padding: 15px 20px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

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

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

.btn-primary:hover i {
    transform: translateY(3px);
}

.btn-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--shadow), 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.5); }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.btn-cta {
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-pulse {
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

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

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-plus, .stat-percent, .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* Phone Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-showcase {
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.3);
}

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 35px;
    overflow: hidden;
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #333;
    border-radius: 3px;
}

/* App Demo inside phone */
.app-demo {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--gradient-primary);
    padding: 45px 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.app-logo-small {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-header span {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
}

.app-menu-dots {
    display: flex;
    gap: 3px;
}

.app-menu-dots span {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}

.app-hero-banner {
    height: 100px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    margin: 12px;
    border-radius: 12px;
    animation: banner-shimmer 2s ease-in-out infinite;
}

@keyframes banner-shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.app-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
}

.app-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.app-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.app-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.app-card span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.app-promo {
    margin: 15px 12px;
    background: linear-gradient(135deg, var(--accent), var(--orange));
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.promo-badge {
    background: var(--white);
    color: var(--orange);
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
}

.promo-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-notif {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    animation: float 3s ease-in-out infinite;
}

.floating-notif i {
    color: var(--primary);
}

.floating-1 {
    top: 80px;
    right: -40px;
    animation-delay: 0s;
}

.floating-2 {
    top: 200px;
    left: -60px;
    animation-delay: 1s;
}

.floating-2 i {
    color: var(--pink);
}

.floating-3 {
    bottom: 150px;
    right: -30px;
    animation-delay: 2s;
}

.floating-3 i {
    color: var(--secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(6px); }
}

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

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   FLYING LOGOS - LOGOS QUI S'ENVOLENT DANS LE HERO
   ============================================ */
.flying-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.flying-logo {
    position: absolute;
    bottom: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: flyToTop 10s ease-out infinite;
}

/* Animation qui s'envole jusqu'en haut du hero */
@keyframes flyToTop {
    0% {
        opacity: 0;
        bottom: -80px;
        transform: scale(0.4) rotate(-10deg);
    }
    8% {
        opacity: 0.7;
    }
    20% {
        opacity: 0.9;
        transform: scale(1) rotate(0deg);
    }
    80% {
        opacity: 0.5;
        transform: scale(0.7) rotate(8deg);
    }
    100% {
        opacity: 0;
        bottom: 100%;
        transform: scale(0.3) rotate(15deg);
    }
}

/* Positionnement et délais pour chaque logo */
.flying-logo:nth-child(1) { left: 5%; animation-delay: 0s; }
.flying-logo:nth-child(2) { left: 15%; animation-delay: 2s; }
.flying-logo:nth-child(3) { left: 28%; animation-delay: 4s; }
.flying-logo:nth-child(4) { left: 42%; animation-delay: 1s; }
.flying-logo:nth-child(5) { left: 55%; animation-delay: 3s; }
.flying-logo:nth-child(6) { left: 68%; animation-delay: 5s; }
.flying-logo:nth-child(7) { left: 78%; animation-delay: 2.5s; }
.flying-logo:nth-child(8) { left: 88%; animation-delay: 0.5s; }
.flying-logo:nth-child(9) { left: 10%; animation-delay: 6s; }
.flying-logo:nth-child(10) { left: 35%; animation-delay: 7s; }
.flying-logo:nth-child(11) { left: 60%; animation-delay: 8s; }
.flying-logo:nth-child(12) { left: 82%; animation-delay: 9s; }

.flying-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(255, 255, 255, 0.3));
}

.flying-logo i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 5px 20px rgba(255, 255, 255, 0.3));
}

/* Couleurs pour les icônes */
.flying-logo:nth-child(3) i,
.flying-logo:nth-child(11) i { color: rgba(255, 255, 255, 0.9); } /* Apple */
.flying-logo:nth-child(4) i,
.flying-logo:nth-child(12) i { color: #3DDC84; } /* Android */
.flying-logo:nth-child(7) i { color: #4285F4; } /* Chrome */
.flying-logo:nth-child(8) i { color: #006CFF; } /* Safari */

/* Responsive */
@media (max-width: 768px) {
    .flying-logo img {
        height: 40px;
    }

    .flying-logo i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .flying-logo img {
        height: 30px;
    }

    .flying-logo i {
        font-size: 2rem;
    }
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-section {
    padding: 100px 0;
}

.feature-section.feature-alt {
    background: var(--gray-50);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-badge.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.feature-badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.feature-badge.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-title .highlight {
    color: var(--primary);
}

.feature-title .highlight.purple {
    color: var(--purple);
}

.feature-title .highlight.green {
    color: var(--secondary);
}

.feature-title .highlight.orange {
    color: var(--orange);
}

.feature-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-list-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list li strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.feature-list li p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* Feature Visuals */
.visual-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.visual-mockup {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mockup-screen {
    padding: 20px;
}

.brand-screen .brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
}

.brand-name-placeholder {
    height: 20px;
    width: 120px;
    background: var(--gray-300);
    border-radius: 4px;
}

.brand-banner {
    height: 150px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.brand-buttons {
    display: flex;
    gap: 10px;
}

.brand-btn {
    flex: 1;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
}

.visual-stats {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.visual-stat i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.visual-stat span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.visual-stat p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

/* Notification Visual */
.notif-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
}

.notif-phone {
    background: #000;
    border-radius: 30px;
    padding: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.notif-screen {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 22px;
    padding: 30px 15px;
    min-height: 400px;
}

.notif-time {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin-bottom: 5px;
}

.notif-date {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.notif-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notif-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 12px;
    animation: slide-in 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.notif-1 { animation-delay: 0.2s; }
.notif-2 { animation-delay: 0.4s; }
.notif-3 { animation-delay: 0.6s; }

@keyframes slide-in {
    to { opacity: 1; transform: translateX(0); }
}

.notif-app-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-content strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.notif-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1.2rem;
}

.highlight-card strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.highlight-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* Loyalty Features */
.loyalty-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.loyalty-feature {
    text-align: center;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.loyalty-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.loyalty-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 0 auto 12px;
}

.loyalty-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 5px;
}

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

/* Loyalty Card Visual */
.loyalty-card-visual {
    position: relative;
    padding: 20px;
}

/* Loyalty Phone Mockup */
.loyalty-phone {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 45px;
    padding: 12px;
    max-width: 300px;
    margin: 0 auto;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.loyalty-screen {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 35px;
    overflow: hidden;
    padding-bottom: 20px;
}

.loyalty-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.loyalty-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

.loyalty-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.loyalty-card-display {
    padding: 20px;
}

.loyalty-card-inner {
    background: linear-gradient(145deg, var(--secondary), var(--primary));
    border-radius: 20px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.loyalty-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.loyalty-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
}

.loyalty-stars i {
    font-size: 1.3rem;
    color: #fbbf24;
}

.loyalty-stars i.far {
    color: rgba(255, 255, 255, 0.4);
}

.loyalty-card-inner .loyalty-points {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.loyalty-card-inner .points-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.loyalty-card-inner .points-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loyalty-card-inner .loyalty-progress {
    margin-bottom: 20px;
    position: relative;
}

.loyalty-card-inner .progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.loyalty-card-inner .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.loyalty-card-inner .progress-text {
    font-size: 0.75rem;
    opacity: 0.85;
    text-align: center;
    display: block;
}

.loyalty-rewards {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.reward-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 65px;
    transition: all 0.3s ease;
}

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

.reward-item span {
    font-size: 0.7rem;
    font-weight: 600;
}

.reward-item.active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.loyalty-badge-float {
    position: absolute;
    top: 10px;
    right: -10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

/* Responsive Loyalty */
@media (max-width: 768px) {
    .loyalty-phone {
        max-width: 260px;
        border-radius: 38px;
    }

    .loyalty-screen {
        border-radius: 30px;
    }

    .loyalty-header {
        padding: 20px 15px;
    }

    .loyalty-logo {
        width: 35px;
        height: 35px;
    }

    .loyalty-title {
        font-size: 1rem;
    }

    .loyalty-card-inner {
        padding: 20px;
    }

    .loyalty-card-inner .points-number {
        font-size: 2.5rem;
    }

    .loyalty-badge-float {
        padding: 10px 15px;
        font-size: 0.75rem;
        right: 0;
    }
}

@media (max-width: 480px) {
    .loyalty-phone {
        max-width: 230px;
        border-radius: 32px;
    }

    .loyalty-card-inner .points-number {
        font-size: 2rem;
    }

    .reward-item {
        padding: 8px;
        min-width: 55px;
    }

    .reward-item i {
        font-size: 1rem;
    }

    .reward-item span {
        font-size: 0.6rem;
    }
}

.loyalty-card {
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    padding: 30px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.loyalty-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.loyalty-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
}

.loyalty-card-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.loyalty-card-header span {
    font-size: 1.2rem;
    font-weight: 700;
}

.loyalty-card-body {
    position: relative;
}

.loyalty-points {
    text-align: center;
    margin-bottom: 25px;
}

.points-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.points-value {
    font-size: 3rem;
    font-weight: 800;
}

.loyalty-progress {
    margin-bottom: 25px;
}

.progress-bar {
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 5px;
    transition: width 1s ease-out;
}

.progress-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.loyalty-qr {
    display: flex;
    justify-content: center;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2.5rem;
}

.loyalty-badge-float {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    animation: float 2s ease-in-out infinite;
}

/* E-commerce Visual */
.ecommerce-visual {
    position: relative;
}

.ecommerce-phone {
    background: #1a1a1a;
    border-radius: 35px;
    padding: 10px;
    max-width: 280px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.ecommerce-screen {
    background: var(--white);
    border-radius: 27px;
    overflow: hidden;
}

.ecommerce-header {
    background: var(--gradient-accent);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.ecommerce-header span {
    flex: 1;
    font-weight: 600;
}

.cart-badge {
    background: var(--white);
    color: var(--orange);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.ecommerce-products {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 12px;
    border-radius: var(--radius);
}

.product-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: var(--radius-sm);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
}

.add-cart {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.add-cart:hover {
    transform: scale(1.1);
}

.ecommerce-footer {
    background: var(--dark);
    color: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ecommerce-footer span {
    font-size: 0.85rem;
}

.ecommerce-footer .total {
    font-weight: 700;
    color: var(--accent);
}

.ecommerce-stats {
    position: absolute;
    top: 20px;
    right: -30px;
}

.ecommerce-stat {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.ecommerce-stat i {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.ecommerce-stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--dark);
}

.ecommerce-stat span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Feature Benefits Tags */
.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.benefit-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.benefit-tag i {
    color: var(--orange);
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.section-badge.blue {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-color: rgba(99, 102, 241, 0.3);
}

.section-badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-color: rgba(16, 185, 129, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Social Stats Grid */
.social-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.social-stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.social-stat-card.highlight {
    background: var(--gradient-primary);
    border: none;
}

.social-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.social-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

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

.social-stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

.social-stat-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease-out;
}

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

/* Social Benefits Grid */
.social-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
}

.social-benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.social-benefit-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.social-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.social-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-benefit-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* ROI Comparison */
.roi-comparison {
    display: flex;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

.roi-card {
    flex: 1;
    padding: 35px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.roi-card.traditional {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.roi-card.digital {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.roi-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.roi-card.traditional h4 {
    color: #f87171;
}

.roi-card.digital h4 {
    color: var(--secondary);
}

.roi-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.roi-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.roi-card.traditional li i {
    color: #f87171;
}

.roi-card.digital li i {
    color: var(--secondary);
}

.roi-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--dark);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    align-self: center;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   COMPARISON BLOCKS - MARKETING VS PWA
   ============================================ */

.comparison-block {
    margin-bottom: 50px;
    position: relative;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

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

.comparison-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.old {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.08);
}

.comparison-card.old:hover {
    background: rgba(239, 68, 68, 0.12);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.comparison-card.new {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

.comparison-card.new:hover {
    background: rgba(16, 185, 129, 0.12);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    gap: 5px;
}

.comparison-card.old .comparison-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.comparison-card.new .comparison-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.comparison-card-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-card li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.comparison-card.old li i {
    color: #f87171;
}

.comparison-card.new li i {
    color: #34d399;
}

.comparison-card li strong {
    color: white;
}

.comparison-cost {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cost-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cost-value {
    font-size: 1.1rem;
    font-weight: 800;
}

.cost-value.negative {
    color: #f87171;
}

.cost-value.positive {
    color: #34d399;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    animation: vsPulse 2s infinite;
}

@keyframes vsPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    }
}

/* Savings Summary */
.savings-summary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin-top: 60px;
}

.savings-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.savings-header i {
    font-size: 2.5rem;
    color: #34d399;
}

.savings-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.saving-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.saving-category {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.saving-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #34d399;
}

.savings-total {
    background: linear-gradient(135deg, var(--secondary), #059669);
    border-radius: 15px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

/* Responsive Comparison Blocks */
@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comparison-vs {
        order: -1;
        margin-bottom: 10px;
    }

    .vs-circle {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .comparison-card.old {
        order: 0;
    }

    .comparison-card.new {
        order: 1;
    }

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

    .savings-total {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .comparison-header {
        flex-direction: column;
        text-align: center;
    }

    .comparison-header h3 {
        font-size: 1.2rem;
    }

    .comparison-card {
        padding: 25px 20px;
    }

    .comparison-card-header {
        flex-direction: column;
        text-align: center;
    }

    .comparison-card li {
        font-size: 0.85rem;
    }

    .savings-summary {
        padding: 30px 20px;
    }

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

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

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

@media (max-width: 480px) {
    .comparison-block {
        margin-bottom: 40px;
    }

    .comparison-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .comparison-header h3 {
        font-size: 1.1rem;
    }

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

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

    .saving-amount {
        font-size: 1.3rem;
    }
}

/* ============================================
   KEY NUMBERS SECTION
   ============================================ */
.key-numbers {
    padding: 80px 0;
    background: var(--white);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.number-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.number-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.number-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.number-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-top: 10px;
    line-height: 1.5;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.section.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.pricing .section-header {
    color: var(--dark);
}

.pricing .section-title {
    color: var(--dark);
}

.pricing .section-subtitle {
    color: var(--gray-600);
}

.pricing-table-container {
    max-width: 900px;
    margin: 0 auto 50px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}

.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3) {
    text-align: center;
}

.pricing-table td {
    padding: 25px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--gray-50);
}

.service-name {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.service-name strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.service-name small {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.price {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.price-total {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.total-row {
    background: var(--gray-100) !important;
}

.total-row td {
    padding: 30px 25px;
    border-bottom: none;
}

.price-total.highlight {
    font-size: 1.8rem;
    color: var(--secondary);
}

/* Monthly Breakdown */
.monthly-breakdown {
    display: flex;
    justify-content: center;
}

.monthly-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--gradient-primary);
    padding: 30px 50px;
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.monthly-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.monthly-content {
    display: flex;
    flex-direction: column;
}

.monthly-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.monthly-amount {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
}

.monthly-amount small {
    font-size: 1.2rem;
    font-weight: 500;
}

.monthly-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   PARTNER OFFER SECTION
   ============================================ */
.section.partner-offer {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.section.partner-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.offer-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.offer-badge-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.offer-badge .star i {
    color: var(--accent);
    font-size: 1.2rem;
    animation: star-pulse 1s ease-in-out infinite alternate;
}

@keyframes star-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.offer-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-xl);
}

.offer-header {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 40px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.old-price, .new-price {
    text-align: center;
}

.old-price-label, .new-price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 500;
}

.old-price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-400);
    text-decoration: line-through;
}

.old-price-value small {
    font-size: 1rem;
}

.arrow {
    font-size: 2rem;
    color: var(--primary);
}

.new-price-label {
    color: var(--secondary);
    font-weight: 600;
}

.new-price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
}

.savings {
    font-size: 1.2rem;
    color: var(--accent);
}

.savings strong {
    font-size: 1.4rem;
}

.offer-details h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.offer-details h3 i {
    color: var(--primary);
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.offer-feature {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.offer-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.offer-feature .check {
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.offer-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

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

.offer-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-200);
}

.offer-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.offer-urgency i {
    color: var(--primary);
}

/* ============================================
   SUMMARY SECTION
   ============================================ */
.section.summary {
    padding: 100px 0;
    background: var(--gray-50);
}

.summary .section-header {
    color: var(--dark);
}

.summary .section-title {
    color: var(--dark);
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.summary-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.summary-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.summary-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 8px 25px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.summary-card.highlight .summary-icon {
    color: var(--white);
    opacity: 0.9;
}

.summary-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.summary-card.highlight h4 {
    color: rgba(255,255,255,0.9);
}

.summary-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.summary-card.highlight .summary-price {
    color: var(--white);
}

.summary-price.free {
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.summary-card p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.summary-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.summary-card small {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.summary-card.highlight small {
    color: rgba(255,255,255,0.8);
}

/* Total Investment */
.total-investment {
    text-align: center;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.total-investment > p:first-child {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.total-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.total-amount .crossed {
    font-size: 2rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.total-amount .final {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.total-amount .total-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.total-amount .total-calculation {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.economy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--accent);
}

.economy i {
    font-size: 1.5rem;
}

.economy strong {
    font-size: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.footer-wave {
    color: var(--gray-50);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: auto;
}

.footer-content {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon-wrapper {
    background: var(--gradient-primary);
}

.footer-brand .logo-main {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand .logo-sub {
    color: var(--gray-400);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .feature-grid {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .header-date {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 40px;
    }

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

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

    .feature-grid,
    .feature-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-content {
        text-align: center;
    }

    .feature-list li {
        text-align: left;
    }

    .feature-list {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .social-stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }

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

    .roi-comparison {
        flex-direction: column;
    }

    .roi-vs {
        align-self: center;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 50px;
        height: 1px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .floating-elements {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .partners-logos {
        gap: 30px;
    }

    .partner-logo i {
        font-size: 2rem;
    }

    .feature-section {
        padding: 60px 0;
    }

    .feature-title {
        font-size: 1.8rem;
    }

    .loyalty-features {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .feature-highlights {
        max-width: 400px;
        margin: 0 auto;
    }

    .social-section {
        padding: 60px 0;
    }

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

    .social-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }

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

    .pricing-table th,
    .pricing-table td {
        padding: 15px 12px;
    }

    .service-name {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .offer-content {
        padding: 40px 25px;
    }

    .new-price-value {
        font-size: 2.5rem;
    }

    .summary-cards {
        grid-template-columns: 1fr;
    }

    .total-amount {
        flex-direction: column;
        gap: 15px;
    }

    .total-amount .final {
        font-size: 2.8rem;
    }

    .monthly-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .offer-badge {
        font-size: 1rem;
        letter-spacing: 1px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .summary-price {
        font-size: 2.2rem;
    }

    .economy {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   SECTION RÉALISATIONS
   ============================================ */

.realisations-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.section-badge.gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.realisation-block {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.realisation-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.realisation-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.realisation-logo .logo-text {
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.realisation-logo .logo-text small {
    display: block;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* E Shops PRO Logo Style */
.eshops-logo {
    background: white;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.realisation-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.realisation-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.realisation-type {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.realisation-type i {
    margin-right: 8px;
}

.realisation-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Phones Showcase */
.phones-showcase {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.phone-mockup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.phone-frame-real {
    width: 180px;
    height: 380px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 36px;
    padding: 8px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-frame-real:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.35),
        0 15px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.phone-notch-real {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.phone-notch-real::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2d2d2d;
    border-radius: 50%;
}

.phone-screen-real {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.phone-screen-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.phone-home-bar-real {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Réalisations CTA */
.realisations-cta {
    text-align: center;
    padding: 60px 0 20px;
}

.realisations-cta p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Animation delays for phones */
.phone-mockup-item.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.phone-mockup-item.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.phone-mockup-item.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.phone-mockup-item.scroll-reveal.delay-4 { transition-delay: 0.4s; }
.phone-mockup-item.scroll-reveal.delay-5 { transition-delay: 0.5s; }

/* Responsive Réalisations */
@media (max-width: 1200px) {
    .phones-showcase {
        gap: 25px;
    }

    .phone-frame-real {
        width: 160px;
        height: 340px;
    }
}

@media (max-width: 992px) {
    .realisation-header {
        flex-direction: column;
        text-align: center;
    }

    .realisation-desc {
        max-width: 100%;
    }

    .phones-showcase {
        gap: 20px;
    }

    .phone-frame-real {
        width: 140px;
        height: 300px;
        border-radius: 28px;
    }

    .phone-notch-real {
        width: 60px;
        height: 18px;
    }

    .phone-screen-real {
        border-radius: 22px;
    }
}

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

    .realisation-block {
        padding: 25px;
        margin-bottom: 40px;
    }

    .realisation-logo {
        width: 80px;
        height: 80px;
    }

    .realisation-info h3 {
        font-size: 1.4rem;
    }

    .phones-showcase {
        gap: 15px;
        justify-content: center;
    }

    .phone-frame-real {
        width: 120px;
        height: 260px;
        border-radius: 24px;
        padding: 6px;
    }

    .phone-notch-real {
        width: 50px;
        height: 15px;
        top: 10px;
    }

    .phone-screen-real {
        border-radius: 18px;
    }

    .phone-home-bar-real {
        width: 60px;
        height: 3px;
        bottom: 6px;
    }

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

@media (max-width: 480px) {
    .phone-frame-real {
        width: 100px;
        height: 220px;
        border-radius: 20px;
        padding: 5px;
    }

    .phone-notch-real {
        width: 40px;
        height: 12px;
        top: 8px;
        border-radius: 0 0 10px 10px;
    }

    .phone-screen-real {
        border-radius: 15px;
    }

    .phone-home-bar-real {
        width: 50px;
        bottom: 5px;
    }

    .phone-label {
        font-size: 0.7rem;
    }

    .realisation-logo {
        width: 70px;
        height: 70px;
    }

    .realisation-logo .logo-text {
        font-size: 0.7rem;
    }
}

/* ============================================
   BOUTONS ÉTAPE SUIVANTE
   ============================================ */

.next-step-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    margin-top: 40px;
}

.btn-next-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    background: transparent;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: all 0.4s ease;
    position: relative;
}

.btn-next-step span {
    position: relative;
    z-index: 2;
}

.btn-next-step i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    box-shadow:
        0 10px 30px rgba(99, 102, 241, 0.4),
        0 0 0 8px rgba(99, 102, 241, 0.1);
    animation: pulseCircle 2s infinite;
    transition: all 0.4s ease;
}

.btn-next-step:hover i {
    transform: translateY(5px) scale(1.1);
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.5),
        0 0 0 12px rgba(99, 102, 241, 0.15);
}

.btn-next-step:hover span {
    color: var(--secondary);
}

@keyframes pulseCircle {
    0% {
        box-shadow:
            0 10px 30px rgba(99, 102, 241, 0.4),
            0 0 0 8px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow:
            0 10px 30px rgba(99, 102, 241, 0.4),
            0 0 0 15px rgba(99, 102, 241, 0.05);
    }
    100% {
        box-shadow:
            0 10px 30px rgba(99, 102, 241, 0.4),
            0 0 0 8px rgba(99, 102, 241, 0.1);
    }
}

/* Version claire pour fonds sombres */
.btn-next-step-light {
    color: rgba(255, 255, 255, 0.9);
}

.btn-next-step-light i {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 8px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-next-step-light:hover i {
    background: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 12px rgba(255, 255, 255, 0.15);
}

.btn-next-step-light:hover span {
    color: white;
}

/* Responsive boutons suivant */
@media (max-width: 768px) {
    .next-step-wrapper {
        padding-top: 40px;
        margin-top: 20px;
    }

    .btn-next-step {
        padding: 20px 30px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .btn-next-step i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .btn-next-step {
        padding: 15px 20px;
        font-size: 0.8rem;
        gap: 12px;
    }

    .btn-next-step i {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ============================================
   IPHONE MOCKUP - SECTION VISIBILITÉ
   ============================================ */

.visual-card-improved {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.iphone-mockup {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.iphone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 20;
}

.iphone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #1a1a1a 40%, #0d0d0d 60%);
    border-radius: 50%;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1c1c1e 0%, #2c2c2e 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* Écran d'accueil iOS */
.ios-homescreen {
    padding: 50px 15px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ios-time {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 200;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 0;
}

.ios-date {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.ios-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 12px;
    padding: 0 5px;
    flex: 1;
}

.ios-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

.ios-app-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ios-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.ios-app span {
    font-size: 0.65rem;
    color: white;
    text-align: center;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* App mise en évidence */
.your-app-highlight {
    animation: pulseApp 2s infinite;
}

.your-app-highlight .ios-app-icon {
    box-shadow:
        0 0 20px rgba(99, 102, 241, 0.6),
        0 0 40px rgba(99, 102, 241, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.your-app-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 8px;
}

.your-app-icon img {
    border-radius: 8px;
    background: white;
}

.app-badge-notif {
    position: absolute;
    top: -5px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #FF3B30;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 1.5s infinite;
}

@keyframes pulseApp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Dock iOS */
.ios-dock {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    margin: auto 10px 15px;
}

.ios-dock-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

/* Flèche pointeur */
.app-pointer {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    right: -200px;
    top: 45%;
    animation: pointerBounce 2s infinite;
}

.pointer-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.pointer-text {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.pointer-text i {
    animation: arrowPulse 1s infinite;
}

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

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}

/* Stats améliorées */
.visual-stats-improved {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

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

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive iPhone Mockup */
@media (max-width: 992px) {
    .iphone-mockup {
        flex-direction: column;
    }

    .app-pointer {
        position: relative;
        right: auto;
        top: auto;
        flex-direction: column;
        margin-top: 20px;
    }

    .pointer-line {
        width: 3px;
        height: 30px;
    }

    .visual-stats-improved {
        flex-direction: column;
        width: 100%;
    }

    .stat-card {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .iphone-frame {
        width: 240px;
        height: 500px;
        border-radius: 40px;
        padding: 10px;
    }

    .iphone-frame::before {
        width: 120px;
        height: 25px;
    }

    .iphone-notch {
        width: 100px;
        height: 24px;
    }

    .iphone-screen {
        border-radius: 32px;
    }

    .ios-time {
        font-size: 2.8rem;
    }

    .ios-date {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .ios-apps-grid {
        gap: 15px 10px;
    }

    .ios-app-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .ios-app span {
        font-size: 0.6rem;
        max-width: 45px;
    }

    .ios-dock {
        gap: 12px;
        padding: 10px 15px;
    }

    .ios-dock-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .stat-card {
        padding: 15px 20px;
    }

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

    .stat-value {
        font-size: 1.4rem;
    }

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

@media (max-width: 480px) {
    .iphone-frame {
        width: 200px;
        height: 420px;
        border-radius: 35px;
    }

    .ios-homescreen {
        padding: 40px 10px 15px;
    }

    .ios-time {
        font-size: 2.2rem;
    }

    .ios-apps-grid {
        gap: 12px 8px;
    }

    .ios-app-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .ios-app span {
        font-size: 0.55rem;
    }

    .app-badge-notif {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        right: 5px;
    }

    .ios-dock-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .pointer-text {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .visual-stats-improved {
        gap: 15px;
    }
}


/* ============================================
   PARTNER OBLIGATIONS SECTION
   ============================================ */

.partner-obligations {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.partner-obligations .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.partner-obligations .section-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.partner-obligations .section-subtitle {
    color: var(--gray-600);
}

.obligations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.obligation-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

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

.obligation-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(99, 102, 241, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.05);
}

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

.obligation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.obligation-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.obligation-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.obligation-content p strong {
    color: var(--primary);
}

.obligation-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.obligation-tag.confidential {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.obligation-tag.support {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.obligation-tag.branding {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.obligation-tag.testimonial {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.obligation-tag.showcase {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.obligation-tag.network {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
}

.obligation-tag.feedback {
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
}

.obligation-tag.active {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

/* Obligations Summary */
.obligations-summary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.obligations-summary .summary-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.obligations-summary .summary-content {
    flex: 1;
}

.obligations-summary .summary-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.obligations-summary .summary-content p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.7;
    margin: 0;
}

.obligations-summary .summary-content p strong {
    color: #fcd34d;
}

.obligations-summary .summary-value {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 35px;
    text-align: center;
    flex-shrink: 0;
}

.summary-value .value-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.summary-value .value-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.summary-value .value-period {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Responsive Obligations */
@media (max-width: 1200px) {
    .obligations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .obligations-summary {
        flex-direction: column;
        text-align: center;
    }

    .obligations-summary .summary-content {
        order: 2;
    }

    .obligations-summary .summary-value {
        order: 1;
        width: 100%;
        max-width: 300px;
    }
}

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

    .obligations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .obligation-card {
        padding: 25px 20px;
    }

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

    .obligations-summary {
        padding: 30px 25px;
    }

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

    .summary-value .value-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .obligation-content h3 {
        font-size: 1rem;
    }

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

    .obligations-summary .summary-content h3 {
        font-size: 1.2rem;
    }

    .obligations-summary .summary-content p {
        font-size: 0.9rem;
    }
}

