@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #D5451B;
    --primary-light: #FF6B4A;
    --primary-dark: #B30026;
    --secondary: #FF9B45;
    --accent: #48BB78;
    --text: #0F172A;
    --text-light: #64748B;
    --text-lighter: #94A3B8;
    --surface: #FFFFFF;
    --surface-light: #F8FAFC;
    --glass: #F4E7E1;
    --shadow-sm: 0 2px 4px 0 rgb(0 0 0 / 0.06);
    --shadow: 0 8px 16px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 40px -12px rgb(0 0 0 / 0.2);
    --glow: 0 0 30px rgba(213, 69, 27, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: #FFFFFF;
    min-height: 100vh;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Advanced Glassmorphism Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.logo-img {
    height: 36px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Modern Button Styles */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(213, 69, 27, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(213, 69, 27, 0.35);
}

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

.btn-secondary {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text);
    border: 1.5px solid rgba(15, 23, 42, 0.12);
}

.btn-secondary:hover {
    background: rgba(213, 69, 27, 0.08);
    color: var(--primary);
    border-color: rgba(213, 69, 27, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(213, 69, 27, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 155, 69, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(72, 187, 120, 0.06) 0%, transparent 70%);
    animation: gradient-shift 20s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1) rotate(2deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.15s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta .btn {
    min-width: 180px;
    font-size: 1rem;
    padding: 1rem 2.25rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 65%;
    right: 8%;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 35%;
    right: 15%;
    animation-delay: 10s;
}

/* Solutions Section */
.solutions {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, var(--surface-light) 0%, #ffffff 100%);
    position: relative;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(213, 69, 27, 0.15);
    border-color: rgba(213, 69, 27, 0.15);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-header {
    text-align: center;
    margin-bottom: 2rem;
}

.solution-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(213, 69, 27, 0.25);
    position: relative;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(213, 69, 27, 0.35);
}

.solution-icon span {
    position: relative;
    z-index: 2;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.solution-card .subtitle {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.solution-features {
    margin: 2rem 0;
}

.features-list {
    list-style: none;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.875rem 0;
    padding-left: 2.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.features-list li:hover {
    color: var(--text);
    padding-left: 2.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.875rem;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent) 0%, #38A169 100%);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.25);
    transition: all 0.3s ease;
}

.features-list li:hover::before {
    transform: scale(1.1);
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(213, 69, 27, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 155, 69, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1;
}

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

/* Impact Section */
.impact {
    padding: 7rem 2rem;
    background: var(--surface);
}

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

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.impact-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.impact-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-features {
    list-style: none;
    margin: 2rem 0;
}

.impact-features li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.impact-features li:hover {
    padding-left: 3.25rem;
}

.impact-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(213, 69, 27, 0.25);
    transition: all 0.3s ease;
}

.impact-features li:hover::before {
    transform: scale(1.1) translateX(2px);
}

.impact-visual {
    background: linear-gradient(135deg, var(--surface-light) 0%, #E2E8F0 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.impact-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(213, 69, 27, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 155, 69, 0.08) 0%, transparent 60%);
}

.visual-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.visual-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

/* Final CTA */
.final-cta {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(213, 69, 27, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 155, 69, 0.12) 0%, transparent 50%);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    backdrop-filter: blur(20px);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.menu-toggle.active span {
    background: white !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .impact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 1.25rem;
        color: white !important;
        padding: 0.5rem 0;
    }

    .cta-buttons.desktop {
        display: none;
    }

    .nav-links.active .cta-buttons.desktop {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 90%;
        max-width: 320px;
    }

    .nav-links.active .cta-buttons.desktop .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .nav-links.active .cta-buttons.desktop .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .hero {
        padding-top: 72px;
        min-height: 95vh;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .solutions,
    .stats,
    .impact,
    .final-cta {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .solutions-grid {
        gap: 1.75rem;
    }

    .solution-card {
        padding: 2rem;
    }

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

    .nav-container {
        height: 72px;
        padding: 1rem 1.5rem;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
}

@media (min-width: 769px) {
    .nav-links .btn-primary,
    .nav-links .btn-primary:hover,
    .header.scrolled .nav-links .btn-primary,
    .header.scrolled .nav-links .btn-primary:hover {
        color: white !important;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    }
}

/* Legal Content Section */
.legal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

/* LinkedIn Preview Section */
.linkedin-preview {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.linkedin-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(213, 69, 27, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 155, 69, 0.1) 0%, transparent 50%);
}

.linkedin-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.linkedin-preview .section-header h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.linkedin-preview .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.linkedin-preview-grid {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.linkedin-preview-grid::-webkit-scrollbar {
    display: none;
}

.linkedin-preview-grid-inner {
    display: flex;
    gap: 2rem;
    padding: 0 2rem 2rem;
    width: max-content;
}

.linkedin-preview .linkedin-post {
    width: 380px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.linkedin-preview .linkedin-post iframe {
    width: 100%;
    border: none;
    min-height: 500px;
}

.linkedin-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .linkedin-preview {
        padding: 4rem 1.5rem;
    }

    .linkedin-preview-grid-inner {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .linkedin-preview .linkedin-post {
        width: 100%;
    }
}

.traceability-image {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.full-width-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1.5rem 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.video-container2 {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.feature-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}