:root {
    --primary-gradient: linear-gradient(90deg, #0D3D54 0%, #44B74A 100%);
    --bg-gradient: #FFFFFF;
    --text-dark: #101828;
    --text-gray: #475467;
    --primary-color: #0D3D54;
    --brand-green: #44B74A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: var(--bg-gradient);
    overflow-x: hidden;
}

/* Utilities */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-custom {
    background: white;
}

.bg-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.7);
}

/* Max-Width Utilities */
.mw-600 {
    max-width: 600px;
}

.mw-700 {
    max-width: 700px;
}

.mw-800 {
    max-width: 800px;
}

.mw-900 {
    max-width: 900px;
}

.mw-1000 {
    max-width: 1000px;
}

.mw-1100 {
    max-width: 1100px;
}

/* Width Utilities */
.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-75 {
    width: 75%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

/* Background Utilities */
.bg-primary-gradient {
    background: var(--primary-gradient);
}

/* Spacing Utilities */
.mb-6 {
    margin-bottom: 6rem;
}

.lh-1-2 {
    line-height: 1.2;
}

/* Max-Width Utilities */
.mw-200 {
    max-width: 200px;
}

.mw-300 {
    max-width: 300px;
}

.mw-450 {
    max-width: 450px;
}

.mw-520 {
    max-width: 520px;
}

.mw-600 {
    max-width: 600px;
}

.mw-700 {
    max-width: 700px;
}

.mw-800 {
    max-width: 800px;
}

.mw-900 {
    max-width: 900px;
}

.mw-1000 {
    max-width: 1000px;
}

.mw-1100 {
    max-width: 1100px;
}

/* Hero Section Mockup */
.hero-section {
    background: linear-gradient(240deg, #FFFFFF 0%, #F0FDF4 100%);
}

.mockup-url-bar {
    max-width: 200px;
}

.mockup-content-bg {
    min-height: 500px;
    background: radial-gradient(circle at center, #2E1065 0%, #0F172A 100%);
}

.mockup-phone {
    width: 280px;
    height: 480px;
    background: #000;
}

.mockup-product-thumbnail {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
}

.mockup-cart-btn {
    width: 32px;
    height: 32px;
}

.floating-badge-bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(-3.72deg);
}

/* Floating Badge Specific Positions */
.floating-badge-engagement {
    top: -35px;
    left: 15%;
    rotate: -2deg;
}

.floating-badge-avg-cvr {
    top: -30px;
    right: 30px;
    transform: rotate(6.18deg);
}

/* Section specific styling */
.navbar-logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.cta-star-purple {
    color: #DDA0DD;
}

.footer-logo-subtext {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
}

/* Comparison Section Icon Colors */
.status-icon-traditional {
    background: #FEF3F2 !important;
    color: #F04438 !important;
}

.status-icon-shoppable {
    background: #ECFDF3 !important;
    color: #12B76A !important;
}

/* Comparison Section */
.comparison-title-color {
    color: var(--brand-green) !important;
}

/* Button Overrides */
.btn-primary-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 61, 84, 0.2);
    color: white;
}

/* Hover Utilities */
.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Navigation Link Styles */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #44B74A !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0D3D54 0%, #44B74A 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #0D3D54 !important;
    font-weight: 600;
}

/* Hero Section Specifics */
.hero-badge {
    background: #F0FDF4;
    /* Light Green */
    color: #0D3D54;
    /* Brand Dark */
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 0 1px #44B74A;
}

.text-per {
    font-size: 30px;
    letter-spacing: 0.4px;
    line-height: 36px;
}

.text-gradient-hero {
    background: linear-gradient(135deg, #0D3D54 0%, #44B74A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-pill {
    background: white;
    border: 1px solid #E5E7EB;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.15px;
    line-height: 20px;
}

.hero-pill i {
    color: #44B74A;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #0D3D54 0%, #44B74A 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(68, 183, 74, 0.3), 0 2px 4px -1px rgba(13, 61, 84, 0.15);
    text-decoration: none;
}

.btn-hero-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(68, 183, 74, 0.4);
}

