/* ==========================================================================
   PARTIALS BRIDGE CSS
   Minimal styles needed for existing partials to work with clean CSS
   ========================================================================== */

/* ==========================================================================
   CUSTOM SCROLLBAR
   ========================================================================== */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #EC4899 #f3f4f6;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    border-radius: 10px;
    border: 2px solid #f3f4f6;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    border: 1px solid #f3f4f6;
}

/* ==========================================================================
   CSS VARIABLES FOR BEAUTY DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Beauty Colors */
    --beauty-primary: #EC4899;
    --beauty-secondary: #8B5CF6;
    --beauty-accent: #3B82F6;
    --beauty-gray-50: #f9fafb;
    --beauty-gray-100: #f3f4f6;
    --beauty-gray-200: #e5e7eb;
    --beauty-gray-300: #d1d5db;
    --beauty-gray-400: #9ca3af;
    --beauty-gray-500: #6b7280;
    --beauty-gray-600: #4b5563;
    --beauty-gray-700: #374151;
    --beauty-gray-800: #1f2937;
    --beauty-gray-900: #111827;

    /* Beauty Gradients */
    --gradient-beauty-primary: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    --gradient-beauty-soft: linear-gradient(135deg, #fef5f9 0%, #f3e8ff 100%);

    /* Beauty Spacing */
    --beauty-spacing-1: 0.25rem;
    --beauty-spacing-2: 0.5rem;
    --beauty-spacing-3: 0.75rem;
    --beauty-spacing-4: 1rem;
    --beauty-spacing-6: 1.5rem;
    --beauty-spacing-8: 2rem;
    --beauty-spacing-12: 3rem;
    --beauty-spacing-16: 4rem;
    --beauty-spacing-20: 5rem;
    --beauty-spacing-24: 6rem;

    /* Beauty Font Sizes */
    --beauty-font-size-sm: 0.875rem;
    --beauty-font-size-base: 1rem;
    --beauty-font-size-lg: 1.125rem;
    --beauty-font-size-xl: 1.25rem;
    --beauty-font-size-2xl: 1.5rem;
    --beauty-font-size-3xl: 1.875rem;
    --beauty-font-size-4xl: 2.25rem;
    --beauty-font-size-5xl: 3rem;

    /* Beauty Radius */
    --beauty-radius: 0.375rem;
    --beauty-radius-lg: 0.5rem;
    --beauty-radius-xl: 0.75rem;
    --beauty-radius-2xl: 1rem;
}

/* ==========================================================================
   HEADER & NAVIGATION STYLES
   ========================================================================== */

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

header.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

.border-b {
    border-bottom: 1px solid #e5e7eb;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.text-red-800 {
    color: #991b1b;
}

.bg-blue-600 {
    background-color: #3B82F6;
}

.hover\:bg-blue-700:hover {
    background-color: #2563eb;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.text-xs {
    font-size: 0.75rem;
}

.inline-flex {
    display: inline-flex;
}

.mr-1 {
    margin-right: 0.25rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-6 {
    margin-left: 1.5rem;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 40;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Aurora Background Effect */
#hero-aurora-bg {
    --aurora-color-1: #0ea5e9;
    --aurora-color-2: #ec4899;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 20% 30%, var(--aurora-color-1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, var(--aurora-color-2) 0%, transparent 50%);
    animation: aurora-flow 25s infinite linear;
    opacity: 0.15;
    overflow: hidden;
}

@keyframes aurora-flow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Particles container */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #fef5f9 0%, #f3e8ff 100%);
    overflow: hidden;
}

.hero-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    gap: 2rem;
}

