/* 
   Theme: Doc AI Enterprise - Vibrant & Interactive
   Updated based on user feedback
*/

:root {
    --bg-dark: #020617;
    --bg-darker: #000000;
    --primary: #4f46e5;
    /* Indio/Blue-ish */
    --primary-bright: #6366f1;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius: 16px;
}

/* ... Reset & Base (Same) ... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.lang-tr .en-text,
body.lang-en .tr-text {
    display: none !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.hidden-header {
    display: none;
}

/* Only for SEO, hidden visually in favor of typewriter */

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: white;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

/* 3. Fancy Headers (VIBRANT) */
.fancy-header {
    margin-bottom: 4rem;
    position: relative;
    padding-top: 1rem;
}

.fancy-header.centered {
    text-align: center;
}

.header-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: white;
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    /* Vibrant Purple-Pink */
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
    position: relative;
    top: -5px;
}

.fancy-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to right, #ffffff 40%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.header-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    /* Tri-color gradient */
    border-radius: 3px;
    margin-top: 1.2rem;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.fancy-header.centered .header-line {
    margin: 1.2rem auto 0;
}

/* Buttons with Glow */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #3b82f6, #4f46e5);
    color: white;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
}

.btn:active {
    transform: scale(0.95);
}

/* Animation Utility */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s;
}

.glow-effect:hover::after {
    transform: scale(1);
}

/* Navbar (Glass) */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Premium Logo */
.logo-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    text-decoration: none;
    position: relative;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    transition: transform 0.3s ease;
}

.logo-premium:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    position: relative;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.logo-premium:hover .logo-glow {
    opacity: 1;
}

/* Language Toggle Button with Flag */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    /* Glassy background */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* 5. Big Multilingual Tags (VIBRANT & GLOWING) */
.feature-tags-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.tag-box-big {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    /* Darker base */
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: 0.3s;
    overflow: hidden;
    /* Gradient Border Trick */
    border: 1px solid transparent;
    /* Fallback */
    background-clip: padding-box;
    /* Important structure */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient Border using pseudo-element */
.tag-box-big::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(168, 85, 247, 0.5));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tag-box-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    background: rgba(30, 41, 59, 0.8);
}

/* Enhanced Border on Hover */
.tag-box-big:hover::before {
    background: linear-gradient(135deg, #3b82f6, #ec4899);
}

.tag-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #60a5fa;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.tag-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: white;
    font-weight: 700;
}

