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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

.btn-primary {
    padding: 0.625rem 1.5rem;
    background: #C31F1F;
    color: white;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #A01818;
}

.btn-secondary {
    padding: 0.625rem 1.5rem;
    color: #C31F1F;
    background: transparent;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #f0e0e0;
}

.btn-primary-large {
    padding: 1rem 2rem;
    background: #C31F1F;
    color: white;
    border-radius: 0.75rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(195, 31, 31, 0.3);
}

.btn-primary-large:hover {
    background: #A01818;
    box-shadow: 0 20px 25px -5px rgba(195, 31, 31, 0.4);
}

.btn-outline-large {
    padding: 1rem 2rem;
    background: white;
    color: #C31F1F;
    border: 2px solid #C31F1F;
    border-radius: 0.75rem;
    font-size: 1rem;
}

.btn-outline-large:hover {
    background: #f0e0e0;
}

.btn-white {
    padding: 1rem 2rem;
    background: white;
    color: #C31F1F;
    border-radius: 0.75rem;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-white-large {
    padding: 1rem 2rem;
    background: white;
    color: #C31F1F;
    border-radius: 0.75rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-white-large:hover {
    background: #f3f4f6;
}

.btn-outline-white-large {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0.75rem;
    font-size: 1rem;
}

.btn-outline-white-large:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

/* Icons */
svg {
    display: block;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #C31F1F;
    flex-shrink: 0;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: #C31F1F;
    padding: 3rem 0;
}
.hero__bg-blob {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(64px);
    opacity: 0.1;
    animation: blob 7s infinite;
}
.hero__bg-blob--1 { top: 0; right: 0; background: #f87171; }
.hero__bg-blob--2 { bottom: 0; left: 0; background: #ef4444; animation-delay: 2s; }
@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}
.hero__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: repeat(2, 1fr); } }
.hero__content { text-align: center; }
@media (min-width: 1024px) { .hero__content { text-align: left; } }
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .hero__badges { justify-content: flex-start; } }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__badge svg { color: #dc2626; }
.hero__badge--green svg { color: #10b981; }
.hero__title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 40px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
}
@media (max-width: 768px) { .hero__title { font-size: 2rem; }
    .hero br {display: none;}
}
.hero__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1024px) { .hero__text { margin-left: 0; margin-right: 0; } }
.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }
@media (min-width: 1024px) { .hero__ctas { justify-content: flex-start; } }
.hero__cta {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.hero__cta--primary {
    background: white !important;
    color: #C31F1F !important;
}
.hero__cta--primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    background: #fff;
}
.hero__cta--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.hero__cta--secondary:hover { background: rgba(255, 255, 255, 0.1);  }
.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 1024px) { .hero__trust { justify-content: flex-start; } }
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero__image-wrap { position: relative; }
.hero__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero__card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero__card-icon {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}
.hero__card-label {
    font-size: 0.875rem;
    color: #6b7280;
}
.hero__card-value {
    font-weight: 600;
    color: #111827;
}
/* Section Header */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FFF5F5;
    color: #C31F1F;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-badge-white {
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-badge-dark {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(8px);
}

.section-subtitle {
    color: #6B7280;
    margin-top: 1rem;
    margin-bottom: 0;
}

.text-white {
    color: white !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

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

/* Pain Points Section */
.pain-points {
    padding: 4rem 1.5rem;
    background: rgba(240, 224, 224, 0.3);
}

.pain-grid {
    display: grid;
    gap: 2rem;
}

.pain-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.pain-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    width: 56px;
    height: 56px;
    background: #FFF5F5;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pain-icon svg {
    width: 28px;
    height: 28px;
    color: #C31F1F;
}

.pain-card h3 {
    margin-bottom: 0.75rem;
    color: #111827;
}

.pain-card p {
    color: #6B7280;
}

.pain-message {
    margin-top: 4rem;
    text-align: center;
}

.pain-message p {
    font-size: 1rem;
    color: #111827;
}