.hero-main-content {
    text-align: center;
    padding: 2rem 0;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.hero-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-button--primary {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-product-preview {
    display: none; /* Hidden by default */
}

/* ==========================================================================
   PROBLEM AGITATION SECTION
   ========================================================================== */

.problem-agitation-section {
    padding: 4rem 0;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}

.problem-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: radial-gradient(circle at 20% 50%, #EC4899 0%, transparent 50%);
}

.problem-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

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

.problem-main-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.problem-cards-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.problem-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
}

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

/* ==========================================================================
   SOLUTION OVERVIEW SECTION
   ========================================================================== */

.solution-section {
    padding: 4rem 0;
    background: white;
}

/* Layout classes */
.adaptive-layout {
    display: grid;
    gap: 2rem;
}

.desktop-complex-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .desktop-complex-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.desktop-only-visual {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only-visual {
        display: block;
    }
}

.desktop-animate-in {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* AI Network Visualization */
.solution-visualization {
    position: relative;
    padding: 2rem;
}

.ai-network {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-node-satellite {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Beauty animations */
@keyframes beautyPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.6);
    }
}

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

/* Solution Grid */
.solution-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.solution-card {
    padding: 2rem;
    background: linear-gradient(135deg, #fef5f9 0%, #f3e8ff 100%);
    border-radius: 0.5rem;
    text-align: center;
}

.solution-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--beauty-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-beauty-soft);
    border-radius: var(--beauty-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solution-icon svg {
    width: 24px;
    height: 24px;
    color: var(--beauty-primary);
}

/* Text content spacing */
.mobile-spacing-compact {
    padding: 1rem;
}

.desktop-spacing-generous {
    padding: 2rem;
}

@media (min-width: 1024px) {
    .desktop-spacing-generous {
        padding: 3rem;
    }
}

/* Beauty variables additions */
:root {
    --beauty-tertiary: #3B82F6;
    --beauty-radius-full: 9999px;
    --beauty-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --beauty-shadow-glow: 0 0 60px rgba(236, 72, 153, 0.3);
    --beauty-white: #ffffff;

    /* Additional gradients */
    --gradient-beauty-glow: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-30px, 30px); }
    75% { transform: translate(-30px, -30px); }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   DASHBOARD MOCKUP & CHAT WIDGET
   ========================================================================== */

.dashboard-mockup {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-browser-frame {
    background: #f3f4f6;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.browser-dots {
    display: flex;
    gap: 0.25rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.browser-url {
    flex: 1;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

.dashboard-content {
    padding: 1.5rem;
    background: white;
}

.chat-widget-mockup {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    position: relative;
}

.widget-header {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.widget-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.widget-title {
    flex: 1;
    font-weight: 600;
}

.widget-status {
    background: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
}

.widget-body {
    padding: 1.5rem;
    min-height: 300px;
    /* Removed max-height to prevent internal scroll */
    height: auto;
    overflow: visible; /* Changed from auto to visible */
    background: #fafafa;
}

.chat-message {
    margin-bottom: 1rem;
    animation: fadeInUp 0.3s ease;
}

.chat-message.user {
    text-align: right;
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 1rem 1rem 0 1rem;
    max-width: 80%;
}

.chat-message.ai .message-bubble {
    background: white;
    color: #374151;
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 1rem 1rem 1rem 0;
    max-width: 80%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.widget-footer {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.widget-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    outline: none;
    font-size: 0.875rem;
}

.widget-input:focus {
    border-color: #EC4899;
}

.mic-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.mic-button:hover {
    transform: scale(1.1);
}

.mic-button.recording {
    animation: pulse 1s infinite;
    background: #ef4444;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #EC4899;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.pricing-currency {
    font-size: 1.5rem;
    color: #6b7280;
}

.pricing-period {
    color: #6b7280;
}

.pricing-features {
    margin: 2rem 0;
    text-align: left;
}

.pricing-feature {
    padding: 0.5rem 0;
    color: #6b7280;
}

.pricing-cta {
    margin-top: 2rem;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.section-bg-effect {
    background: linear-gradient(135deg, #fef5f9 0%, #f3e8ff 100%);
}

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

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (min-width: 768px) {
    .hero-layout-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-main-content {
        text-align: left;
    }

    .hero-cta-section {
        flex-direction: row;
        justify-content: flex-start;
    }

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

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

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

    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   BEAUTY DESIGN SYSTEM CLASSES
   ========================================================================== */

.beauty-heading {
    font-weight: 700;
    line-height: 1.2;
    color: var(--beauty-gray-900);
}

.beauty-text {
    line-height: 1.6;
    color: var(--beauty-gray-700);
}

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

.beauty-mb-4 { margin-bottom: 1rem; }
.beauty-mb-6 { margin-bottom: 1.5rem; }
.beauty-mb-8 { margin-bottom: 2rem; }
.beauty-mb-12 { margin-bottom: 3rem; }
.beauty-mb-16 { margin-bottom: 4rem; }
.beauty-mb-20 { margin-bottom: 5rem; }

/* Beauty spacing utilities */
.beauty-spacing-2 { margin: 0.5rem; }
.beauty-spacing-4 { margin: 1rem; }
.beauty-spacing-6 { margin: 1.5rem; }
.beauty-spacing-8 { margin: 2rem; }
.beauty-spacing-12 { margin: 3rem; }
.beauty-spacing-16 { margin: 4rem; }
.beauty-spacing-20 { margin: 5rem; }
.beauty-spacing-24 { margin: 6rem; }

/* Beauty font sizes */
.beauty-font-size-xs { font-size: 0.75rem; }
.beauty-font-size-sm { font-size: 0.875rem; }
.beauty-font-size-base { font-size: 1rem; }
.beauty-font-size-lg { font-size: 1.125rem; }
.beauty-font-size-xl { font-size: 1.25rem; }
.beauty-font-size-2xl { font-size: 1.5rem; }
.beauty-font-size-3xl { font-size: 1.875rem; }
.beauty-font-size-4xl { font-size: 2.25rem; }
.beauty-font-size-5xl { font-size: 3rem; }

.beauty-bg-pattern {
    position: relative;
    background: var(--gradient-beauty-soft);
}

.beauty-card {
    background: white;
    border-radius: var(--beauty-radius-2xl);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--beauty-gray-100);
}

.beauty-card-glow {
    position: relative;
    transition: all 0.3s ease;
}

.beauty-card-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
}

.beauty-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.beauty-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile/Desktop Layout Classes */
.mobile-stack {
    display: grid;
    gap: 1.5rem;
}

.desktop-three-column {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .desktop-three-column {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Icon Fix - Prevent giant icons */
.problem-card-icon,
.feature-icon,
.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.problem-card-icon svg,
.feature-icon svg {
    width: 24px;
    height: 24px;
}

/* Problem Cards Styling */
.problem-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--beauty-gray-900);
}

.problem-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--beauty-gray-600);
}

/* Differentiation Section */
.differentiation-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef5f9 0%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.diff-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: radial-gradient(circle at 50% 50%, #EC4899 0%, transparent 70%);
}

.diff-header {
    text-align: center;
    margin-bottom: 3rem;
}

.diff-main-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.diff-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.diff-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Tablet and up - 2 columns max */
@media (min-width: 768px) {
    .diff-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.diff-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.diff-card-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.diff-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-beauty-soft);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.diff-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--beauty-primary);
}

.diff-icon-1 { background: rgba(236, 72, 153, 0.1); }
.diff-icon-2 { background: rgba(139, 92, 246, 0.1); }
.diff-icon-3 { background: rgba(59, 130, 246, 0.1); }
.diff-icon-4 { background: rgba(16, 185, 129, 0.1); }

.diff-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.diff-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

.differentiation-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.differentiation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Trust Signals Section */
.trust-signals-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Reduced from 250px */
    gap: 1rem; /* Reduced from 2rem */
    margin-top: 2rem; /* Reduced from 3rem */
    padding: 0 0.5rem; /* Added small padding */
}

.trust-card {
    text-align: center;
    padding: 1rem; /* Reduced from 2rem */
    background: white;
    border-radius: 0.75rem; /* Slightly smaller radius */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Lighter shadow */
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.trust-icon {
    width: 48px; /* Reduced from 64px */
    height: 48px; /* Reduced from 64px */
    margin: 0 auto 0.75rem; /* Reduced margin */
    background: var(--gradient-beauty-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 24px; /* Reduced from 32px */
    height: 24px; /* Reduced from 32px */
    color: var(--beauty-primary);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-beauty-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 1rem;
    color: var(--beauty-gray-600);
    margin-top: 0.5rem;
}

/* How It Works Section */
.how-it-works-section,
#how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef5f9 0%, #f3e8ff 100%);
    position: relative;
}

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

.how-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.how-subtitle {
    font-size: 1.125rem;
    color: var(--beauty-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Create connecting lines between steps on desktop */
@media (min-width: 1024px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 150px;
        right: 150px;
        height: 2px;
        background: linear-gradient(90deg,
            transparent 0%,
            var(--beauty-primary) 20%,
            var(--beauty-primary) 80%,
            transparent 100%);
        opacity: 0.2;
        z-index: 0;
    }
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 1rem auto;
    background: var(--gradient-beauty-soft);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--beauty-primary);
}

.step-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--beauty-gray-900);
}

.step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--beauty-gray-600);
}