.tag-info span {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* HERO SECTION - Deep Blue/Purple Gradient from Example */
.hero {
    padding: 8rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, #1e1b4b 0%, #020617 50%, #000000 100%);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Typewriter */
.typewriter-container {
    /* min-height: 120px; Removed fixed height to flow naturally */
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

.typewriter-text {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Ensure smooth typing effect */
}

.hero-sub {
    font-size: 1.25rem;
    color: #e2e8f0;
    /* Brighter than slate-400 */
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* Subtle shadow for readability */
}

.cursor {
    animation: blink 1s step-end infinite;
    color: #a78bfa;
    font-weight: 300;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Hero Visual: Styles for "Invoice #20324" Mockup */
.invoice-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    color: #333;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    font-family: 'Inter', sans-serif;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.invoice-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.circle-avatar {
    width: 40px;
    height: 40px;
    background: #cbd5e1;
    border-radius: 50%;
}

.invoice-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.line-block {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 0.8rem;
}

.large {
    width: 60%;
}

.medium {
    width: 40%;
}

.date-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.date-badge span {
    font-size: 0.7rem;
    color: #64748b;
}

.date-badge strong {
    font-size: 1rem;
    color: #0f172a;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.badge-orange {
    background: var(--accent-orange);
    top: 35%;
    left: -20px;
    animation-delay: 1s;
}

.badge-green {
    background: var(--accent-green);
    bottom: 15%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.terms-box {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
    padding-top: 1rem;
    font-weight: 700;
    color: #64748b;
}

.total-amount {
    font-size: 1.5rem;
    color: #0f172a;
}

/* MULTILINGUAL SECTION */
.multilingual-section {
    padding: 6rem 0;
    background: #0f172a;
    overflow: hidden;
}

.multi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- PREMIUM DESIGN OVERHAUL --- */

/* Comparison Section (Chaos vs Order) */
.comparison-section {
    padding: 8rem 0;
}

.comparison-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.comp-card {
    flex: 1;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Default subtle border */
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Manual Card - Chaos/Danger Theme */
.comp-card.manual {
    border-color: rgba(239, 68, 68, 0.3);
    /* Red border */
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(239, 68, 68, 0.05));
    box-shadow: 0 0 0 rgba(239, 68, 68, 0);
    /* Initial state */
}

.comp-card.manual:hover {
    transform: translateY(-5px) rotate(-1deg);
    /* Slight tilt for "chaos" */
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.6);
}

.comp-card.manual .card-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.comp-card.manual .icon-box {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* AI Card - Order/Success Theme */
.comp-card.ai {
    border-color: rgba(16, 185, 129, 0.3);
    /* Green border */
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(16, 185, 129, 0.05));
}

.comp-card.ai:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.7);
}

.comp-card.ai::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.comp-card.ai .card-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.comp-card.ai .icon-box {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    /* Glow icons */
}

.card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.card-badge.red {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.card-badge.green {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.icon-box.red {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.icon-box.green {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

/* VS Badge - Glowing Center */
.vs-badge {
    width: 60px;
    height: 60px;
    background: #0f172a;
    border: 2px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #94a3b8;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(15, 23, 42, 1);
    /* Fake margin/gap */
}


/* Pipeline Steps (Numbered) */
.pipeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.step-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    background: #263346;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-title {
    color: var(--primary-bright);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-desc {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Capabilities & Feature Showcase */
.caps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cap-box {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cap-header {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cap-header i {
    color: var(--primary);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.icon-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.icon-item:hover {
    border-color: var(--primary);
    color: white;
}

/* Feature Blocks */
.features-showcase {
    padding: 8rem 0;
}

.feature-block {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.feature-block.small {
    display: block;
    height: 100%;
}

.f-icon-large {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.search-mock {
    margin-top: 1.5rem;
    background: white;
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: monospace;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.big-stat {
    font-size: 4rem;
    font-weight: 900;
    color: #4ade80;
    line-height: 1;
}

.safe-list li {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.safe-list i {
    color: var(--primary);
}

/* Pricing Grid Redesign */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    /* Increased gap */
    margin-top: 4rem;
    align-items: stretch;
    /* Make cards same height */
}

.pricing-card {
    background: rgba(30, 41, 59, 0.6);
    /* Glassy feel */
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    /* More vertical padding */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.popular {
    background: rgba(30, 41, 59, 0.9);
    /* Slightly darker/stronger */
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
}

.pricing-card.popular:hover {
    transform: scale(1.08);
    /* Slightly more lift */
}

.pop-badge {
    position: absolute;
    top: -18px;
    /* Adjusted position */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.plan-price small {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
}

.plan-desc {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.plan-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 2rem 0;
}

.price-list {
    margin-bottom: 2.5rem;
    flex-grow: 1;
    /* Pushes button down */
}

.price-list li {
    margin-bottom: 1.2rem;
    /* Increased spacing */
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 1rem;
}

/* Clean up legacy/incorrect selectors if any */


.price-list i {
    color: var(--accent-green);
}

/* Feature Image Replacement */
.feature-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

/* ... existing styles ... */

/* Go-Live Section Spacing */
.go-live-section {
    padding: 5rem 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    margin-top: 4rem;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
footer {
    padding: 3rem 0;
    background: #000;
    color: #64748b;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .cta-buttons {
        flex-direction: column;
    }

    .pricing-grid {
        margin-top: 2rem;
    }

    .pipeline-steps {
        grid-template-columns: 1fr;
    }

    .caps-grid {
        grid-template-columns: 1fr;
    }
}

/* NEW: Pipeline Brand Logos */
.step-brand {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-blue {
    color: #4285F4;
    text-shadow: 0 0 15px rgba(66, 133, 244, 0.4);
}

.brand-purple {
    color: #A855F7;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Gemini */
.brand-green {
    color: #34A853;
    text-shadow: 0 0 15px rgba(52, 168, 83, 0.4);
}

/* Sheets */
.brand-blue-dark {
    color: #0f4c81;
    text-shadow: 0 0 15px rgba(15, 76, 129, 0.4);
}

/* AppSheet/Standard */

/* NEW: Capabilities Visuals */
.icon-grid-visual {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.cap-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    cursor: default;
}

.cap-item i {
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0.8;
}

.cap-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.cap-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* NEW: Section Separator & Search Highlight */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    margin: 4rem auto;
    width: 60%;
}

.feature-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-highlight {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.search-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}


.feature-img:hover {
    transform: scale(1.02);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tag {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* PIPELINE (Redesigned) */
/* Pipeline 4-Step */
.pipeline-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

.pipeline-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
    margin-top: 3rem;
}

.pipe-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #334155;
    transition: 0.3s;
    cursor: pointer;
}

.pipe-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pipe-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-bright);
}

.color-1 .pipe-icon {
    color: #f472b6;
    background: rgba(244, 114, 182, 0.1);
}

.color-2 .pipe-icon {
    color: #818cf8;
    background: rgba(129, 140, 248, 0.1);
}

.color-3 .pipe-icon {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

/* Ensure connectors are visible */
.pipe-connector {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Color classes for Pipeline */
.color-4 .pipe-icon {
    color: #facc15;
    background: rgba(250, 204, 21, 0.1);
}

/* Go-Live Process (Visual Steps) */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    border: none;
    padding: 0;
}

.p-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    min-width: 80px;
}

.p-icon {
    width: 60px;
    height: 60px;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-gray);
    transition: 0.3s;
}

.p-step.active .p-icon {
    border-color: var(--primary);
    color: white;
    background: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.p-line {
    flex: 1;
    height: 2px;
    background: #334155;
    margin: 0 10px;
    transform: translateY(-35px);
    /* Lift line to match icon center */
}

/* Infrastructure Icons */
.infra-grid {
    gap: 2rem;
}

.infra-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.infra-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
}


/* Large Section Divider */
.section-divider-large {
    height: 120px;
    /* Significant vertical space */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-divider-large::before {
    content: '';
    position: absolute;
    width: 60%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}


/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
}

.faq-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
}

/* Comparison & Standard Cards */
.card {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 2.5rem;
    border-radius: 16px;
    transition: 0.3s;
}

.interactive-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.interactive-card:active {
    transform: scale(0.98);
}

/* Responsive Overhaul */
@media (max-width: 900px) {

    .comparison-wrapper,
    .pipeline-steps,
    .caps-grid,
    .pricing-grid,
    .grid-2-col {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .vs-badge {
        position: relative;
        margin: -20px auto;
        top: auto;
        left: auto;
        transform: none;
    }

    .feature-block {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.popular {
        transform: none;
    }
}

/* WhatsApp Button Style */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 1px solid #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* --- THEME ALTERNATION SYSTEM --- */

/* Utility for Dark Sections (Explicit) */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

/* Light Section Overrides */
.light-section {
    /* Re-map variables for this scope to Light Mode colors */
    --bg-dark: #ffffff;
    --bg-darker: #f8fafc;
    /* Slate-50 */
    --text-white: #0f172a;
    /* Slate-900 (Dark text) */
    --text-gray: #475569;
    /* Slate-600 */

    background-color: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

/* Force backgrounds for sections that had gradients/colors */
.light-section.pipeline-section {
    background: var(--bg-dark);
}

.light-section.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
}

/* Typography Overrides in Light Mode */
.light-section h1,
.light-section h2,
.light-section h3,
.light-section .logo-text,
.light-section .plan-price,
.light-section .step-brand {
    color: var(--text-white);
}

.light-section .fancy-header h2 {
    /* Dark gradient for headers */
    background: linear-gradient(to right, #0f172a 40%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.light-section .subtitle,
.light-section p,
.light-section span:not(.btn *):not(.header-badge *),
.light-section li {
    color: var(--text-gray);
}

/* Card & Block Overrides in Light Mode */
.light-section .comp-card,
.light-section .step-card,
.light-section .cap-box,
.light-section .feature-block,
.light-section .pricing-card,
.light-section .faq-item,
.light-section .pipe-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Hover effects for light cards */
.light-section .step-card:hover,
.light-section .pipe-card:hover,
.light-section .pricing-card:hover {
    background: #f8fafc;
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Feature Showcase Fixes */
.light-section .search-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #cbd5e1;
}

.light-section .search-mock {
    background: #0f172a;
    color: white;
    /* Invert search bar to pop */
}

/* Pricing Card Specifics */
.light-section .pricing-card.popular {
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.light-section .plan-divider {
    background: #e2e8f0;
}

/* Badges & Icons */
.light-section .card-badge.red {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fecaca;
}

.light-section .card-badge.green {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
}

.light-section .icon-box.red {
    background: #fef2f2;
}

.light-section .icon-box.green {
    background: #f0fdf4;
}

/* Steps Numbers */
.light-section .step-num {
    color: #f1f5f9;
}

/* Separators */
.light-section .section-separator,
.light-section .header-line {
    opacity: 0.8;
}

/* Buttons in Light Section */
.light-section .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.light-section .btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* --- REFINED COMPARISON SECTION (Light Mode Fixes) --- */

.light-section .comparison-wrapper {
    gap: 3rem;
    /* Increase gap to give VS badge room */
}

/* Make cards "pop" more in light mode */
.light-section .comp-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    /* More breathing room */
}

/* Chaos Card (Manual) - Red Tint on Light */
.light-section .comp-card.manual {
    border-color: #fca5a5;
    background: linear-gradient(145deg, #fff1f2 0%, #ffffff 100%);
}

.light-section .comp-card.manual:hover {
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

/* Order Card (AI) - Green Tint on Light */
.light-section .comp-card.ai {
    border-color: #86efac;
    background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 100%);
}

.light-section .comp-card.ai:hover {
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

/* Fix VS Badge for Light Mode */
.light-section .vs-badge {
    background: #ffffff;
    color: #0f172a;
    border-color: #e2e8f0;
    box-shadow: 0 0 0 8px #ffffff;
    /* Simulate transparency/gap with white ring */
    width: 70px;
    height: 70px;
    font-size: 1.1rem;
}

/* Increase Internal Content Density */
.light-section .comp-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.2s;
    margin-bottom: 2rem;
    /* Spread items out */
}

.light-section .comp-item:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.light-section .comp-item h4 {
    font-size: 1.25rem;
    /* Bigger titles */
    margin-bottom: 0.3rem;
}

.light-section .comp-item p {
    font-size: 1rem;
}

/* Make Icons Larger */
.light-section .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Fix Header Badge Visibility in Light Sections */
.light-section .header-badge {
    color: white !important;
    /* Force white text on the gradient badge */
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.25);
    /* Softer shadow */
}

/* Fix Button Text Color in Light Sections */
.light-section .btn-primary,
.light-section .btn-whatsapp {
    color: white !important;
}

/* Fix Search Mock Text (Paracetamol) */
.light-section .search-mock,
.light-section .search-mock span {
    color: white !important;
}

/* Ensure FUTURE badge in CTA section (Light) stays white */
.light-section .cta-section .header-badge {
    color: white !important;
}

/* --- CONSOLIDATED MOBILE RESPONSIVENESS (900px) --- */
@media (max-width: 900px) {

    /* Global fixes */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100%;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Navbar - Professional Mobile Layout */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
    }

    /* Logo - Compact on mobile */
    .logo {
        flex-shrink: 0;
    }

    .logo-icon {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* Navbar right - Horizontal compact layout */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    /* Language button - Compact */
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: auto;
    }

    .flag-img {
        width: 14px;
        height: 14px;
    }

    /* Book a Demo button - Compact */
    .nav-cta {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Hero Section */
    .hero {
        padding: 140px 0 4rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .typewriter-container {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Center and constrain buttons on mobile */
    .btn:not(.nav-cta) {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
        text-align: center !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* Hero Mockup Scale */
    .invoice-mockup {
        transform: scale(0.9);
        margin: 0 auto;
    }

    /* Multilingual Section - Professional Mobile Layout */
    .multilingual-section {
        padding: 4rem 0 !important;
    }

    .multi-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem;
        align-items: stretch !important;
    }

    .multi-text {
        order: 1;
        text-align: center;
        width: 100% !important;
    }

    .multi-visual {
        order: 2;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Image wrapper - Full width on mobile */
    .img-glow-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
    }

    .feature-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* Tags - Single column on mobile */
    .feature-tags-large {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }

    .tag-box-big {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 1.2rem !important;
        gap: 1rem !important;
    }

    .tag-icon {
        margin: 0 !important;
        flex-shrink: 0;
        font-size: 1.8rem !important;
    }

    .tag-info {
        flex: 1;
    }

    .tag-info h3 {
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
    }

    .tag-info span {
        font-size: 0.9rem;
    }


    /* Comparison Section */
    .comparison-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .vs-badge {
        position: relative;
        margin: -40px auto;
        transform: none;
        top: auto;
        left: auto;
    }

    /* FAQ & Grid Fixes */
    .faq-grid,
    .caps-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .pricing-card.popular {
        transform: none;
        margin: 2rem 0;
    }

    /* CTA Section Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* --- LIGHT MODE REFINEMENTS --- */

/* Fix FUTURE badge - Match CAPABILITIES style exactly */
.light-section .header-badge {
    background: linear-gradient(90deg, #4f46e5, #ec4899) !important;
    /* Same as CAPABILITIES */
    color: #ffffff !important;
    /* Pure white text */
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4) !important;
    border: none !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* Fix CTA Buttons in Light Mode */
.light-section .btn-primary {
    background: #4f46e5 !important;
    color: #ffffff !important;
    /* Pure white text */
    font-weight: 600 !important;
}

.light-section .btn-whatsapp {
    background: #25D366 !important;
    color: #ffffff !important;
    /* Pure white text */
    font-weight: 600 !important;
}

/* FAQ Fix for Light Mode */
.light-section .faq-item {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.light-section .faq-item h4 {
    color: #1e293b;
}

.light-section .faq-item p {
    color: #64748b;
}

/* ========================================
   TRUSTED BY TICKER
   ======================================== */
.trusted-by {
    padding: 4rem 0;
    background: #f8fafc;
    /* Very light slate background for better contrast */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.trusted-by .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    /* Darker slate for readability */
    margin-bottom: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.trusted-by .section-subtitle::before,
.trusted-by .section-subtitle::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, #cbd5e1, transparent);
}

.logo-ticker {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 7rem;
    padding: 0 2rem;
    animation: scrollTicker 90s linear infinite;
    /* Significantly slower for elegance */
    align-items: center;
    white-space: nowrap;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-item img {
    height: 44px;
    /* Slightly larger for better detail */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-item img.dark-invert {
    filter: invert(1) brightness(0.2) grayscale(100%) opacity(0.6);
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1) translateY(-3px);
}

.logo-item:hover img.dark-invert {
    filter: invert(1) brightness(0.1) grayscale(0%) opacity(1);
}

/* Text Logo Style for missing logos */
.text-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #64748b;
    letter-spacing: -0.5px;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.logo-item:hover .text-logo {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.15) translateY(-5px);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Ticker Adjustments */
@media (max-width: 768px) {
    .logo-track {
        gap: 4rem;
        animation: scrollTicker 25s linear infinite;
    }

    .logo-item img {
        height: 28px;
    }

    .text-logo {
        font-size: 1.1rem;
    }

    .trusted-by {
        padding: 3rem 0;
    }

    .trusted-by .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* ========================================
   CUSTOMIZATION SECTION STYLES
   ======================================== */

.customization-section {
    padding: 6rem 0;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* For medium screens - 2 columns */
@media (max-width: 1100px) {
    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.custom-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.custom-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.custom-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 0;
    font-weight: 700;
}

.custom-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.benefit-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.benefit-list i {
    color: #22c55e;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* CTA inside customization section */
.custom-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.custom-cta h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.custom-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsiveness for custom section */
@media (max-width: 900px) {
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .custom-card {
        padding: 2rem;
    }

    .custom-cta {
        padding: 2rem 1.5rem;
    }

    .custom-cta h3 {
        font-size: 1.5rem;
    }
}