/* ============================================
   Kreebo.com - Main Stylesheet
   Based on Kreebo Assessment Platform Design
   ============================================ */

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
    /* Kreebo Brand Colors */
    --kreebo-orange-50: #FFF5F2;
    --kreebo-orange-100: #FFE8E0;
    --kreebo-orange-200: #FFD1C2;
    --kreebo-orange-300: #FFB399;
    --kreebo-orange-400: #FF8A66;
    --kreebo-orange-500: #FF6B35;
    --kreebo-orange-600: #E55A2B;
    --kreebo-orange-700: #CC4921;
    --kreebo-orange-800: #A33B19;
    --kreebo-orange-900: #7A2C12;

    --kreebo-yellow-50: #FFFBF0;
    --kreebo-yellow-100: #FFF3D4;
    --kreebo-yellow-200: #FFE8A8;
    --kreebo-yellow-300: #FFDD7D;
    --kreebo-yellow-400: #FED555;
    --kreebo-yellow-500: #FDB833;
    --kreebo-yellow-600: #E5A21F;
    --kreebo-yellow-700: #CC8B15;
    --kreebo-yellow-800: #A3710F;
    --kreebo-yellow-900: #7A5509;

    --kreebo-green-50: #F1F8F5;
    --kreebo-green-100: #DCEEE5;
    --kreebo-green-200: #B8DDC9;
    --kreebo-green-300: #8BC9A8;
    --kreebo-green-400: #6AB88A;
    --kreebo-green-500: #4CAF50;
    --kreebo-green-600: #3D9643;
    --kreebo-green-700: #2F7D36;
    --kreebo-green-800: #23632A;
    --kreebo-green-900: #194A1F;

    --kreebo-purple-50: #F5F3FF;
    --kreebo-purple-100: #EDE9FE;
    --kreebo-purple-200: #DDD6FE;
    --kreebo-purple-300: #C4B5FD;
    --kreebo-purple-400: #A78BFA;
    --kreebo-purple-500: #8B5CF6;
    --kreebo-purple-600: #7C3AED;
    --kreebo-purple-700: #6D28D9;
    --kreebo-purple-800: #5B21B6;
    --kreebo-purple-900: #4C1D95;

    /* Neutral Colors */
    --neutral-50: #F8FAFC;
    --neutral-100: #F1F5F9;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5FF;
    --neutral-400: #94A8C8;
    --neutral-500: #64748B;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1E293B;
    --neutral-900: #0F172A;

    /* Brand Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FDB833 100%);
    --gradient-secondary: linear-gradient(135deg, #FDB833 0%, #4CAF50 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --gradient-accent: linear-gradient(135deg, #FF8A66 0%, #FFD1C2 100%);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-display: 'Baloo 2', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Playful Accents */
    --kreebo-sky: #E0F3FF;
    --kreebo-lilac: #F1E8FF;
    --kreebo-pink: #FFE8F4;
    --kreebo-mint: #E5FFF4;
    --card-glow: 0 15px 30px rgba(255, 107, 53, 0.12);
}

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

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-900);
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 36%),
        radial-gradient(circle at 82% 12%, rgba(253, 184, 51, 0.14) 0%, transparent 34%),
        radial-gradient(circle at 28% 72%, rgba(139, 92, 246, 0.12) 0%, transparent 42%),
        linear-gradient(135deg, #FFF7ED 0%, #F2E9FF 55%, #E5F8FF 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(180px 180px at 20% 25%, rgba(255, 255, 255, 0.7) 0%, transparent 65%),
        radial-gradient(220px 220px at 80% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
        radial-gradient(240px 240px at 60% 75%, rgba(255, 255, 255, 0.65) 0%, transparent 70%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    color: var(--neutral-800);
}

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

/* ============================================
   Layout & Container
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-2xl);
    }
}

.section-padding {
    padding: var(--spacing-3xl) 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: var(--spacing-4xl) 0;
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-700);
    transition: color var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--kreebo-orange-500);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neutral-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

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

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

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px var(--spacing-xl) var(--spacing-2xl);
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-slow);
        overflow-y: auto;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: var(--spacing-md);
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        margin-top: var(--spacing-lg);
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: white;
    color: var(--kreebo-orange-500);
    border-color: var(--kreebo-orange-500);
}

.btn-secondary:hover {
    background: var(--kreebo-orange-50);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;    
    overflow: hidden;
    background: url('../assets/images/create_story_bg.png') center center / cover no-repeat;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    color: white;
    isolation: isolate;
}

.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(253, 184, 51, 0.6), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 107, 53, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(253, 184, 51, 0.5), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.6), transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.8;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (min-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 968px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.badge-emoji {
    font-size: 1.25rem;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    color: white;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
}

@media (min-width: 968px) {
    .hero-description {
        margin-left: 0;
    }
}

@media (max-width: 967px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .hero-highlight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    backdrop-filter: blur(8px);
}

.highlight-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.highlight-title {
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

.store-button {
    display: inline-block;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.store-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.store-button img {
    display: block;
    height: 60px;
    width: auto;
}

@media (min-width: 968px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.hero-trust {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-xl);
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 4s ease-in-out infinite;
}

.floating-card .emoji {
    font-size: 1.5rem;
}

/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-particles .particle {
    position: absolute;
    bottom: -50px;
    font-size: 2rem;
    opacity: 0.2;
    animation: floatUp 10s linear infinite;
}

/* Kreebo Mascot GIF */
.kreebo-mascot {
    position: fixed;
    bottom: 0;
    left: 10px;
    width: 200px;
    height: 200px;
    z-index: 10;
    pointer-events: none;
}

.kreebo-mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive sizing for mascot */
@media (min-width: 768px) {
    .kreebo-mascot {
        width: 280px;
        height: 280px;
    }
}

@media (min-width: 1024px) {
    .kreebo-mascot {
        width: 350px;
        height: 350px;
    }
}

/* Child with Tablet (Bottom Right) */
.child-with-tablet {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 400px;
    z-index: 10;
    pointer-events: none;
    display: none; /* Hidden on mobile/tablet */
}

.child-with-tablet img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* Speech Bubble for Child */
.child-with-tablet .speech-bubble {
    position: absolute;
    right: 120px;
    bottom: 450px;
    max-width: 250px;
    background: #7C3AED;
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border-bottom-right-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.child-with-tablet .speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 14px;
    width: 14px;
    height: 14px;
    background: #7C3AED;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

/* Show child with tablet on tablet and larger screens */
@media (min-width: 768px) {
    .child-with-tablet {
        display: block;
        width: 300px;
        height: 350px;
    }
    
    .child-with-tablet .speech-bubble {
        right: 80px;
        bottom: 300px;
        max-width: 200px;
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .child-with-tablet {
        width: 450px;
        height: 500px;
    }
    
    .child-with-tablet .speech-bubble {
        right: 120px;
        bottom: 450px;
        max-width: 250px;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Hide floating particles on mobile for performance */
@media (max-width: 767px) {
    .floating-particles {
        display: none;
    }
    
    .kreebo-mascot {
        width: 150px;
        height: 150px;
    }
}

.card-1 {
    bottom: -15%;
    left: 0%;    
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    top: 0%;
    left: -10%;
    animation-delay: 2s;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-3xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--kreebo-orange-500);
    margin-bottom: var(--spacing-md);
}

.section-label.white {
    color: white;
}

.section-title {
    margin-bottom: var(--spacing-md);
    color: var(--neutral-900);
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: 1.125rem;
    color: var(--neutral-700);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Pillars Grid
   ============================================ */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 640px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pillar-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF4EC 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 53, 0.15);
    box-shadow: var(--card-glow);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.pillar-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.pillar-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--neutral-900);
}

.pillar-card p {
    color: var(--neutral-700);
}

/* ============================================
   How It Works - Steps
   ============================================ */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

@media (min-width: 968px) {
    .steps-container {
        flex-direction: row;
        align-items: center;
    }
}

.step {
    flex: 1;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.step-content {
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F1FF 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(124, 58, 237, 0.12);
    box-shadow: var(--card-glow);
    text-align: center;
    transition: all var(--transition-base);
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.step-content p {
    color: var(--neutral-600);
}

.step-connector {
    display: none;
}

@media (min-width: 968px) {
    .step-connector {
        display: block;
        width: 60px;
        height: 2px;
        background: var(--gradient-primary);
        align-self: center;
        margin-top: -100px;
    }
}

/* ============================================
   Background Variants
   ============================================ */
.bg-light {
    background-color: var(--neutral-100);
}

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

.bg-gradient .section-description,
.bg-gradient p,
.bg-gradient .section-title,
.bg-gradient .section-label {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Comparison Grid
   ============================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

@media (min-width: 968px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comparison-card {
    background: #FFFFFF;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: var(--card-glow);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.comparison-emoji {
    font-size: 2rem;
}

.comparison-header h3 {
    font-size: 1.25rem;
    color: var(--neutral-800);
}

.comparison-list {
    margin-bottom: var(--spacing-md);
}

.comparison-list li {
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    position: relative;
    padding-left: 2rem;
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
}

.comparison-list.old li {
    background: var(--neutral-100);
    color: var(--neutral-600);
}

.comparison-list.old li::before {
    background: var(--neutral-400);
}

.comparison-list.new li {
    background: var(--kreebo-green-50);
    color: var(--kreebo-green-700);
    font-weight: 500;
}

.comparison-list.new li::before {
    background: var(--kreebo-green-500);
}

.comparison-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--kreebo-orange-500);
    margin: var(--spacing-md) 0;
}

/* ============================================
   Split Content Sections
   ============================================ */
.split-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (min-width: 968px) {
    .split-content {
        grid-template-columns: 1fr 1fr;
    }

    .split-content.reverse {
        direction: rtl;
    }

    .split-content.reverse > * {
        direction: ltr;
    }
}

.split-text {
    text-align: center;
}

@media (min-width: 968px) {
    .split-text {
        text-align: left;
    }
}

.features-list {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.feature-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 243, 212, 0.5), rgba(240, 235, 255, 0.7));
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    border: 2px dashed rgba(255, 107, 53, 0.15);
}

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

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.feature-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

@media (min-width: 968px) {
    .cta-group {
        justify-content: flex-start;
    }
}

/* ============================================
   Safety Grid
   ============================================ */
.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 640px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .safety-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.safety-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #EFFFF7 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.18);
    transition: all var(--transition-base);
}

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

.safety-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.safety-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.safety-card p {
    color: var(--neutral-600);
    font-size: 0.875rem;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.about-subtitle {
    font-size: 1.75rem;
    color: white;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.recognition {
    margin-top: var(--spacing-3xl);
}

.recognition-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: left;
}

.badge-emoji.large {
    font-size: 3rem;
}

.recognition-badge h4 {
    font-size: 1.125rem;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-xs);
}

.recognition-badge p {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

/* ============================================
   Demo Section
   ============================================ */
.demo-card {
    background: white;
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.demo-content {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.demo-content h2 {
    margin-bottom: var(--spacing-md);
}

.demo-content p {
    color: var(--neutral-600);
    font-size: 1.125rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--kreebo-orange-500);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.contact-card a {
    color: var(--kreebo-orange-500);
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-card a:hover {
    color: var(--kreebo-orange-600);
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 968px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    color: var(--neutral-400);
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--neutral-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-300);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--kreebo-orange-500);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column a {
    color: var(--neutral-400);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--kreebo-orange-400);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--neutral-800);
    text-align: center;
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 767px) {
    .section-padding {
        padding: var(--spacing-2xl) 0;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    position: relative;
    overflow: hidden;
    background: url('../assets/images/create_story_bg.png') center center / cover no-repeat;
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery .section-header {
    color: white;
}

.gallery .section-label,
.gallery .section-title,
.gallery .section-description {
    color: white;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.25s;
}

.gallery-tab:hover {
    border-color: #FFB399;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-tab.active {
    background: linear-gradient(135deg, #FF6B35 0%, #FDB833 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.gallery-content { display: none; }
.gallery-content.active { display: block; animation: fadeIn 0.3s ease; }

.lightgallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.lightgallery a {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.25s;
    background: white;
    cursor: pointer;
}

.lightgallery a:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.lightgallery img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.lightgallery a:hover img { transform: scale(1.05); }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    transform: translateY(100%);
    transition: transform 0.25s;
}

.lightgallery a:hover .gallery-caption { transform: translateY(0); }

@media (max-width: 768px) {
    .lightgallery { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
    .lightgallery img { height: 280px; }
    .gallery-tab { padding: 0.5rem 1.5rem; font-size: 0.875rem; }
}

/* ============================================
   Blog Styles
   ============================================ */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, var(--kreebo-orange-600) 0%, var(--kreebo-yellow-500) 50%, var(--kreebo-orange-500) 100%);
    padding: 10rem 0 5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-header::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.05'%3E%3Cpath d='M30 30l15-15v30l-15 15-15-15V15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.blog-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-header .page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-header .page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.blog-header-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.blog-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: var(--neutral-50);
    min-height: 50vh;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.blog-card-category {
    background: var(--kreebo-orange-100);
    color: var(--kreebo-orange-700);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--kreebo-orange-600);
}

.blog-card-excerpt {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card-author span {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.blog-card-read-more {
    color: var(--kreebo-orange-600);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--transition-fast);
}

.blog-card-read-more:hover {
    gap: 0.5rem;
}

/* Loading State */
.blog-loading {
    text-align: center;
    padding: 4rem 0;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--neutral-200);
    border-top-color: var(--kreebo-orange-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error State */
.blog-error {
    text-align: center;
    padding: 4rem 0;
    color: var(--neutral-600);
}

/* Empty State */
.blog-empty {
    text-align: center;
    padding: 4rem 0;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.blog-empty h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.blog-empty p {
    color: var(--neutral-500);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    background: white;
    color: var(--kreebo-orange-600);
    border: none;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: var(--neutral-100);
}

/* ============================================
   Blog Article (Single Post) Styles
   ============================================ */

.blog-article {
    padding: 6rem 0 4rem;
    background: white;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--kreebo-orange-600);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: gap var(--transition-fast);
}

.back-to-blog:hover {
    gap: 0.75rem;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.article-category {
    background: var(--kreebo-orange-100);
    color: var(--kreebo-orange-700);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--neutral-800);
}

.author-role {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.article-image {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-body {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-700);
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin: 2rem 0 1rem;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--neutral-900);
    margin: 1.5rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    border-left: 4px solid var(--kreebo-orange-500);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--neutral-600);
}

.article-body img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.article-body a {
    color: var(--kreebo-orange-600);
    text-decoration: underline;
}

.article-body code {
    background: var(--neutral-100);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-xs);
    font-size: 0.9em;
}

/* Share Section */
.article-share {
    max-width: 700px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-200);
}

.article-share h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-twitter:hover {
    background: #1a8cd8;
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-facebook:hover {
    background: #166fe5;
}

.share-linkedin {
    background: #0A66C2;
    color: white;
}

.share-linkedin:hover {
    background: #095196;
}

.share-copy {
    background: var(--neutral-200);
    color: var(--neutral-700);
}

.share-copy:hover {
    background: var(--neutral-300);
}

/* Related Posts */
.related-posts {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.related-posts h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neutral-800);
}

/* Blog Responsive */
@media (max-width: 767px) {
    .blog-header {
        padding: 7rem 0 3rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-meta {
        flex-wrap: wrap;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}