/* Security Section */
.security-section,
#security-new {
    padding: 6rem 0;
    background: white;
    position: relative;
}

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

.security-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-subtitle {
    font-size: 1.125rem;
    color: var(--beauty-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.security-grid,
.beauty-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

/* Desktop specific 3 columns */
@media (min-width: 1024px) {
    .beauty-desktop-three {
        grid-template-columns: repeat(3, 1fr);
    }

    .beauty-never-two-columns {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Tablet - single column instead of 2 */
@media (min-width: 768px) and (max-width: 1023px) {
    .beauty-never-two-columns {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.security-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--beauty-gray-100);
}

.security-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--beauty-primary);
}

.security-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-beauty-soft);
    border-radius: 0.5rem;
}

.security-icon svg {
    width: 24px;
    height: 24px;
    color: var(--beauty-primary);
}

.security-content {
    flex: 1;
}

.security-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--beauty-gray-900);
}

.security-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--beauty-gray-600);
}

/* Use Cases Section */
.key-use-cases-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.key-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--beauty-gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    border-color: var(--beauty-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.use-case-card:hover .use-case-gradient {
    opacity: 1;
}

.use-case-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--beauty-primary) 0%, var(--beauty-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-beauty-soft);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.use-case-icon svg {
    width: 28px;
    height: 28px;
    color: var(--beauty-primary);
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--beauty-gray-900);
}