/* Value Proposition Section */
.value-proposition {
    padding: 4rem 1.5rem;
    background: white;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #FFF5F5;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(195, 31, 31, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #C31F1F;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #C31F1F;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.feature-card p {
    color: #6B7280;
    font-size: 1rem;
}

/* Product Demo Section */
.product-demo {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, rgba(240, 224, 224, 0.2) 0%, #ffffff 100%);
}

.demo-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.demo-row {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.demo-row-reverse {
    direction: ltr;
}

.demo-mockup {
    order: 2;
}

.demo-description {
    order: 1;
}

.mockup-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
}

.mockup-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mockup-store-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-store-icon {
    width: 48px;
    height: 48px;
    background: #C31F1F;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.mockup-store-info h4 {
    color: #111827;
    font-size: 1.125rem;
}

.mockup-store-info p {
    font-size: 0.875rem;
    color: #6B7280;
}

.mockup-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mockup-product {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.mockup-product-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0e0e0 0%, #FFF5F5 100%);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.mockup-product-name {
    font-size: 0.875rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.mockup-product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #C31F1F;
}

.mockup-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem;
    background: #C31F1F;
    color: white;
    border-radius: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    pointer-events: none; 
}

.mockup-title {
    margin-bottom: 1.5rem;
    color: #111827;
}

.mockup-order-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mockup-order-item {
    display: flex;
    justify-content: space-between;
    color: #6B7280;
}

.mockup-order-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
    font-weight: 600;
}

