:root {
    --bg-dark: #050816;
    --bg-light: #0A0F24;
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --accent: #7C3AED;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --card-bg: #111827;
    --card-border: #1F2937;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, .brand {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

section {
    padding: 80px 0;
}

.bg-alternate {
    background-color: var(--bg-light);
}

/* Splash Screen Overlay */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

#splash-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

#skip-splash {
    position: absolute;
    bottom: 32px;
    right: 32px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

#skip-splash:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

#splash-logo-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    animation: splashLogoIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
#splash-logo-fallback img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    animation: logoGlow 1.4s ease-in-out infinite alternate;
}
#splash-tagline {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#splash-tagline .tagline-main {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff 30%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 0.5s ease-out 0.25s both;
}
#splash-tagline .tagline-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    animation: fadeUp 0.5s ease-out 0.45s both;
}
@keyframes splashLogoIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes logoGlow {
    from { filter: drop-shadow(0 0 10px rgba(99,102,241,0.5)); }
    to   { filter: drop-shadow(0 0 35px rgba(99,102,241,1)) drop-shadow(0 0 60px rgba(139,92,246,0.6)); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 36px;
    width: auto;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover);
    color: white !important;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 1000;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    text-decoration: none;
}

.whatsapp-btn:hover { transform: scale(1.08); }

.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    font-family: 'Inter', sans-serif;
}

.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* Trust strip */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 14px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 0;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-strip-item span.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34D399;
    flex-shrink: 0;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 0 60px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
    margin-inline: auto;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-direction: row;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-outline:hover {
    border-color: var(--text-muted);
    background-color: rgba(255,255,255,0.05);
}

/* Trust Bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--card-border);
}

.trust-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-stat p {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
}

/* Cards Generic */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.badge-purple { background: rgba(124, 58, 237, 0.1); color: #A78BFA; border: 1px solid rgba(124, 58, 237, 0.2); }
.badge-blue { background: rgba(37, 99, 235, 0.1); color: #60A5FA; border: 1px solid rgba(37, 99, 235, 0.2); }
.badge-gray { background: rgba(148, 163, 184, 0.1); color: #94A3B8; border: 1px solid rgba(148, 163, 184, 0.2); }
.badge-green { background: rgba(16, 185, 129, 0.1); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.2); }

/* Case Study Content Structure */
.case-study-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* Mockup Web (Laptop/Browser) */
.mockup-web {
    background-color: #1F2937;
    border-radius: 8px 8px 0 0;
    height: 180px;
    margin: -24px -24px 24px -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.mockup-web::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background-color: #111827;
    border-bottom: 1px solid var(--card-border);
    z-index: 2;
}

.mockup-web::after {
    content: '•••';
    position: absolute;
    top: 2px;
    left: 12px;
    color: #4B5563;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 2;
}

.mockup-image-web {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    padding-top: 24px;
    background-color: var(--bg-dark);
}

/* Mockup Mobile (Phone) */
.mockup-mobile {
    background-color: #1F2937;
    width: 140px;
    margin: -24px auto 24px;
    height: 160px;
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--card-border);
    border-top: none;
    overflow: hidden;
}

.mockup-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background-color: var(--card-bg);
    border-radius: 0 0 6px 6px;
    z-index: 2;
}

.mockup-image-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background-color: var(--bg-dark);
}

.cs-content {
    flex-grow: 1;
}

.cs-content h3 {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.cs-line {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cs-line strong {
    color: var(--text-main);
    font-weight: 600;
}

.cs-line span {
    color: var(--text-muted);
}

.btn-small {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    background: #1F2937;
    color: var(--text-main);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #374151;
    transition: all 0.2s;
    text-align: center;
}

.btn-small:hover {
    background: #374151;
}

.text-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Full-Card Image Backgrounds for Products */
.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    min-height: 400px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: transform 0.2s, border-color 0.2s;
    background-color: var(--bg-dark);
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.product-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
    opacity: 0.20;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-bg-image {
    opacity: 0.35;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,8,22,0.05) 0%, rgba(5,8,22,0.95) 75%, rgba(5,8,22,1) 100%);
    z-index: 1;
}

.product-content {
    position: relative;
    z-index: 2;
}