.use-case-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--beauty-gray-600);
    margin-bottom: 1rem;
}

.use-case-features {
    list-style: none;
    padding: 0;
}

.use-case-features li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--beauty-gray-500);
    display: flex;
    align-items: center;
}

.use-case-features li:before {
    content: "✓";
    color: var(--beauty-primary);
    margin-right: 0.5rem;
    font-weight: 700;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: var(--gradient-beauty-primary);
    color: white;
    text-align: center;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button-primary,
.beauty-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--beauty-primary);
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}

.cta-button-primary:hover,
.beauty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Beauty button specific styles */
.beauty-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
}

.beauty-btn.hover-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    transition: width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.beauty-btn.hover-glow:hover::before {
    width: 200%;
    height: 200%;
}

.beauty-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile enhanced CTA button */
.mobile-cta-enhanced {
    font-size: 1.125rem !important;
    padding: 1.25rem 2rem !important;
}

@media (min-width: 768px) {
    .mobile-cta-enhanced {
        font-size: 1.25rem !important;
        padding: 1.5rem 3rem !important;
    }
}

/* Touch optimized */
.touch-optimized {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Mouse optimized */
.mouse-optimized:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Beauty spacing variables */
:root {
    --beauty-spacing-3: 0.75rem;
    --beauty-spacing-5: 1.25rem;
    --beauty-spacing-8: 2rem;
    --beauty-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --beauty-transition-base: 0.3s ease;
}

/* Brand Module Section */
.brand-module-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef5f9 0%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.brand-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.brand-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-beauty-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--beauty-gray-600);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.brand-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.brand-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--gradient-beauty-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon svg {
    width: 32px;
    height: 32px;
    color: var(--beauty-primary);
}

.brand-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-beauty-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--beauty-gray-500);
    margin-top: 0.5rem;
}

/* How it works steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--gradient-beauty-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--beauty-gray-600);
    line-height: 1.6;
}

/* Footer Styles */
.footer-section {
    background: var(--beauty-gray-900);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--beauty-primary);
}