.btn-hero-secondary {
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: #F9FAFB;
    color: #111827;
    border-color: #D1D5DB;
}

/* Avatar Stack */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

/* Dashboard Mockup */
.dashboard-frame {
    background: #0F172A;
    border-radius: 20px;
    border: 1px solid #1E293B;
    box-shadow: 0 32px 64px -12px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: visible;
}

.browser-dots {
    display: flex;
    gap: 8px;
    padding: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #EF4444;
}

.dot-yellow {
    background: #F59E0B;
}

.dot-green {
    background: #44B74A;
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.badge-green {
    background: #44B74A;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.badge-orange {
    background: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    color: white;
    padding: 1.2rem;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.3);
}

.badge-white-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-box-green {
    width: 48px;
    height: 48px;
    background: #44B74A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Background Effects */
.glow-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(68, 183, 74, 0.15) 0%, rgba(13, 61, 84, 0.05) 40%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-30%, -40%);
    pointer-events: none;
    z-index: -1;
}

/* Backdrop Blur Utility */
.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Comparison Section Specifics */
/* NEW STYLES */
.comparison-card {
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    /* Updated transition */
    cursor: default;
}

.card-traditional {
    background: white;
    border: 1px solid #F2F4F7;
    box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

/* Hover Effect for Traditional Card */
.card-traditional:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: #E5E7EB;
}

.card-shoppable {
    background: #F9FAFB;
    /* Fallback */
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
    border: 2px solid #44B74A;
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08);
    position: relative;
    overflow: hidden;
}

/* Hover Effect for Shoppable Card */
.card-shoppable:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(68, 183, 74, 0.25);
    /* Green shadow */
    border-color: #44B74A;
}

/* Icon Status Boxes */
.status-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.status-red {
    background: #FEF3F2;
    color: #F04438;
}

.status-green {
    background: #ECFDF3;
    color: #44B74A;
}