.total-price {
    color: #C31F1F;
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.mockup-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.mockup-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mockup-badge {
    padding: 0.25rem 0.75rem;
    background: #dcfce7;
    color: #15803d;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.mockup-orders {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-order-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
}

.mockup-order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.mockup-order-id {
    color: #111827;
    font-weight: 600;
}

.mockup-order-customer {
    font-size: 0.875rem;
    color: #6B7280;
}

.mockup-status {
    padding: 0.25rem 0.75rem;
    background: #fed7aa;
    color: #c2410c;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.mockup-order-actions {
    display: flex;
    gap: 0.5rem;
}

.mockup-btn-accept,
.mockup-btn-decline {
    flex: 1;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.mockup-btn-accept {
    background: #dcfce7;
    color: #15803d;
}

.mockup-btn-decline {
    background: #fee2e2;
    color: #b91c1c;
}

.demo-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.demo-icon {
    width: 32px;
    height: 32px;
    color: #C31F1F;
}

.demo-text {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.demo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-list li {
    color: #6B7280;
}

/* Use Cases Section */
.use-cases {
    padding: 2rem 1.5rem 4rem;
    background: white;
}

.use-cases-grid {
    display: grid;
    gap: 1.5rem;
}

.use-case-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.use-case-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.use-case-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.05);
}

.use-case-content {
    padding: 1.5rem;
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background: #FFF5F5;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: #C31F1F;
}

.use-case-icon svg {
    width: 24px;
    height: 24px;
    color: #C31F1F;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon svg {
    color: white;
}

.use-case-content h4 {
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.use-case-content > p {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.use-case-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.use-case-features li {
    font-size: 0.875rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bullet {
    width: 4px;
    height: 4px;
    background: #C31F1F;
    border-radius: 9999px;
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #FFF5F5 0%, rgba(240, 224, 224, 0.3) 100%);
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

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

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 48px;
    height: 48px;
    background: #C31F1F;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(195, 31, 31, 0.3);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #FFF5F5;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: #C31F1F;
}

.step-card h4 {
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 700;
}

.step-card p {
    color: #6B7280;
}

/* Features Showcase Section */
.features-showcase {
    padding: 4rem 1.5rem;
    background: white;
}

.showcase-grid {
    display: grid;
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover::before {
    opacity: 0.05;
}

.showcase-card-1::before { background: linear-gradient(135deg, #f97316 0%, #dc2626 100%); }
.showcase-card-2::before { background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%); }
.showcase-card-3::before { background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%); }
.showcase-card-4::before { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.showcase-card-5::before { background: linear-gradient(135deg, #eab308 0%, #f97316 100%); }
.showcase-card-6::before { background: linear-gradient(135deg, #dc2626 0%, #ec4899 100%); }
.showcase-card-7::before { background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); }
.showcase-card-8::before { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); }

.showcase-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.showcase-card-1 .showcase-icon { background: linear-gradient(135deg, #f97316 0%, #dc2626 100%); }
.showcase-card-2 .showcase-icon { background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%); }
.showcase-card-3 .showcase-icon { background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%); }
.showcase-card-4 .showcase-icon { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.showcase-card-5 .showcase-icon { background: linear-gradient(135deg, #eab308 0%, #f97316 100%); }
.showcase-card-6 .showcase-icon { background: linear-gradient(135deg, #dc2626 0%, #ec4899 100%); }
.showcase-card-7 .showcase-icon { background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); }
.showcase-card-8 .showcase-icon { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); }

.showcase-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.showcase-card h4 {
    position: relative;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.showcase-card p {
    position: relative;
    color: #6B7280;
    font-size: 1rem;
}

/* Comparison Section */
.comparison {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, rgba(240, 224, 224, 0.2) 0%, #ffffff 100%);
}

.comparison-table {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(to right, #FFF5F5 0%, #f0e0e0 100%);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: #f9fafb;
}

.comparison-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.comparison-col:first-child {
    justify-content: flex-start;
    font-weight: 600;
    color: #111827;
}

.comparison-bad {
    color: #6B7280;
}

.comparison-good {
    color: #111827;
}

.icon-x {
    width: 20px;
    height: 20px;
    color: #dc2626;
    flex-shrink: 0;
}

.icon-check {
    width: 20px;
    height: 20px;
    color: #16a34a;
    flex-shrink: 0;
}

.comparison-cta {
    padding: 2rem;
    background: linear-gradient(to right, #C31F1F 0%, #A01818 100%);
    text-align: center;
}

.comparison-cta-text {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Integrations Section */
.integrations {
    padding: 4rem 1.5rem;
    background: white;
}

.integrations-grid {
    display: grid;
    gap: 2rem;
}

.integration-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F5 100%);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.integration-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 64px;
    height: 64px;
    background: white;
    border: 1px solid rgba(195, 31, 31, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.integration-icon svg {
    width: 32px;
    height: 32px;
    color: #C31F1F;
}

.integration-card h4 {
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.integration-card > p {
    color: #6B7280;
    margin-bottom: 1rem;
}

.integration-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.provider-tag {
    padding: 0.25rem 0.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.75rem;
    color: #6B7280;
}

/* Security Section */
.security {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    color: white;
}

.security-grid {
    display: grid;
    gap: 2rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.security-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.security-icon {
    width: 56px;
    height: 56px;
    background: rgba(195, 31, 31, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.security-icon svg {
    width: 28px;
    height: 28px;
    color: #C31F1F;
}

.security-card h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.security-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.trust-badges {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    text-align: center;
}

.trust-badge svg {
    width: 40px;
    height: 40px;
    color: #C31F1F;
    margin: 0 auto 0.5rem;
}

.trust-badge p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Why Choose Section */
.why-choose {
    padding: 2rem 1.5rem 4rem;
    background: white;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F5 100%);
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #C31F1F;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(195, 31, 31, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #C31F1F;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #C31F1F;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    color: white;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.benefit-card > p {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.benefit-highlight {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(195, 31, 31, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: #C31F1F;
}

.stats-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C31F1F;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6B7280;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #C31F1F 0%, #A01818 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 288px;
    height: 288px;
    background: white;
    border-radius: 9999px;
    filter: blur(96px);
    opacity: 0.1;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: white;
    border-radius: 9999px;
    filter: blur(96px);
    opacity: 0.1;
}

.final-cta-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.final-cta-check {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.final-cta-check svg {
    width: 16px;
    height: 16px;
    color: white;
}

.final-cta-benefit span {
    color: white;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.final-cta-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-trust svg {
    width: 16px;
    height: 16px;
}

.final-cta-image-container {
    position: relative;
}

.final-cta-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.final-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 300px;
}

.final-floating-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.final-floating-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-floating-icon svg {
    width: 32px;
    height: 32px;
    color: #16a34a;
}

.final-floating-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.final-floating-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.comparison {
    padding: 0rem 0 4rem 0;
    background: white;
}


.comparison__table-wrap {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #000;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.comparison__table {
    width: 100%;
    overflow-x: auto;
}

.comparison__table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison__table thead {
    background: linear-gradient(to right, #f9fafb, #f3f4f6);
}

.comparison__table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: #111827;
}

.comparison__table th:nth-child(2),
.comparison__table th:nth-child(3) {
    text-align: center;
}

.comparison__header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.comparison__header-badge--marketplace {
    background: #e5e7eb;
}

.comparison__header-badge--marketplace svg {
    color: #dc2626;
}

.comparison__header-badge--ishopo {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
}

.comparison__table tbody {
    background: white;
}

.comparison__table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s;
}

.comparison__table tbody tr:hover {
    background: #f9fafb;
}

.comparison__table td {
    padding: 1rem 1.5rem;
}

.comparison__table td:first-child {
    font-weight: 600;
    color: #111827;
}

.comparison__table td:nth-child(2),
.comparison__table td:nth-child(3) {
    text-align: center;
}

.comparison__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.comparison__cell svg {
    flex-shrink: 0;
}

.comparison__cell--bad {
    color: #6b7280;
}

.comparison__cell--bad svg {
    color: #ef4444;
}

.comparison__cell--good {
    color: #111827;
    font-weight: 600;
}

.comparison__cell--good svg {
    color: #10b981;
}

.comparison__cell span {
    font-size: 0.875rem;
}

.comparison__highlight {
    margin-top: 3rem;
    background: linear-gradient(to right, #dc2626, #b91c1c);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.comparison__highlight h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.comparison__highlight p {
    color: #fecaca;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.comparison__highlight-btn {
    padding: 1rem 2rem;
    background: white;
    color: #dc2626;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.comparison__highlight-btn:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}
.hero__badges .hero__badge:last-child {

    justify-content: center;

    flex: 0 0 100%;

}
 
/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

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

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

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

    .demo-row-reverse .demo-mockup {
        order: 1;
    }

    .demo-row-reverse .demo-description {
        order: 2;
    }

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

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

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

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

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

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

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

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

    .use-cases-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .demo-text {
        font-size: 1.125rem;
    }

    .final-cta-subtitle {
        font-size: 1.125rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

.p-16 {padding: 16px;}
.pt-40 {padding-top: 40px;}
.pb-40 {padding-bottom: 40px;}
.py-40 {padding-top: 40px;padding-bottom: 40px;}
.pt-60 {padding-top: 60px;}
.pb-60 {padding-bottom: 60px;}
.py-60 {padding-top: 60px;padding-bottom: 60px;}
.flex, .d-flex {display: flex;}
.flex-column {flex-direction: column;}
.gap-20 {gap: 20px;}
.m-auto {margin: 0 auto;}
.mt-40 {margin-top: 40px;}
.mb-40 {margin-bottom: 40px;}
.max-container { max-width: 830px;width: 100%;}
.bg-white {background-color: #fff;} 
.overflow-hidden {overflow: hidden;} 
.border-gray-200 {border-color: #e5e7eb;} 
.border-1 {border-width: 1px;} 
.radius-8 {border-radius: 8px;}
.faq-content { padding: 0 16px 16px; }
.ishopo-hero .ishopo-final-cta__benefits {
    justify-content: start;
}
@media (max-width:768px) {
    .fs-45, .ishopo-final-cta__title, .ishopo-comparison__title, .ishopo-features__title, .ishopo-how__title, .ishopo-value__title {font-size: 30px;}
    .ishopo-hero__title { font-size: 35px; }
    .ishopo-comparison__table-wrapper { overflow: scroll; }
    .ishopo-hero .ishopo-final-cta__benefits { justify-content: center; }
}