/* Additional utility classes for partials */
.max-w-7xl { max-width: 80rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 3rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-lg { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); }
.bg-gradient-to-br { background: linear-gradient(to bottom right, var(--beauty-gray-50), var(--beauty-gray-100)); }
.from-primary-50 { --tw-gradient-from: #fef5f9; }
.to-purple-50 { --tw-gradient-to: #f3e8ff; }

/* Floating elements animations */
.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    opacity: 0.1;
    animation: float-random 20s infinite ease-in-out;
}

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

.floating-element.delay-2 {
    top: 20%;
    right: 10%;
    animation-delay: 5s;
}

.floating-element.delay-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

.floating-element.delay-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

/* Additional animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Inset positioning */
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Flex utilities */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Z-index utilities */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Width utilities */
.w-6 { width: 1.5rem; }
.w-4 { width: 1rem; }
.w-20 { width: 5rem; }
.h-6 { height: 1.5rem; }
.h-4 { height: 1rem; }

/* Responsive grid utilities */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:flex { display: flex !important; }
    .md\:hidden { display: none !important; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .footer-content { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   MOBILE SCROLL FIX OVERRIDE - CRITICAL!
   ========================================================================== */

@media (max-width: 767px) {
    /* CRITICAL FIX: Enable single-finger scrolling on mobile */
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        position: relative !important;
        height: auto !important;
        min-height: 100vh !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important; /* Allow vertical scroll */
        overscroll-behavior-y: contain !important;
    }

    main {
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        position: relative !important;
    }

    /* Sections should prevent overflow for mobile */
    .hero-section,
    .problem-agitation-section {
        overflow: hidden !important;
        max-height: none !important;
        height: auto !important;
    }

    /* Dashboard and widget elements - prevent internal scrolling */
    .widget-body,
    .dashboard-mockup,
    .chat-widget {
        overflow: hidden !important;
        max-height: none !important;
        height: auto !important;
    }

    /* General sections - prevent any unwanted overflow */
    section {
        overflow-x: hidden !important;
        max-height: none !important;
        height: auto !important;
    }

    /* Fix grid layouts for mobile - prevent box cutting */
    .security-grid,
    .how-it-works-grid,
    .beauty-grid-3col {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
    }

    /* Special handling for trust-grid */
    .trust-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* Ensure trust-signals section doesn't cut content - ULTRA FIX */
    .trust-signals-section,
    #trust-signals {
        padding: 2rem 1rem !important;
        overflow: visible !important;
        width: 100% !important;
    }

    .trust-signals-section .container,
    #trust-signals .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Override any px-4, px-6 classes in trust section */
    .trust-signals-section .px-4,
    .trust-signals-section .px-6,
    #trust-signals .px-4,
    #trust-signals .px-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* OVERRIDE INLINE STYLES in trust-signals metrics */
    #trust-signals div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    #trust-signals div[style*="text-align: center; flex: 1"] {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
        text-align: left !important;
        padding: 0.5rem !important;
    }

    #trust-signals div[style*="width: 4rem; height: 4rem"] {
        width: 2.5rem !important;
        height: 2.5rem !important;
        margin: 0 !important;
    }

    /* Fix cards on mobile */
    .security-card,
    .step-card {
        width: 100% !important;
        margin: 0 !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
    }

    /* Special fix for trust-card on mobile - ULTRA COMPACT */
    .trust-card {
        width: calc(100vw - 2rem) !important; /* Account for viewport padding */
        margin: 0 !important;
        padding: 0.75rem !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.75rem !important;
        background: white !important;
        border-radius: 0.5rem !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    }

    .trust-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important; /* Prevent shrinking */
        flex-shrink: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .trust-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .trust-content {
        flex: 1 !important;
        min-width: 0 !important; /* Allow text truncation */
        overflow: hidden !important;
    }

    .trust-card h3,
    .trust-card p {
        text-align: left !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }

    .trust-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
    }

    .trust-card p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        color: #6b7280 !important;
    }

    /* Fix brand-module layout on mobile */
    .brand-products-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .brand-product-card {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1rem !important;
        background: white !important;
        border-radius: 0.75rem !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }

    .brand-product-icon {
        flex-shrink: 0 !important;
    }

    .brand-product-content {
        flex: 1 !important;
        text-align: left !important;
    }

    .brand-product-title {
        font-weight: 600 !important;
        color: #1f2937 !important;
        margin-bottom: 0.25rem !important;
    }

    .brand-product-subtitle {
        font-size: 0.875rem !important;
        color: #6b7280 !important;
    }

    .brand-ai-icon {
        display: none !important; /* Hide on mobile for cleaner layout */
    }

    /* Prevent any fixed positioning */
    .hero-section {
        position: relative !important;
        height: auto !important;
    }
}