/* List Items */
.comparison-item {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #EAECF0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

/* Hover Effect for List Items */
.comparison-item:hover {
    transform: translateX(5px);
}

.card-traditional .comparison-item {
    background: #FFFAFA;
    border-color: #FEE4E2;
}

.card-shoppable .comparison-item {
    background: white;
    border-color: #86EFAC;
    /* Light green border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Conversion Rate Boxes */
.cvr-box {
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.comparison-card:hover .cvr-box {
    transform: scale(1.05);
}

.cvr-traditional {
    background: #F9FAFB;
    color: #F04438;
}

.cvr-shoppable {
    background: #44B74A;
    color: white;
    box-shadow: 0 4px 6px -2px rgba(68, 183, 74, 0.3);
}

/* Bottom Gradient CTA */
.gradient-cta-banner {
    background: linear-gradient(135deg, #0D3D54 0%, #44B74A 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.btn-cta-white {
    background: white;
    color: #0D3D54;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    margin-top: 1.5rem;
    transition: all 0.2s;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #0D3D54;
}

/* Section 3: Integration Specifics */
.bg-gradient-integration {
    background: #F9FAFB;
}

.badge-shopify {
    background: #DCFCE7;
    color: #166534;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.integration-card {
    background: white;
    border: 1px solid #EAECF0;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.integration-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.integration-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.2);
}

/* Integration Icon Colors - Unique Gradients */
.icon-purple {
    background: linear-gradient(135deg, #0D3D54 0%, #1A4E5F 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #44B74A 0%, #5ED97B 100%);
}

.icon-cyan {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
}

.icon-green {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.text-gradient-integration {
    background: linear-gradient(90deg, #0D3D54 0%, #44B74A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section 4: Core Features Specifics */
.bg-gradient-core {
    background: white;
}

.feature-mockup-card {
    background: white;
    border: 1px solid #EAECF0;
    /* Default border, overridden by modifiers */
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Changed from center */
    justify-content: center;
    /* overflow: hidden; */
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08);
    transition: transform 0.3s ease;
}

.feature-mockup-card:hover {
    transform: translateY(-5px);
}

.mockup-purple {
    border: 2px solid #A855F7;
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.15);
}

.mockup-blue {
    border: 2px solid #3B82F6;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.15);
}

.mockup-teal {
    border: 2px solid #06B6D4;
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.15);
}

.mockup-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    /* Increased margin */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bg-purple-icon {
    background: #A855F7;
}

.bg-blue-icon {
    background: #3B82F6;
}

.bg-teal-icon {
    background: #06B6D4;
}

/* Skeleton Lines */
.skeleton-line {
    height: 10px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.skeleton-purple {
    background: linear-gradient(90deg, #A855F7 0%, rgba(168, 85, 247, 0.2) 100%);
    opacity: 0.6;
}

.skeleton-blue {
    background: linear-gradient(90deg, #3B82F6 0%, rgba(59, 130, 246, 0.2) 100%);
    opacity: 0.6;
}

.skeleton-teal {
    background: linear-gradient(90deg, #06B6D4 0%, rgba(6, 182, 212, 0.2) 100%);
    opacity: 0.6;
}

/* Feature Mockup Decor Elements */
.deco-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

/* Feature Grid (Bottom Section) */
.grid-feature-card {
    background: white;
    border: 1px solid #EAECF0;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.grid-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08);
    border-color: #44B74A;
}

.grid-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(68, 183, 74, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(68, 183, 74, 0.2);
    color: #0D3D54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.grid-icon-circle:hover {
    background: rgba(68, 183, 74, 0.2);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(68, 183, 74, 0.4);
}

.more-features-card {
    background: linear-gradient(135deg, #0D3D54 0%, #44B74A 100%);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px -4px rgba(13, 61, 84, 0.3);
}

.more-features-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 24px -4px rgba(13, 61, 84, 0.4);
}

.more-features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.more-features-card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.more-features-card a:hover {
    text-decoration: underline;
}

.rocket-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

/* Section 5: How It Works Specifics */
.bg-gradient-steps {
    background: linear-gradient(90deg, #FFFFFF 0%, #F0FDF4 100%);
}

.step-card {
    background: white;
    border: 1px solid #EAECF0;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    height: 100%;
    position: relative;
    margin-top: 1.5rem;
    /* Space for the tab */
    box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.step-number-tab {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 48px;
    border-radius: 12px 12px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Progressive Color Story: Dark Blue → Sky Blue → Mixed → Green */
.bg-step-1 {
    background: #0D3D54;
}

.bg-step-2 {
    background: #4ADE80;
}

.bg-step-3 {
    background: #3B82F6;
}

.bg-step-4 {
    background: #F97316;
}

.step-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.step-icon-box:hover {
    transform: scale(1.05);
}

/* Subtle gradient backgrounds for icon boxes */
.bg-light-purple {
    background: rgba(13, 61, 84, 0.1);
    color: #0D3D54;
}

.bg-light-blue {
    background: rgba(74, 222, 128, 0.1);
    color: #4ADE80;
}

.bg-light-pink {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.bg-light-green {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475467;
    font-size: 0.95rem;
}

.step-list li i {
    color: #44B74A;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Step Checklist Colors */
.step-card .step-list-1 i {
    color: #0D3D54;
}

.step-card .step-list-2 i {
    color: #4ADE80;
}

.step-card .step-list-3 i {
    color: #3B82F6;
}

.step-card .step-list-4 i {
    color: #F97316;
}

/* Large CTA Button */
.btn-cta-large {
    background: linear-gradient(90deg, #0D3D54 0%, #44B74A 100%);
    color: white;
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(68, 183, 74, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(13, 61, 84, 0.5);
    color: white;
}

/* Section 6: Industries Specifics */
.bg-gradient-industries {
    background: #F9FAFB;
    /* Clean white background for this section */
}

.industry-card {
    background: white;
    border: 1px solid #EAECF0;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: #44B74A;
    /* Subtle green border on hover */
}

.industry-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.industry-icon-box:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.2);
}

/* Industry Icon Colors - Unique Gradients */
.bg-ind-purple {
    background: linear-gradient(135deg, #0D3D54 0%, #1A4E5F 100%);
}

.bg-ind-pink {
    background: linear-gradient(135deg, #44B74A 0%, #5ED97B 100%);
}

.bg-ind-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
}

.bg-ind-orange {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
}

.bg-ind-green {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.bg-ind-teal {
    background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
}

/* Section 7: Pricing Specifics */
.bg-gradient-pricing {
    background: white;
}

.pricing-card {
    background: white;
    border: 1px solid #EAECF0;
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border: 2px solid #0D3D54;
    box-shadow: 0 12px 16px -4px rgba(13, 61, 84, 0.1);
}

.pricing-card.popular:hover {
    box-shadow: 0 25px 50px -12px rgba(13, 61, 84, 0.25);
    border-color: #44B74A;
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #0D3D54 0%, #44B74A 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.price-box {
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    color: #667085;
    font-size: 0.9rem;
}

.text-purple-gradient {
    background: linear-gradient(135deg, #0D3D54 0%, #44B74A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-pricing-gray {
    background: #F2F4F7;
    color: #101828;
    font-weight: 600;
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    margin-bottom: 2rem;
    transition: all 0.2s;
}

.btn-pricing-gray:hover {
    background: #E4E7EC;
    transform: translateY(-2px);
}

.btn-pricing-primary {
    background: linear-gradient(90deg, #0D3D54 0%, #44B74A 100%);
    color: white;
    font-weight: 600;
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(13, 61, 84, 0.2);
    transition: all 0.2s;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(68, 183, 74, 0.3);
    color: white;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    /* Pushes content down if needed, but here ensures alignment */
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #475467;
}

.check-green {
    color: #44B74A;
    font-size: 1.1rem;
}

.check-purple {
    color: #0D3D54;
    font-size: 1.1rem;
}

.popular-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: linear-gradient(90deg, #A855F7 0%, #3B82F6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.4);
    z-index: 10;
}

.popular-badge-blue {
    background: linear-gradient(90deg, #3B82F6 0%, #06B6D4 100%);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

.popular-badge-teal {
    background: linear-gradient(90deg, #06B6D4 0%, #10B981 100%);
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.4);
}

/* Pricing Utilities */
.pricing-popular-scale {
    transform: scale(1.05);
    z-index: 10;
}

.pricing-custom-text {
    font-size: 2.5rem;
}

@media (max-width: 767px) {
    .bg-gradient-pricing .mb-6 {
        margin-bottom: 2rem !important;
    }
}

/* Section 8: Final CTA Specifics */
.bg-gradient-cta-final {
    background: linear-gradient(135deg, #0D3D54 0%, #44B74A 100%);
    color: white;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
}

.btn-cta-white-final {
    background: white;
    color: #0D3D54;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-white-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #44B74A;
}

.btn-cta-outline-final {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-cta-outline-final:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.trust-check-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.trust-check-list div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-check-circle {
    background: #44B74A;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.glass-stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Section Utilities */
.cta-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-decoration-left {
    top: -10%;
    left: -10%;
}

.cta-decoration-right {
    bottom: -10%;
    right: -10%;
}

.cta-content {
    z-index: 2;
    position: relative;
}

.cta-description {
    max-width: 700px;
    font-size: 1.1rem;
}

/* Section 9: FAQ Specifics */
.faq-accordion .accordion-item {
    background: white;
    border: 1px solid #EAECF0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    /* Ensures content stays within rounded corners */
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #44B74A;
}

.faq-accordion .accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: #101828;
    padding: 1.5rem;
    box-shadow: none;
    /* Remove button shadow, strictly on item now */
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: white;
    color: #0D3D54;
    box-shadow: none;
    /* Remove focus shadow */
    /* border-bottom: 1px solid #EAECF0; */
    /* Separator line */
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Remove hover effect on button since it's on item now */
.faq-accordion .accordion-item:hover .accordion-button {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    background: white;
    border: none;
    padding: 1.5rem;
    color: #475467;
    border-top: 1px solid #EAECF0;
}

/* Custom Accordion Icon */
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D3D54'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
    background-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    background-color: #F0FDF4;
    border-radius: 50%;
    background-position: center;
    transition: transform 0.2s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
    background-color: #0D3D54;
    transform: rotate(180deg);
}

.support-box {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #EAECF0;
}

.btn-support {
    background: linear-gradient(90deg, #0D3D54 0%, #44B74A 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 61, 84, 0.3);
    color: white;
}

/* Section 10: Footer Specifics */
.footer-dark {
    background: #0B0F19;
    /* Dark Navy/Black */
    color: #94969C;
    padding-top: 4rem;
    font-size: 0.95rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0D3D54 0%, #44B74A 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: 800;
}

.footer-email-link {
    color: #44B74A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-email-link:hover {
    color: #86EFAC;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94969C;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.shopify-merchant-badge {
    color: #94969C;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shopify-logo-text {
    color: #44B74A;
    /* Shopify Green */
    font-weight: 700;
}

/* Responsive Adjustments */

/* Tablet Breakpoint (max-width: 991px) */
@media (max-width: 991px) {
    .display-3 {
        font-size: 3rem !important;
    }

    .display-4 {
        font-size: 2.5rem !important;
    }

    .hero-section {
        padding: 4rem 0 !important;
    }

    .mw-520 {
        max-width: 100%;
    }

    .floating-badge-engagement {
        left: 5%;
        top: -20px;
    }

    .floating-badge-avg-cvr {
        right: 0;
    }

    .floating-badge-bottom-left {
        left: 10px;
        bottom: 10px;
    }
}

/* Mobile Breakpoint (max-width: 767px) */
@media (max-width: 767px) {
    .display-3 {
        font-size: 2.25rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }

    /* Fix Hero Badges for Mobile */
    /* .floating-badge {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        rotate: 0deg !important;
        margin-bottom: 1rem;
        display: inline-flex !important;
        width: auto;
    } */

    .floating-badge-bottom-left {
        transform: none !important;
        bottom: -60px;
    }

    .dashboard-frame {
        margin-top: 2rem;
        padding: 1.5rem !important;
    }

    .mockup-phone {
        width: 100%;
        max-width: 250px;
        height: auto;
        aspect-ratio: 9/16;
    }

    /* Comparison Section */
    .comparison-card {
        padding: 1.5rem;
    }

    .gradient-cta-banner {
        padding: 2rem 1.5rem;
    }

    /* How It Works List */
    .step-list {
        padding-left: 0;
    }

    /* Pricing */
    .pricing-card.popular {
        transform: none !important;
        margin: 1rem 0;
    }

    /* Footer */
    .footer-bottom {
        text-align: center;
        flex-direction: column;
        margin-top: 2rem;
    }

    /* Global Section Spacing */
    section {
        padding: 3rem 0 !important;
    }

    .hero-section {
        padding-top: 2rem !important;
    }

    /* Prevent horizontal scroll */
    body,
    html {
        overflow-x: hidden;
    }

    /* Reduce mb-5 spacing for mobile */
    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container.py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Tiny Screens (max-width: 480px) */
@media (max-width: 480px) {

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .avatar-stack {
        justify-content: center;
        margin-bottom: 1rem;
    }
}