.product-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.product-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Pricing tiers */
.pricing-tier { display: flex; flex-direction: column; }
.pricing-tier a { margin-top: auto; }
.pricing-featured { border-top: 3px solid #A78BFA; }
.pricing-anchor {
    font-size: 2rem; font-weight: 700;
    font-family: 'Space Grotesk', sans-serif; line-height: 1; margin-bottom: 4px;
}
.pricing-anchor span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.pricing-from { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features {
    list-style: none; display: flex; flex-direction: column;
    gap: 8px; margin-bottom: 24px;
}
.pricing-features li { font-size: 0.84rem; color: var(--text-muted); }
.pricing-features li::before { content: '✓ '; color: var(--primary); font-weight: 600; }
.hourly-card { text-align: center; }

/* Before / After */
.before-after {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 16px; align-items: center;
    background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 20px 24px; margin-top: 24px; text-align: left;
}
.ba-label {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 8px;
}
.ba-before { color: var(--text-muted); }
.ba-after  { color: #34D399; }
.ba-col p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.ba-divider {
    font-size: 1.4rem; color: var(--primary); font-weight: 300;
    padding: 0 8px; flex-shrink: 0;
}

@media (max-width: 700px) {
    .before-after { grid-template-columns: 1fr; text-align: center; }
    .ba-divider { display: none; }
    .hourly-card { min-width: unset !important; }
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faq-item {
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.faq-q {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    user-select: none;
}
.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}
.faq-a {
    display: none;
    padding: 0 22px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    background: var(--bg-card);
    border-top: 1px solid var(--card-border);
    padding-top: 14px;
}
.faq-item.open .faq-a {
    display: block;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-copy {
    color: #4B5563;
    font-size: 0.85rem;
}

/* AG Tech Assistant Widget */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.05);
}

.chat-toggle img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-tooltip {
    position: absolute;
    right: 75px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.chat-toggle:hover .chat-tooltip {
    opacity: 1;
}

.chat-window {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background-color: #1F2937;
    padding: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.chat-messages {
    flex-grow: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bot-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.bot-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    padding: 4px;
}

.bot-msg {
    background-color: #1F2937;
    padding: 10px 14px;
    border-radius: 12px 12px 12px 4px;
    font-size: 0.9rem;
    max-width: 85%;
    line-height: 1.4;
}

.user-msg {
    background-color: var(--primary);
    color: white;
    padding: 10px 14px;
    border-radius: 12px 12px 4px 12px;
    font-size: 0.9rem;
    align-self: flex-end;
    max-width: 85%;
    line-height: 1.4;
}

.chat-input {
    border: none;
    border-top: 1px solid var(--card-border);
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding: 16px;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    font-family: inherit;
}

/* Typing dots */
.typing { display: flex; gap: 4px; padding: 14px 18px; align-items: center; }
.dot { width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; animation: blink 1.4s infinite both; }
.dot:nth-child(1) { animation-delay: 0.2s; }
.dot:nth-child(2) { animation-delay: 0.4s; }
.dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes blink { 0% { opacity: .2; } 20% { opacity: 1; } 100% { opacity: .2; } }

/* Feature Showcase (AGI POS) */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 16px 0;
}

.feature-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 480px;
}

.feature-list {
    list-style: none;
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.feature-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-mockup {
    position: relative;
    background-color: #1F2937;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.25);
}

.feature-mockup-bar {
    height: 32px;
    background-color: #111827;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
}

.feature-mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #374151;
}

.feature-mockup img {
    width: 100%;
    display: block;
}

.feature-showcase-flip {
    grid-template-columns: 1.2fr 1fr;
}

/* Northern Fancy Meat Case Study */
.nfm-header {
    text-align: center;
    margin-bottom: 56px;
}

.nfm-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 12px 0 6px;
}

.nfm-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
}

.nfm-header > p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.nfm-mockup-pair {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 56px;
}

.nfm-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
}

.nfm-connector-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.nfm-connector-pill {
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.25);
    color: #60A5FA;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 8px;
    border-radius: 100px;
    text-align: center;
    writing-mode: vertical-rl;
    white-space: nowrap;
}

.nfm-mockup-label {
    background: #111827;
    border-top: 1px solid var(--card-border);
    padding: 8px 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.nfm-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.nfm-col {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
}

.nfm-col-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nfm-col-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.nfm-col .feature-list {
    margin: 0;
}

.nfm-integration {
    background: linear-gradient(135deg, rgba(37,99,235,0.07), rgba(124,58,237,0.07));
    border: 1px solid rgba(37,99,235,0.18);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.nfm-integration h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.nfm-integration > p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 0.95rem;
}

.nfm-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
}

.nfm-step {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.82rem;
    color: var(--text-main);
}

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

/* LaFashionPoint 3-system layout */
.lfp-pos-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.lfp-pos-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.lfp-pos-mockup {
    width: 60%;
}

.lfp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .nav-links {
        display: none;
    }
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-mockup {
        order: -1;
    }
    .feature-showcase-flip {
        grid-template-columns: 1fr;
    }
    .nfm-mockup-pair {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .nfm-connector {
        flex-direction: row;
        writing-mode: horizontal-tb;
    }
    .nfm-connector-line {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--primary), transparent);
    }
    .nfm-connector-pill { writing-mode: horizontal-tb; }
    .nfm-split { grid-template-columns: 1fr; }
    .lfp-pos-mockup { width: 100%; }
    .lfp-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    .chat-window {
        width: calc(100vw - 48px);
        height: 400px;
    }
}
